-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcallstacking-rails.gemspec
29 lines (24 loc) · 1.2 KB
/
callstacking-rails.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
require_relative "lib/callstacking/rails/version"
Gem::Specification.new do |spec|
spec.name = "callstacking-rails"
spec.version = Callstacking::Rails::VERSION
spec.authors = ["Jim Jones"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/callstacking/callstacking-rails"
spec.summary = "Quickly visualize which methods call which, their parameters, and return values."
spec.description = "Quickly visualize which methods call which, their parameters, and return values."
spec.license = "GPL-3.0-or-later"
spec.bindir = "exe"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/callstacking/callstacking-rails"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib,exe}/**/*", "LICENSE", "Rakefile", "README.md"]
end
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.add_dependency "rails", ">= 4"
spec.add_dependency "faraday", '>= 1.10.3'
spec.add_dependency 'faraday-follow_redirects'
spec.add_dependency 'method_source'
spec.add_development_dependency 'mocha'
spec.add_development_dependency 'minitest-silence'
end