js_assets 0.0.9 → 0.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -0
  3. data/README.md +21 -0
  4. data/js_assets.gemspec +2 -1
  5. data/lib/js_assets/version.rb +1 -1
  6. data/test/dummy/.gitignore +18 -0
  7. data/test/dummy/Gemfile +12 -0
  8. data/test/dummy/Gemfile.lock +428 -0
  9. data/test/dummy/Guardfile +3 -0
  10. data/test/dummy/README.rdoc +28 -0
  11. data/test/dummy/Rakefile +6 -0
  12. data/test/dummy/app/assets/images/.keep +0 -0
  13. data/test/dummy/app/assets/images/33482841_news_bigpic.png +0 -0
  14. data/test/dummy/app/assets/images/ruby.png +0 -0
  15. data/test/dummy/app/assets/javascripts/application.js +14 -0
  16. data/test/dummy/app/assets/javascripts/bar.html +1 -0
  17. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  18. data/test/dummy/app/controllers/application_controller.rb +5 -0
  19. data/test/dummy/app/controllers/concerns/.keep +0 -0
  20. data/test/dummy/app/helpers/application_helper.rb +2 -0
  21. data/test/dummy/app/mailers/.keep +0 -0
  22. data/test/dummy/app/models/.keep +0 -0
  23. data/test/dummy/app/models/concerns/.keep +0 -0
  24. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  25. data/test/dummy/bin/bundle +3 -0
  26. data/test/dummy/bin/rails +8 -0
  27. data/test/dummy/bin/rake +8 -0
  28. data/test/dummy/bin/spring +18 -0
  29. data/test/dummy/clear.sh +5 -0
  30. data/test/dummy/config/application.rb +28 -0
  31. data/test/dummy/config/boot.rb +4 -0
  32. data/test/dummy/config/database.yml +25 -0
  33. data/test/dummy/config/environment.rb +5 -0
  34. data/test/dummy/config/environments/development.rb +37 -0
  35. data/test/dummy/config/environments/production.rb +84 -0
  36. data/test/dummy/config/environments/test.rb +39 -0
  37. data/test/dummy/config/initializers/assets.rb +2 -0
  38. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  39. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  40. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  41. data/test/dummy/config/initializers/inflections.rb +16 -0
  42. data/test/dummy/config/initializers/js_assets.rb +1 -0
  43. data/test/dummy/config/initializers/mime_types.rb +4 -0
  44. data/test/dummy/config/initializers/session_store.rb +3 -0
  45. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  46. data/test/dummy/config/locales/en.yml +23 -0
  47. data/test/dummy/config/routes.rb +56 -0
  48. data/test/dummy/config/secrets.yml +22 -0
  49. data/test/dummy/config.ru +4 -0
  50. data/test/dummy/db/seeds.rb +7 -0
  51. data/test/dummy/lib/assets/.keep +0 -0
  52. data/test/dummy/lib/tasks/.keep +0 -0
  53. data/test/dummy/log/.keep +0 -0
  54. data/test/dummy/log/development.log +169 -0
  55. data/test/dummy/log/production.log +108 -0
  56. data/test/dummy/public/assets/33482841_news_bigpic-60fc3d1dd78f0dda19ed1d7467ec22e8.png +0 -0
  57. data/test/dummy/public/assets/application-1ccafe29653c6e7d597938e6353dfd78.js +1 -0
  58. data/test/dummy/public/assets/application-1ccafe29653c6e7d597938e6353dfd78.js.gz +0 -0
  59. data/test/dummy/public/assets/application-8149d2666335ec3b05bc3a701cb98729.css +16 -0
  60. data/test/dummy/public/assets/application-8149d2666335ec3b05bc3a701cb98729.css.gz +0 -0
  61. data/test/dummy/public/assets/bar-1fb8cd88d02f908a572597478daac546.html +1 -0
  62. data/test/dummy/public/assets/manifest-4ac86b4280bb234aad7af9db04474ec5.json +1 -0
  63. data/test/dummy/public/assets/ruby-c0b35b23a7c06c9ae38ad96e29d688fd.png +0 -0
  64. data/test/dummy/test/controllers/.keep +0 -0
  65. data/test/dummy/test/fixtures/.keep +0 -0
  66. data/test/dummy/test/helpers/.keep +0 -0
  67. data/test/dummy/test/integration/.keep +0 -0
  68. data/test/dummy/test/mailers/.keep +0 -0
  69. data/test/dummy/test/models/.keep +0 -0
  70. data/test/dummy/test/test_helper.rb +13 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/16ac18782e25d6d504b259f06b656310 +0 -0
  72. data/test/dummy/tmp/cache/assets/development/sprockets/2c57d2ceb3813a3e282a80bc90835347 +0 -0
  73. data/test/dummy/tmp/cache/assets/development/sprockets/f2258d3d05e44c19def553db3b6a8ac2 +0 -0
  74. data/test/dummy/vendor/assets/javascripts/.keep +0 -0
  75. data/test/dummy/vendor/assets/stylesheets/.keep +0 -0
  76. metadata +140 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 26cf5ec6638589c9913fed087fe43e7756f33345
