Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add web_console gemspec #77

Merged
merged 1 commit into from
Nov 25, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions web-console.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,22 @@ Gem::Specification.new do |s|
s.version = WebConsole::VERSION
s.authors = ["Charlie Somerville", "Genadi Samokovarov", "Guillermo Iguaran", "Ryan Dao"]
s.email = ["[email protected]", "[email protected]", "[email protected]"]
s.homepage = "https://github.com/rails/web-console"
s.summary = "Rails Console on the Browser."
s.homepage = "https://github.com/rails/web_console"
s.summary = "A set of debugging tools for your Rails application."
s.license = 'MIT'
s.files = []

s.files = Dir["{app,config,db,lib,vendor}/**/*", "MIT-LICENSE", "Rakefile", "README.markdown"]
s.test_files = Dir["test/**/*"]
s.add_dependency "web_console", WebConsole::VERSION

rails_version = "~> 4.0"
s.post_install_message = <<-END
#######################################################

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.3.pre1"
The `web-console` gem has been renamed to `web_console`.
Instead of installing `web-console`, you should install
`web_console`. Please update your Gemfile and other
dependencies accordingly as the legacy `web-console`
gem will not be updated after version 3.0.

# We need those for the testing application to run.
s.add_development_dependency "actionmailer", rails_version
s.add_development_dependency "activerecord", rails_version
#######################################################
END
end
27 changes: 27 additions & 0 deletions web_console.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,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.email = ["[email protected]", "[email protected]", "[email protected]"]
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