Skip to content

Commit

Permalink
Loosened railties dep'y; Add "sudo: false" to .travis.yml; Fix github in
Browse files Browse the repository at this point in the history
Gemfile by changed "github:" to "git: https".
  • Loading branch information
jasnow committed Mar 23, 2017
1 parent 572d74d commit c122e7b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
language: ruby
cache: bundler
sudo: false
before_install:
- gem install bundler
rvm:
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ source "https://rubygems.org"
# Specify your gem's dependencies in coffee-rails.gemspec
gemspec

gem "rails", github: "rails/rails"
gem 'rails', git: 'https://github.com/rails/rails'
2 changes: 1 addition & 1 deletion coffee-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.rubyforge_project = "coffee-rails"

s.add_runtime_dependency 'coffee-script', '>= 2.2.0'
s.add_runtime_dependency 'railties', '>= 4.0.0', '< 5.2.x'
s.add_runtime_dependency 'railties', '>= 4.0.0', '< 6.0.x'

s.files = ["CHANGELOG.md","MIT-LICENSE","README.md","lib/assets/javascripts/coffee-script.js.erb","lib/coffee-rails.rb","lib/coffee/rails/engine.rb","lib/coffee/rails/js_hook.rb","lib/coffee/rails/template_handler.rb","lib/coffee/rails/version.rb","lib/rails/generators/coffee/assets/assets_generator.rb","lib/rails/generators/coffee/assets/templates/javascript.coffee"]
s.executables = []
Expand Down
2 changes: 1 addition & 1 deletion coffee-rails.gemspec.erb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.rubyforge_project = "coffee-rails"

s.add_runtime_dependency 'coffee-script', '>= 2.2.0'
s.add_runtime_dependency 'railties', '>= 4.0.0', '< 5.2.x'
s.add_runtime_dependency 'railties', '>= 4.0.0', '< 6.0.x'

s.files = [<%= files.map(&:inspect).join ',' %>]
s.executables = [<%= executables.map(&:inspect).join ',' %>]
Expand Down

0 comments on commit c122e7b

Please sign in to comment.