4
- data.tar.gz: a592d01c14d0b74db34b3a64be397ec5c4f020b3
3
+ metadata.gz: a1a10f59a0e95a03b6091c0589cf6c4bcff0351c
4
+ data.tar.gz: eedeea95af58ca5859eb5f986720e033db980307
5
5
  SHA512:
6
- metadata.gz: d77c19e6eb90994cfe4e805c6765e81b193b7d23a9d12a5d9d2c49a7d8fab40768b9e32e2151611a48ac1090906a49562556bcccba13ec063307e29f22a93ea1
7
- data.tar.gz: 5bece526f60ed3f5678205ce8a6e54c85e0a2aced5ef1b9f4f2ca2a9b916ccd2b03c88c2d31d8f73ebcb60bccd4fdee93a9da4f74d25c04b74b55182a48317b7
6
+ metadata.gz: 525c6615b7dc5dd210dfe6b92ad8ad23854860fa8eff2d95940674c9eb7ea4c07bd9885de15dfc570c51f6a7645c25e08693365f5fdcd56f58ce357f006222f8
7
+ data.tar.gz: 3b3384bb5e211e02cc34b676287d53bd451194fd8570247adfa8c62dd6c990af166dad12b0f315fc95ab01a0de0e9082d0fc520e57b7d22aee6307a72477e1f1
data/.gitignore CHANGED
@@ -3,3 +3,5 @@ log/*.log
3
3
  pkg/
4
4
  *.gem
5
5
  Gemfile.lock
6
+ *.swp
7
+
data/README.md CHANGED
@@ -10,6 +10,8 @@ gem 'js_assets'
10
10
  ```
11
11
  And run `bundle install`.
12
12
 
13
+ The current version supports only `Sprockets 2.x`. Support of `Sprockets 3.x` in the course of development.
14
+
13
15
  ## Usage
14
16
 
15
17
  In your `application.js`
@@ -28,6 +30,25 @@ var path = asset_path('rubrics/views/index.html')
28
30
  // /assets/rubrics/views/index-5eb3bb250d5300736006c8944e436e3f.html
29
31
  ```
30
32
 
33
+ To automatically update `app_assets.js` when adding new files in `app/assets`, do the following steps. Add to `Gemfile`:
34
+ ```ruby
35
+ group :development do
36
+ gem 'guard'
37
+ gem 'guard-shell'
38
+ end
39
+ ```
40
+ Add to `Guardfile`:
41
+ ```ruby
42
+ guard :shell do
43
+ watch(%r{^app/assets/.*}) { `rm -rf tmp/cache` }
44
+ end
45
+ ```
46
+ Run the command `bundle exec` to install the gems. Before starting to develop run `guard`:
47
+ ```shell
48
+ $ bundle exec guard
49
+ ```
50
+ **Warning!** This may adversely affect the rate of return assets list in the development environment. Since they will be compiled at each change.
51
+
31
52
  ### Slim for AngularJS
32
53
 
33
54
  For example we want to use templating [Slim](http://rubydoc.info/gems/slim/) in [AngularJS](https://angularjs.org) app. Let our templates will be in `app/assets/webapp/`. We make the following settings:
data/js_assets.gemspec CHANGED
@@ -17,7 +17,8 @@ Gem::Specification.new do |s|
17
17
  s.files = `git ls-files`.split("\n")
18
18
  s.test_files = Dir["test/**/*"]
19
19
 
20
- s.add_dependency "rails"
20
+ s.add_dependency 'rails'
21
+ s.add_dependency 'sprockets', '~> 2.0'
21
22
 
22
23
  s.add_development_dependency "yard"
23
24
  end
