Skip to content

Commit 70e7195

Browse files
Lower the coffee-script-source dependency version
There is an issue with the latest version of `coffee-script-source` outlined in the following issue: jashkenas/coffeescript#3829 When the `react-rails` gemspec specifies a `~>1.9` version it makes it impossible to back out of the most recent `coffee-script-source` update to avoid the errors. This change lowers the dependency version in the `react-rails` gemspec so that a user can specify a lower version.
1 parent eeb4e6b commit 70e7195

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

react-rails.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Gem::Specification.new do |s|
2525
s.add_development_dependency 'jbuilder'
2626

2727
s.add_dependency 'execjs'
28-
s.add_dependency 'coffee-script-source', '~>1.9'
28+
s.add_dependency 'coffee-script-source', '~>1.8'
2929
s.add_dependency 'rails', '>= 3.1'
3030
s.add_dependency 'react-source', '~> 0.12'
3131
s.add_dependency 'connection_pool'

0 commit comments

Comments
 (0)