forked from rails/web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Exactly at the finish line we found https://rubygems.org/gems/web_console. :troll:
- Loading branch information
1 parent
e8c0831
commit 2918f0b
Showing
7 changed files
with
18 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
source 'https://rubygems.org' | ||
|
||
gemspec name: 'web_console' | ||
gemspec | ||
|
||
gem 'rails', github: 'rails/rails' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,22 +7,21 @@ 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.homepage = "https://github.com/rails/web-console" | ||
s.summary = "A set of debugging tools for your Rails application." | ||
s.license = 'MIT' | ||
s.files = [] | ||
|
||
s.add_dependency "web_console", WebConsole::VERSION | ||
s.files = Dir["lib/**/*", "MIT-LICENSE", "Rakefile", "README.markdown"] | ||
s.test_files = Dir["test/**/*"] | ||
|
||
s.post_install_message = <<-END | ||
####################################################### | ||
rails_version = "~> 4.0" | ||
|
||
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. | ||
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" | ||
|
||
####################################################### | ||
END | ||
# We need those for the testing application to run. | ||
s.add_development_dependency "actionmailer", rails_version | ||
s.add_development_dependency "activerecord", rails_version | ||
end |
This file was deleted.
Oops, something went wrong.