@@ -1,3 +1,3 @@
1
1
  module JsAssets
2
- VERSION = "0.0.9"
2
+ VERSION = "0.0.10"
3
3
  end
@@ -0,0 +1,18 @@
1
+ # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile '~/.gitignore_global'
6
+
7
+ # Ignore bundler config.
8
+ /.bundle
9
+
10
+ # Ignore the default SQLite database.
11
+ /db/*.sqlite3
12
+ /db/*.sqlite3-journal
13
+
14
+ # Ignore all logfiles and tempfiles.
15
+ /log/*.log
16
+ /tmp
17
+
18
+ public/assets
@@ -0,0 +1,12 @@
1
+ source 'https://rubygems.org'
2
+
3
+
4
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
5
+ gem 'rails', '4.1.5'
6
+ gem 'uglifier', '>= 1.3.0'
7
+ gem 'js_assets', :path => '../../'
8
+
9
+ group :development do
10
+ gem 'guard'
11
+ gem 'guard-shell'
12
+ end
@@ -0,0 +1,428 @@
1
+ PATH
2
+ remote: ../../
3
+ specs:
4
+ js_assets (0.0.9)
5
+ rails
6
+ sprockets (~> 2.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionmailer (4.1.5)
12
+ actionpack (= 4.1.5)
13
+ actionview (= 4.1.5)
14
+ mail (~> 2.5.4)
15
+ actionpack (4.1.5)
16
+ actionview (= 4.1.5)
17
+ activesupport (= 4.1.5)
18
+ rack (~> 1.5.2)
19
+ rack-test (~> 0.6.2)
20
+ actionview (4.1.5)
21
+ activesupport (= 4.1.5)
22
+ builder (~> 3.1)
23
+ erubis (~> 2.7.0)
24
+ activemodel (4.1.5)
25
+ activesupport (= 4.1.5)
26
+ builder (~> 3.1)
27
+ activerecord (4.1.5)
28
+ activemodel (= 4.1.5)
29
+ activesupport (= 4.1.5)
30
+ arel (~> 5.0.0)
31
+ activesupport (4.1.5)
32
+ i18n (~> 0.6, >= 0.6.9)
33
+ json (~> 1.7, >= 1.7.7)
34
+ minitest (~> 5.1)
35
+ thread_safe (~> 0.1)
36
+ tzinfo (~> 1.1)
37
+ arel (5.0.1.20140414130214)
38
+ builder (3.2.2)
39
+ celluloid (0.16.0)
40
+ timers (~> 4.0.0)
41
+ coderay (1.1.0)
42
+ erubis (2.7.0)
43
+ execjs (2.5.2)
44
+ ffi (1.9.8)
45
+ formatador (0.2.5)
46
+ guard (2.12.5)
47
+ formatador (>= 0.2.4)
48
+ listen (~> 2.7)
49
+ lumberjack (~> 1.0)
50
+ nenv (~> 0.1)
51
+ notiffany (~> 0.0)
52
+ pry (>= 0.9.12)
53
+ shellany (~> 0.0)
54
+ thor (>= 0.18.1)
55
+ guard-compat (1.2.1)
56
+ guard-shell (0.7.1)
57
+ guard (>= 2.0.0)
58
+ guard-compat (~> 1.0)
59
+ hike (1.2.3)
60
+ hitimes (1.2.2)
61
+ i18n (0.7.0)
62
+ json (1.8.2)
63
+ listen (2.10.0)
64
+ celluloid (~> 0.16.0)
65
+ rb-fsevent (>= 0.9.3)
66
+ rb-inotify (>= 0.9)
67
+ lumberjack (1.0.9)
68
+ mail (2.5.4)
69
+ mime-types (~> 1.16)
70
+ treetop (~> 1.4.8)
71
+ method_source (0.8.2)
72
+ mime-types (1.25.1)
73
+ minitest (5.6.1)
74
+ multi_json (1.11.0)
75
+ nenv (0.2.0)
76
+ notiffany (0.0.6)
77
+ nenv (~> 0.1)
78
+ shellany (~> 0.0)
79
+ polyglot (0.3.5)
80
+ pry (0.10.1)
81
+ coderay (~> 1.1.0)
82
+ method_source (~> 0.8.1)
83
+ slop (~> 3.4)
84
+ rack (1.5.2)
85
+ rack-test (0.6.3)
86
+ rack (>= 1.0)
87
+ rails (4.1.5)
88
+ actionmailer (= 4.1.5)
89
+ actionpack (= 4.1.5)
90
+ actionview (= 4.1.5)
91
+ activemodel (= 4.1.5)
92
+ activerecord (= 4.1.5)
93
+ activesupport (= 4.1.5)
94
+ bundler (>= 1.3.0, < 2.0)
95
+ railties (= 4.1.5)
96
+ sprockets-rails (~> 2.0)
97
+ railties (4.1.5)
98
+ actionpack (= 4.1.5)
99
+ activesupport (= 4.1.5)
100
+ rake (>= 0.8.7)
101
+ thor (>= 0.18.1, < 2.0)
102
+ rake (10.4.2)
103
+ rb-fsevent (0.9.4)
104
+ rb-inotify (0.9.5)
105
+ ffi (>= 0.5.0)
106
+ shellany (0.0.1)
107
+ slop (3.6.0)
108
+ sprockets (2.12.3)
109
+ hike (~> 1.2)
110
+ multi_json (~> 1.0)
111
+ rack (~> 1.0)
112
+ tilt (~> 1.1, != 1.3.0)
113
+ sprockets-rails (2.2.4)
114
+ actionpack (>= 3.0)
115
+ activesupport (>= 3.0)
116
+ sprockets (>= 2.8, < 4.0)
117
+ thor (0.19.1)
118
+ thread_safe (0.3.5)
119
+ tilt (1.4.1)
120
+ timers (4.0.1)
121
+ hitimes
122
+ treetop (1.4.15)
123
+ polyglot
124
+ polyglot
125
+ polyglot
126
+ polyglot
127
+ polyglot
128
+ polyglot
129
+ polyglot
130
+ polyglot
131
+ polyglot
132
+ polyglot
133
+ polyglot
134
+ polyglot
135
+ polyglot
136
+ polyglot
137
+ polyglot
138
+ polyglot
139
+ polyglot
140
+ polyglot (>= 0.3.1)
141
+ polyglot (>= 0.3.1)
142
+ polyglot (>= 0.3.1)
143
+ polyglot (>= 0.3.1)
144
+ polyglot (>= 0.3.1)
145
+ polyglot (>= 0.3.1)
146
+ polyglot (>= 0.3.1)
147
+ polyglot (>= 0.3.1)
148
+ polyglot (>= 0.3.1)
149
+ polyglot (>= 0.3.1)
150
+ polyglot (>= 0.3.1)
151
+ polyglot (>= 0.3.1)
152
+ polyglot (>= 0.3.1)
153
+ polyglot (>= 0.3.1)
154
+ polyglot (>= 0.3.1)
155
+ polyglot (>= 0.3.1)
156
+ polyglot (>= 0.3.1)
157
+ polyglot (>= 0.3.1)
158
+ polyglot (>= 0.3.1)
159
+ polyglot (>= 0.3.1)
160
+ polyglot (>= 0.3.1)
161
+ polyglot (>= 0.3.1)
162
+ polyglot (>= 0.3.1)
163
+ polyglot (>= 0.3.1)
164
+ polyglot (>= 0.3.1)
165
+ polyglot (>= 0.3.1)
166
+ polyglot (>= 0.3.1)
167
+ polyglot (>= 0.3.1)
168
+ polyglot (>= 0.3.1)
169
+ polyglot (>= 0.3.1)
170
+ polyglot (>= 0.3.1)
171
+ polyglot (>= 0.3.1)
172
+ polyglot (>= 0.3.1)
173
+ polyglot (>= 0.3.1)
174
+ polyglot (>= 0.3.1)
175
+ polyglot (>= 0.3.1)
176
+ polyglot (>= 0.3.1)
177
+ polyglot (>= 0.3.1)
178
+ polyglot (>= 0.3.1)
179
+ polyglot (>= 0.3.1)
180
+ polyglot (>= 0.3.1)
181
+ polyglot (>= 0.3.1)
182
+ polyglot (>= 0.3.1)
183
+ polyglot (>= 0.3.1)
184
+ polyglot (>= 0.3.1)
185
+ polyglot (>= 0.3.1)
186
+ polyglot (>= 0.3.1)
187
+ polyglot (>= 0.3.1)
188
+ polyglot (>= 0.3.1)
189
+ polyglot (>= 0.3.1)
190
+ polyglot (>= 0.3.1)
191
+ polyglot (>= 0.3.1)
192
+ polyglot (>= 0.3.1)
193
+ polyglot (>= 0.3.1)
194
+ polyglot (>= 0.3.1)
195
+ polyglot (>= 0.3.1)
196
+ polyglot (>= 0.3.1)
197
+ polyglot (>= 0.3.1)
198
+ polyglot (>= 0.3.1)
199
+ polyglot (>= 0.3.1)
200
+ polyglot (>= 0.3.1)
201
+ polyglot (>= 0.3.1)
202
+ polyglot (>= 0.3.1)
203
+ polyglot (>= 0.3.1)
204
+ polyglot (>= 0.3.1)
205
+ polyglot (>= 0.3.1)
206
+ polyglot (>= 0.3.1)
207
+ polyglot (>= 0.3.1)
208
+ polyglot (>= 0.3.1)
209
+ polyglot (>= 0.3.1)
210
+ polyglot (>= 0.3.1)
211
+ polyglot (>= 0.3.1)
212
+ polyglot (>= 0.3.1)
213
+ polyglot (>= 0.3.1)
214
+ polyglot (>= 0.3.1)
215
+ polyglot (>= 0.3.1)
216
+ polyglot (>= 0.3.1)
217
+ polyglot (>= 0.3.1)
218
+ polyglot (>= 0.3.1)
219
+ polyglot (>= 0.3.1)
220
+ polyglot (>= 0.3.1)
221
+ polyglot (>= 0.3.1)
222
+ polyglot (>= 0.3.1)
223
+ polyglot (>= 0.3.1)
224
+ polyglot (>= 0.3.1)
225
+ polyglot (>= 0.3.1)
226
+ polyglot (>= 0.3.1)
227
+ polyglot (>= 0.3.1)
228
+ polyglot (>= 0.3.1)
229
+ polyglot (>= 0.3.1)
230
+ polyglot (>= 0.3.1)
231
+ polyglot (>= 0.3.1)
232
+ polyglot (>= 0.3.1)
233
+ polyglot (>= 0.3.1)
234
+ polyglot (>= 0.3.1)
235
+ polyglot (>= 0.3.1)
236
+ polyglot (>= 0.3.1)
237
+ polyglot (>= 0.3.1)
238
+ polyglot (>= 0.3.1)
239
+ polyglot (>= 0.3.1)
240
+ polyglot (>= 0.3.1)
241
+ polyglot (>= 0.3.1)
242
+ polyglot (>= 0.3.1)
243
+ polyglot (>= 0.3.1)
244
+ polyglot (>= 0.3.1)
245
+ polyglot (>= 0.3.1)
246
+ polyglot (>= 0.3.1)
247
+ polyglot (>= 0.3.1)
248
+ polyglot (>= 0.3.1)
249
+ polyglot (>= 0.3.1)
250
+ polyglot (>= 0.3.1)
251
+ polyglot (>= 0.3.1)
252
+ polyglot (>= 0.3.1)
253
+ polyglot (>= 0.3.1)
254
+ polyglot (>= 0.3.1)
255
+ polyglot (>= 0.3.1)
256
+ polyglot (>= 0.3.1)
257
+ polyglot (>= 0.3.1)
258
+ polyglot (>= 0.3.1)
259
+ polyglot (>= 0.3.1)
260
+ polyglot (>= 0.3.1)
261
+ polyglot (>= 0.3.1)
262
+ polyglot (>= 0.3.1)
263
+ polyglot (>= 0.3.1)
264
+ polyglot (>= 0.3.1)
265
+ polyglot (>= 0.3.1)
266
+ polyglot (>= 0.3.1)
267
+ polyglot (>= 0.3.1)
268
+ polyglot (>= 0.3.1)
269
+ polyglot (>= 0.3.1)
270
+ polyglot (>= 0.3.1)
271
+ polyglot (>= 0.3.1)
272
+ polyglot (>= 0.3.1)
273
+ polyglot (>= 0.3.1)
274
+ polyglot (>= 0.3.1)
275
+ polyglot (>= 0.3.1)
276
+ polyglot (>= 0.3.1)
277
+ polyglot (>= 0.3.1)
278
+ polyglot (>= 0.3.1)
279
+ polyglot (>= 0.3.1)
280
+ polyglot (>= 0.3.1)
281
+ polyglot (>= 0.3.1)
282
+ polyglot (>= 0.3.1)
283
+ polyglot (>= 0.3.1)
284
+ polyglot (>= 0.3.1)
285
+ polyglot (>= 0.3.1)
286
+ polyglot (>= 0.3.1)
287
+ polyglot (>= 0.3.1)
288
+ polyglot (>= 0.3.1)
289
+ polyglot (>= 0.3.1)
290
+ polyglot (>= 0.3.1)
291
+ polyglot (>= 0.3.1)
292
+ polyglot (>= 0.3.1)
293
+ polyglot (>= 0.3.1)
294
+ polyglot (>= 0.3.1)
295
+ polyglot (>= 0.3.1)
296
+ polyglot (>= 0.3.1)
297
+ polyglot (>= 0.3.1)
298
+ polyglot (>= 0.3.1)
299
+ polyglot (>= 0.3.1)
300
+ polyglot (>= 0.3.1)
301
+ polyglot (>= 0.3.1)
302
+ polyglot (>= 0.3.1)
303
+ polyglot (>= 0.3.1)
304
+ polyglot (>= 0.3.1)
305
+ polyglot (>= 0.3.1)
306
+ polyglot (>= 0.3.1)
307
+ polyglot (>= 0.3.1)
308
+ polyglot (>= 0.3.1)
309
+ polyglot (>= 0.3.1)
310
+ polyglot (>= 0.3.1)
311
+ polyglot (>= 0.3.1)
312
+ polyglot (>= 0.3.1)
313
+ polyglot (>= 0.3.1)
314
+ polyglot (>= 0.3.1)
315
+ polyglot (>= 0.3.1)
316
+ polyglot (>= 0.3.1)
317
+ polyglot (>= 0.3.1)
318
+ polyglot (>= 0.3.1)
319
+ polyglot (>= 0.3.1)
320
+ polyglot (>= 0.3.1)
321
+ polyglot (>= 0.3.1)
322
+ polyglot (>= 0.3.1)
323
+ polyglot (>= 0.3.1)
324
+ polyglot (>= 0.3.1)
325
+ polyglot (>= 0.3.1)
326
+ polyglot (>= 0.3.1)
327
+ polyglot (>= 0.3.1)
328
+ polyglot (>= 0.3.1)
329
+ polyglot (>= 0.3.1)
330
+ polyglot (>= 0.3.1)
331
+ polyglot (>= 0.3.1)
332
+ polyglot (>= 0.3.1)
333
+ polyglot (>= 0.3.1)
334
+ polyglot (>= 0.3.1)
335
+ polyglot (>= 0.3.1)
336
+ polyglot (>= 0.3.1)
337
+ polyglot (>= 0.3.1)
338
+ polyglot (>= 0.3.1)
339
+ polyglot (>= 0.3.1)
340
+ polyglot (>= 0.3.1)
341
+ polyglot (>= 0.3.1)
342
+ polyglot (>= 0.3.1)
343
+ polyglot (>= 0.3.1)
344
+ polyglot (>= 0.3.1)
345
+ polyglot (>= 0.3.1)
346
+ polyglot (>= 0.3.1)
347
+ polyglot (>= 0.3.1)
348
+ polyglot (>= 0.3.1)
349
+ polyglot (>= 0.3.1)
350
+ polyglot (>= 0.3.1)
351
+ polyglot (>= 0.3.1)
352
+ polyglot (>= 0.3.1)
353
+ polyglot (>= 0.3.1)
354
+ polyglot (>= 0.3.1)
355
+ polyglot (>= 0.3.1)
356
+ polyglot (>= 0.3.1)
357
+ polyglot (>= 0.3.1)
358
+ polyglot (>= 0.3.1)
359
+ polyglot (>= 0.3.1)
360
+ polyglot (>= 0.3.1)
361
+ polyglot (>= 0.3.1)
362
+ polyglot (>= 0.3.1)
363
+ polyglot (>= 0.3.1)
364
+ polyglot (>= 0.3.1)
365
+ polyglot (>= 0.3.1)
366
+ polyglot (>= 0.3.1)
367
+ polyglot (>= 0.3.1)
368
+ polyglot (>= 0.3.1)
369
+ polyglot (>= 0.3.1)
370
+ polyglot (>= 0.3.1)
371
+ polyglot (>= 0.3.1)
372
+ polyglot (>= 0.3.1)
373
+ polyglot (>= 0.3.1)
374
+ polyglot (>= 0.3.1)
375
+ polyglot (>= 0.3.1)
376
+ polyglot (>= 0.3.1)
377
+ polyglot (>= 0.3.1)
378
+ polyglot (>= 0.3.1)
379
+ polyglot (>= 0.3.1)
380
+ polyglot (>= 0.3.1)
381
+ polyglot (>= 0.3.1)
382
+ polyglot (>= 0.3.1)
383
+ polyglot (>= 0.3.1)
384
+ polyglot (>= 0.3.1)
385
+ polyglot (>= 0.3.1)
386
+ polyglot (>= 0.3.1)
387
+ polyglot (>= 0.3.1)
388
+ polyglot (>= 0.3.1)
389
+ polyglot (>= 0.3.1)
390
+ polyglot (>= 0.3.1)
391
+ polyglot (>= 0.3.1)
392
+ polyglot (>= 0.3.1)
393
+ polyglot (>= 0.3.1)
394
+ polyglot (>= 0.3.1)
395
+ polyglot (>= 0.3.1)
396
+ polyglot (>= 0.3.1)
397
+ polyglot (>= 0.3.1)
398
+ polyglot (>= 0.3.1)
399
+ polyglot (>= 0.3.1)
400
+ polyglot (>= 0.3.1)
401
+ polyglot (>= 0.3.1)
402
+ polyglot (>= 0.3.1)
403
+ polyglot (>= 0.3.1)
404
+ polyglot (>= 0.3.1)
405
+ polyglot (>= 0.3.1)
406
+ polyglot (>= 0.3.1)
407
+ polyglot (>= 0.3.1)
408
+ polyglot (>= 0.3.1)
409
+ polyglot (>= 0.3.1)
410
+ polyglot (>= 0.3.1)
411
+ polyglot (>= 0.3.1)
412
+ polyglot (>= 0.3.1)
413
+ polyglot (>= 0.3.1)
414
+ tzinfo (1.2.2)
415
+ thread_safe (~> 0.1)
416
+ uglifier (2.7.1)
417
+ execjs (>= 0.3.0)
418
+ json (>= 1.8.0)
419
+
420
+ PLATFORMS
421
+ ruby
422
+
423
+ DEPENDENCIES
424
+ guard
425
+ guard-shell
426
+ js_assets!
427
+ rails (= 4.1.5)
428
+ uglifier (>= 1.3.0)
@@ -0,0 +1,3 @@
1
+ guard :shell do
2
+ watch(%r{^app/assets/.*}) { `rm -rf tmp/cache` }
3
+ end
@@ -0,0 +1,28 @@
1
+ == README
2
+
3
+ This README would normally document whatever steps are necessary to get the
4
+ application up and running.
5
+
6
+ Things you may want to cover:
7
+
8
+ * Ruby version
9
+
10
+ * System dependencies
11
+
12
+ * Configuration
13
+
14
+ * Database creation
15
+
16
+ * Database initialization
17
+
18
+ * How to run the test suite
19
+
20
+ * Services (job queues, cache servers, search engines, etc.)
21
+
22
+ * Deployment instructions
23
+
24
+ * ...
25
+
26
+
27
+ Please feel free to use a different markup language if you do not plan to run
28
+ <tt>rake doc:app</tt>.
@@ -0,0 +1,6 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require File.expand_path('../config/application', __FILE__)
5
+
6
+ Rails.application.load_tasks
File without changes
@@ -0,0 +1,14 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require app_assets
14
+ //= require_tree .
@@ -0,0 +1 @@
1
+ <h1>foo</h1>
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any styles
10
+ * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
+ * file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -0,0 +1,5 @@
1
+ class ApplicationController < ActionController::Base
2
+ # Prevent CSRF attacks by raising an exception.
3
+ # For APIs, you may want to use :null_session instead.
4
+ protect_from_forgery with: :exception
5
+ end
File without changes
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
File without changes
File without changes
File without changes
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
6
+ <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3
+ load Gem.bin_path('bundler', 'bundle')
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+ begin
3
+ load File.expand_path("../spring", __FILE__)
4
+ rescue LoadError
5
+ end
6
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
7
+ require_relative '../config/boot'
8
+ require 'rails/commands'
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+ begin
3
+ load File.expand_path("../spring", __FILE__)
4
+ rescue LoadError
5
+ end
6
+ require_relative '../config/boot'
7
+ require 'rake'
8
+ Rake.application.run