va_common 0.3.4 → 0.3.5
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/README.md +23 -0
- data/lib/va_common/version.rb +1 -1
- data/va_common.gemspec +1 -0
- metadata +17 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f538f6a8a8e7d9a73b2bd006d377d86fc4d1c0ae
|
|
4
|
+
data.tar.gz: b30fe6602e17a96f3c6f7b7f747551c0ffd52927
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c18dd368198785d53995c4a1bd38e0a500094524345241073cef3bd916c2e68bcdabb949f95eaaf8ad41716651fca1321508356a3089b3a7d596e00c730aa4d0
|
|
7
|
+
data.tar.gz: c7810469b4fe3741c6629ec4add5c450c3d1df74726c48fd1f47c30197726ca12bbeb578e4daa269a5629f7f530a04587fb9c2ac6c1b2566b36d929a2e87958c
|
data/README.md
CHANGED
|
@@ -36,6 +36,29 @@ You may also include `va_common/header` and `va_common/footer` separately.
|
|
|
36
36
|
|
|
37
37
|
IMPORTANT: Rails must be restarted after installing this gem to ensure the search paths for partials are found.
|
|
38
38
|
|
|
39
|
+
### Special IE <3
|
|
40
|
+
|
|
41
|
+
To get around the special selector limits of IE9, there is a gem called [css_splitter](https://github.com/zweilove/css_splitter) included. To make it go:
|
|
42
|
+
|
|
43
|
+
Add this to the config/initializers/assets.rb file
|
|
44
|
+
|
|
45
|
+
Rails.application.config.assets.precompile += %w( application_split2.css)
|
|
46
|
+
|
|
47
|
+
Add this to views/layouts/application.html.rb in the head tag
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
<%= split_stylesheet_link_tag "application", :media => "all" %>
|
|
51
|
+
|
|
52
|
+
<!--[if lte IE 9]>
|
|
53
|
+
<link href="/stylesheets/application_split2.css" media="all" rel="stylesheet" type="text/css" />
|
|
54
|
+
<![endif]-->
|
|
55
|
+
|
|
56
|
+
Create a new file called application_split2.css to the same directory as application.css.scss, and put this in it
|
|
57
|
+
|
|
58
|
+
/*
|
|
59
|
+
*= require 'application'
|
|
60
|
+
*/
|
|
61
|
+
|
|
39
62
|
## Development
|
|
40
63
|
|
|
41
64
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake false` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/lib/va_common/version.rb
CHANGED
data/va_common.gemspec
CHANGED
|
@@ -34,4 +34,5 @@ Gem::Specification.new do |spec|
|
|
|
34
34
|
spec.add_runtime_dependency "selectivizr-rails", "~> 1.1.2"
|
|
35
35
|
spec.add_runtime_dependency "wow-rails", "~> 0.0.1"
|
|
36
36
|
spec.add_runtime_dependency "font-awesome-rails", "~> 4.5.0.0"
|
|
37
|
+
spec.add_runtime_dependency "css_splitter", "~> 0.4.4"
|
|
37
38
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: va_common
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Emily Wright-Moore
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-01-
|
|
11
|
+
date: 2016-01-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -234,6 +234,20 @@ dependencies:
|
|
|
234
234
|
- - "~>"
|
|
235
235
|
- !ruby/object:Gem::Version
|
|
236
236
|
version: 4.5.0.0
|
|
237
|
+
- !ruby/object:Gem::Dependency
|
|
238
|
+
name: css_splitter
|
|
239
|
+
requirement: !ruby/object:Gem::Requirement
|
|
240
|
+
requirements:
|
|
241
|
+
- - "~>"
|
|
242
|
+
- !ruby/object:Gem::Version
|
|
243
|
+
version: 0.4.4
|
|
244
|
+
type: :runtime
|
|
245
|
+
prerelease: false
|
|
246
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
247
|
+
requirements:
|
|
248
|
+
- - "~>"
|
|
249
|
+
- !ruby/object:Gem::Version
|
|
250
|
+
version: 0.4.4
|
|
237
251
|
description:
|
|
238
252
|
email:
|
|
239
253
|
- emily.wright-moore@va.gov
|
|
@@ -372,7 +386,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
372
386
|
version: '0'
|
|
373
387
|
requirements: []
|
|
374
388
|
rubyforge_project:
|
|
375
|
-
rubygems_version: 2.
|
|
389
|
+
rubygems_version: 2.4.5.1
|
|
376
390
|
signing_key:
|
|
377
391
|
specification_version: 4
|
|
378
392
|
summary: common elements - header and footer for vets.gov
|