therubyracer is required for unix systems (not windows)
did
committed Apr 18, 2013
commit 29837312f45bf44f6dabe736f07ea426a40e1868
Showing 4
changed files with
9 additions
and 5 deletions
generators/blank/Gemfile.tt
+2
-1
| @@ | @@ -8,7 +8,8 @@ group :development do |
| # Mac OS X | |
| gem 'rb-fsevent', '~> 0.9.1', require: RUBY_PLATFORM.include?('darwin') && 'rb-fsevent' | |
| - | # TODO: Linux |
| + | # Linux |
| + | gem 'therubyracer', require: 'v8', platforms: :ruby |
| # TODO: Windows | |
| end | |
generators/bootstrap/Gemfile.tt
+3
-2
| @@ | @@ -6,9 +6,10 @@ gem 'locomotivecms_wagon', '<%= config[:version] -%>' |
| group :development do | |
| # Mac OS X | |
| - | gem 'rb-fsevent', '~> 0.9.1', :require => RUBY_PLATFORM.include?('darwin') && 'rb-fsevent' |
| + | gem 'rb-fsevent', '~> 0.9.1', require: RUBY_PLATFORM.include?('darwin') && 'rb-fsevent' |
| - | # TODO: Linux |
| + | # Unix |
| + | gem 'therubyracer', require: 'v8', platforms: :ruby |
| # TODO: Windows | |
| end | |
generators/cloned/Gemfile.tt
+2
-1
| @@ | @@ -8,7 +8,8 @@ group :development do |
| # Mac OS X | |
| gem 'rb-fsevent', '~> 0.9.1', require: RUBY_PLATFORM.include?('darwin') && 'rb-fsevent' | |
| - | # TODO: Linux |
| + | # Unix |
| + | gem 'therubyracer', require: 'v8', platforms: :ruby |
| # TODO: Windows | |
| end | |
generators/foundation/Gemfile.tt
+2
-1
| @@ | @@ -8,7 +8,8 @@ group :development do |
| # Mac OS X | |
| gem 'rb-fsevent', '~> 0.9.1', :require => RUBY_PLATFORM.include?('darwin') && 'rb-fsevent' | |
| - | # TODO: Linux |
| + | # Unix |
| + | gem 'therubyracer', require: 'v8', platforms: :ruby |
| # TODO: Windows | |
| end | |