Sha256: cef99149523969ede7efb2b505fa16a09f6a3dbd877e6a56eafed236e5c04f0b

Contents?: true

Size: 1.66 KB

Versions: 11

Compression:

Stored size: 1.66 KB

Contents

# Copyright, 2017, by Samuel G. D. Williams. <http://www.codeotaku.com>
# 
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

module Async
	module RSpec
		module Profile
		end
		
		begin
			require 'ruby-prof'
			
			::RSpec.shared_context Profile do
				around(:each) do |example|
					profile = RubyProf::Profile.new(merge_fibers: true)
					
					begin
						profile.start
						
						example.run
					ensure
						profile.stop
						
						printer = RubyProf::FlatPrinter.new(profile)
						printer.print(STDOUT)
					end
				end
			end
		rescue LoadError
			::RSpec.shared_context Profile do
				before(:all) do
					warn "Profiling not enabled/supported."
				end
			end
		end
	end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
async-rspec-1.16.1 lib/async/rspec/profile.rb
async-rspec-1.16.0 lib/async/rspec/profile.rb
async-rspec-1.15.1 lib/async/rspec/profile.rb
async-rspec-1.15.0 lib/async/rspec/profile.rb
async-rspec-1.14.0 lib/async/rspec/profile.rb
async-rspec-1.13.0 lib/async/rspec/profile.rb
async-rspec-1.12.2 lib/async/rspec/profile.rb
async-rspec-1.12.1 lib/async/rspec/profile.rb
async-rspec-1.12.0 lib/async/rspec/profile.rb
async-rspec-1.11.1 lib/async/rspec/profile.rb
async-rspec-1.11.0 lib/async/rspec/profile.rb