h2ocube_rails_assets 0.0.13 → 0.0.14
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.
- checksums.yaml +4 -4
- data/Gemfile +2 -0
- data/README.md +1 -0
- data/Rakefile +11 -0
- data/h2ocube_rails_assets.gemspec +1 -1
- data/lib/h2ocube_rails_assets.rb +1 -1
- data/test/assets_test.rb +9 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/compass.sass +1 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config/application.rb +20 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +23 -0
- data/test/dummy/config/environments/production.rb +49 -0
- data/test/dummy/config/environments/test.rb +25 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +10 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +58 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/log/development.log +0 -0
- data/test/dummy/log/test.log +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/test_helper.rb +10 -0
- data/vendor/assets/javascripts/backbone.js +1571 -0
- data/vendor/assets/javascripts/jquery/2.0.js +8755 -0
- data/vendor/assets/stylesheets/normalize.css +13 -7
- metadata +54 -3
@@ -1,4 +1,4 @@
|
|
1
|
-
/*! normalize.css v2.1.
|
1
|
+
/*! normalize.css v2.1.1 | MIT License | git.io/normalize */
|
2
2
|
|
3
3
|
/* ==========================================================================
|
4
4
|
HTML5 display definitions
|
@@ -56,15 +56,21 @@ audio:not([controls]) {
|
|
56
56
|
========================================================================== */
|
57
57
|
|
58
58
|
/**
|
59
|
-
* 1.
|
60
|
-
*
|
59
|
+
* 1. Prevent system color scheme's background color being used in Firefox, IE,
|
60
|
+
* and Opera.
|
61
|
+
* 2. Prevent system color scheme's text color being used in Firefox, IE, and
|
62
|
+
* Opera.
|
63
|
+
* 3. Set default font family to sans-serif.
|
64
|
+
* 4. Prevent iOS text size adjust after orientation change, without disabling
|
61
65
|
* user zoom.
|
62
66
|
*/
|
63
67
|
|
64
68
|
html {
|
65
|
-
|
66
|
-
|
67
|
-
-
|
69
|
+
background: #fff; /* 1 */
|
70
|
+
color: #000; /* 2 */
|
71
|
+
font-family: sans-serif; /* 3 */
|
72
|
+
-ms-text-size-adjust: 100%; /* 4 */
|
73
|
+
-webkit-text-size-adjust: 100%; /* 4 */
|
68
74
|
}
|
69
75
|
|
70
76
|
/**
|
@@ -393,4 +399,4 @@ textarea {
|
|
393
399
|
table {
|
394
400
|
border-collapse: collapse;
|
395
401
|
border-spacing: 0;
|
396
|
-
}
|
402
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: h2ocube_rails_assets
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-05-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: slim
|
@@ -122,6 +122,30 @@ files:
|
|
122
122
|
- Rakefile
|
123
123
|
- h2ocube_rails_assets.gemspec
|
124
124
|
- lib/h2ocube_rails_assets.rb
|
125
|
+
- test/assets_test.rb
|
126
|
+
- test/dummy/Rakefile
|
127
|
+
- test/dummy/app/assets/compass.sass
|
128
|
+
- test/dummy/app/controllers/application_controller.rb
|
129
|
+
- test/dummy/app/helpers/application_helper.rb
|
130
|
+
- test/dummy/app/views/layouts/application.html.erb
|
131
|
+
- test/dummy/config.ru
|
132
|
+
- test/dummy/config/application.rb
|
133
|
+
- test/dummy/config/boot.rb
|
134
|
+
- test/dummy/config/environment.rb
|
135
|
+
- test/dummy/config/environments/development.rb
|
136
|
+
- test/dummy/config/environments/production.rb
|
137
|
+
- test/dummy/config/environments/test.rb
|
138
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
139
|
+
- test/dummy/config/initializers/inflections.rb
|
140
|
+
- test/dummy/config/initializers/mime_types.rb
|
141
|
+
- test/dummy/config/initializers/secret_token.rb
|
142
|
+
- test/dummy/config/initializers/session_store.rb
|
143
|
+
- test/dummy/config/locales/en.yml
|
144
|
+
- test/dummy/config/routes.rb
|
145
|
+
- test/dummy/log/development.log
|
146
|
+
- test/dummy/log/test.log
|
147
|
+
- test/dummy/script/rails
|
148
|
+
- test/test_helper.rb
|
125
149
|
- vendor/assets/images/bootstrap/glyphicons-halflings-white.png
|
126
150
|
- vendor/assets/images/bootstrap/glyphicons-halflings.png
|
127
151
|
- vendor/assets/images/jasny-bootstrap/glyphicons-halflings-white.png
|
@@ -159,6 +183,7 @@ files:
|
|
159
183
|
- vendor/assets/javascripts/_jquery.ui.js
|
160
184
|
- vendor/assets/javascripts/_jquery.validate.js
|
161
185
|
- vendor/assets/javascripts/_sammy.js
|
186
|
+
- vendor/assets/javascripts/backbone.js
|
162
187
|
- vendor/assets/javascripts/bootstrap.js
|
163
188
|
- vendor/assets/javascripts/highcharts.js
|
164
189
|
- vendor/assets/javascripts/jasny-bootstrap.js
|
@@ -210,6 +235,7 @@ files:
|
|
210
235
|
- vendor/assets/javascripts/jquery.validate.js
|
211
236
|
- vendor/assets/javascripts/jquery/1.8.js
|
212
237
|
- vendor/assets/javascripts/jquery/1.9.js
|
238
|
+
- vendor/assets/javascripts/jquery/2.0.js
|
213
239
|
- vendor/assets/javascripts/lazyload.js
|
214
240
|
- vendor/assets/javascripts/modernizr.js
|
215
241
|
- vendor/assets/javascripts/sammy.js
|
@@ -256,4 +282,29 @@ rubygems_version: 2.0.3
|
|
256
282
|
signing_key:
|
257
283
|
specification_version: 4
|
258
284
|
summary: Just an assets collection
|
259
|
-
test_files:
|
285
|
+
test_files:
|
286
|
+
- test/assets_test.rb
|
287
|
+
- test/dummy/Rakefile
|
288
|
+
- test/dummy/app/assets/compass.sass
|
289
|
+
- test/dummy/app/controllers/application_controller.rb
|
290
|
+
- test/dummy/app/helpers/application_helper.rb
|
291
|
+
- test/dummy/app/views/layouts/application.html.erb
|
292
|
+
- test/dummy/config.ru
|
293
|
+
- test/dummy/config/application.rb
|
294
|
+
- test/dummy/config/boot.rb
|
295
|
+
- test/dummy/config/environment.rb
|
296
|
+
- test/dummy/config/environments/development.rb
|
297
|
+
- test/dummy/config/environments/production.rb
|
298
|
+
- test/dummy/config/environments/test.rb
|
299
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
300
|
+
- test/dummy/config/initializers/inflections.rb
|
301
|
+
- test/dummy/config/initializers/mime_types.rb
|
302
|
+
- test/dummy/config/initializers/secret_token.rb
|
303
|
+
- test/dummy/config/initializers/session_store.rb
|
304
|
+
- test/dummy/config/locales/en.yml
|
305
|
+
- test/dummy/config/routes.rb
|
306
|
+
- test/dummy/log/development.log
|
307
|
+
- test/dummy/log/test.log
|
308
|
+
- test/dummy/script/rails
|
309
|
+
- test/test_helper.rb
|
310
|
+
has_rdoc:
|