-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbusted.gemspec
54 lines (50 loc) · 1.65 KB
/
busted.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "busted/version"
Gem::Specification.new do |spec|
spec.name = "busted"
spec.version = Busted::VERSION
spec.authors = ["Simeon F. Willbanks"]
spec.email = ["[email protected]"]
spec.description = "Find code that busts the Ruby 2.1+ cache."
spec.summary = <<-DESC
MRI Ruby defines RubyVM.stat which accesses internal cache counters.
When the cache counters are incremented, the internal cache is invalidated.
Busted reports when code increments these counters.
DESC
spec.homepage = "https://github.com/simeonwillbanks/busted"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.1.0"
spec.files = %w(
.ruby-version
CONTRIBUTING.md
Gemfile
LICENSE.txt
README.md
Rakefile
busted.gemspec
dtrace/probes/busted/method-cache-clear.d
dtrace/probes/examples/method-cache-clear.d
lib/busted.rb
lib/busted/countable.rb
lib/busted/counter.rb
lib/busted/current_process.rb
lib/busted/profiler.rb
lib/busted/profiler/default.rb
lib/busted/profiler/sandwich.rb
lib/busted/stack.rb
lib/busted/traceable.rb
lib/busted/tracer.rb
lib/busted/version.rb
test/busted/current_process_test.rb
test/busted/stack_test.rb
test/busted_test.rb
test/test_helper.rb
)
spec.test_files = spec.files.grep(%r{^test/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
spec.add_development_dependency "minitest"
end