diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-07-02 21:46:46 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-07-02 21:46:46 -0400 |
commit | d56eeae8acb56d6dac52c01c71eb26bed3acee48 (patch) | |
tree | 5432c3a1645aff058cef8a815cea507de81824da | |
parent | 79d9cd3c5e3764db9d3506e1702042a7a7a4aea3 (diff) | |
download | thoughts-d56eeae8acb56d6dac52c01c71eb26bed3acee48.tar.gz thoughts-d56eeae8acb56d6dac52c01c71eb26bed3acee48.tar.bz2 thoughts-d56eeae8acb56d6dac52c01c71eb26bed3acee48.zip |
Added JS runtime
-rw-r--r-- | Gemfile | 2 | ||||
-rw-r--r-- | Gemfile.lock | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile index 878e00c..134b325 100644 --- a/Gemfile +++ b/Gemfile | |||
@@ -17,7 +17,7 @@ gem 'sass-rails', '~> 5.0' | |||
17 | # Use Uglifier as compressor for JavaScript assets | 17 | # Use Uglifier as compressor for JavaScript assets |
18 | gem 'uglifier', '>= 1.3.0' | 18 | gem 'uglifier', '>= 1.3.0' |
19 | # See https://github.com/rails/execjs#readme for more supported runtimes | 19 | # See https://github.com/rails/execjs#readme for more supported runtimes |
20 | # gem 'therubyracer', platforms: :ruby | 20 | gem 'therubyracer', platforms: :ruby |
21 | 21 | ||
22 | # Use CoffeeScript for .coffee assets and views | 22 | # Use CoffeeScript for .coffee assets and views |
23 | gem 'coffee-rails', '~> 4.2' | 23 | gem 'coffee-rails', '~> 4.2' |
diff --git a/Gemfile.lock b/Gemfile.lock index 6058aa8..2ff3777 100644 --- a/Gemfile.lock +++ b/Gemfile.lock | |||
@@ -109,6 +109,7 @@ GEM | |||
109 | rails-dom-testing (>= 1, < 3) | 109 | rails-dom-testing (>= 1, < 3) |
110 | railties (>= 4.2.0) | 110 | railties (>= 4.2.0) |
111 | thor (>= 0.14, < 2.0) | 111 | thor (>= 0.14, < 2.0) |
112 | libv8 (3.16.14.19-x86_64-darwin-16) | ||
112 | listen (3.1.5) | 113 | listen (3.1.5) |
113 | rb-fsevent (~> 0.9, >= 0.9.4) | 114 | rb-fsevent (~> 0.9, >= 0.9.4) |
114 | rb-inotify (~> 0.9, >= 0.9.7) | 115 | rb-inotify (~> 0.9, >= 0.9.7) |
@@ -171,6 +172,7 @@ GEM | |||
171 | rb-fsevent (0.9.8) | 172 | rb-fsevent (0.9.8) |
172 | rb-inotify (0.9.10) | 173 | rb-inotify (0.9.10) |
173 | ffi (>= 0.5.0, < 2) | 174 | ffi (>= 0.5.0, < 2) |
175 | ref (2.0.0) | ||
174 | responders (2.4.0) | 176 | responders (2.4.0) |
175 | actionpack (>= 4.2.0, < 5.3) | 177 | actionpack (>= 4.2.0, < 5.3) |
176 | railties (>= 4.2.0, < 5.3) | 178 | railties (>= 4.2.0, < 5.3) |
@@ -203,6 +205,9 @@ GEM | |||
203 | net-scp (>= 1.1.2) | 205 | net-scp (>= 1.1.2) |
204 | net-ssh (>= 2.8.0) | 206 | net-ssh (>= 2.8.0) |
205 | temple (0.8.0) | 207 | temple (0.8.0) |
208 | therubyracer (0.12.3) | ||
209 | libv8 (~> 3.16.14.15) | ||
210 | ref | ||
206 | thor (0.19.4) | 211 | thor (0.19.4) |
207 | thread_safe (0.3.6) | 212 | thread_safe (0.3.6) |
208 | tilt (2.0.7) | 213 | tilt (2.0.7) |
@@ -254,6 +259,7 @@ DEPENDENCIES | |||
254 | spring | 259 | spring |
255 | spring-watcher-listen (~> 2.0.0) | 260 | spring-watcher-listen (~> 2.0.0) |
256 | sqlite3 | 261 | sqlite3 |
262 | therubyracer | ||
257 | turbolinks (~> 5) | 263 | turbolinks (~> 5) |
258 | tzinfo-data | 264 | tzinfo-data |
259 | uglifier (>= 1.3.0) | 265 | uglifier (>= 1.3.0) |