forked from rails/web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
web-console.gemspec
27 lines (21 loc) · 1.02 KB
/
web-console.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
$:.push File.expand_path("../lib", __FILE__)
require "web_console/version"
Gem::Specification.new do |s|
s.name = "web-console"
s.version = WebConsole::VERSION
s.authors = ["Charlie Somerville", "Genadi Samokovarov", "Guillermo Iguaran", "Ryan Dao"]
s.homepage = "https://github.com/rails/web-console"
s.summary = "A set of debugging tools for your Rails application."
s.license = 'MIT'
s.files = Dir["lib/**/*", "MIT-LICENSE", "Rakefile", "README.markdown"]
s.test_files = Dir["test/**/*"]
rails_version = ">= 4.0"
s.add_dependency "railties", rails_version
s.add_dependency "activemodel", rails_version
s.add_dependency "sprockets-rails", ">= 2.0", "< 4.0"
s.add_dependency "binding_of_caller", ">= 0.7.2"
# We need those for the testing application to run.
s.add_development_dependency "actionmailer", rails_version
s.add_development_dependency "activerecord", rails_version
end