us_web_design_standards_ror 0.2.0 → 0.2.1
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/.gitignore +1 -0
- data/lib/generators/uswds/install/install_generator.rb +1 -1
- data/lib/uswds/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6685c8c9019fdf808bc0d0640b06b2e5c665eb2a
|
|
4
|
+
data.tar.gz: 957ede3dd64382c59e931908722af7697d268aa4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b53f4799eb5c2cf93dfb2f15d01b1639de3d0ded9876f08aa006e33759d78985671d8c764529086ac5f141043e802557920dbfbcb804616fb6c9a80eecca884e
|
|
7
|
+
data.tar.gz: 3075f09a7309f87663e5a088688c362976c3d8d3161cf77c55e90916a737e402bc5d958594705aaf0fcb5f595f0ee2919af9d61a0215491e0a8b3ec416cd69af
|
data/.gitignore
CHANGED
|
@@ -14,7 +14,7 @@ module Uswds
|
|
|
14
14
|
app_css = File.join(Rails.root, 'app', 'assets', 'stylesheets', 'application.css')
|
|
15
15
|
|
|
16
16
|
if File.exist?(app_js)
|
|
17
|
-
insert_into_file app_js, js_inject, :after => "require
|
|
17
|
+
insert_into_file app_js, js_inject, :after => "require jquery\n"
|
|
18
18
|
else
|
|
19
19
|
say_status('','Nor application.js could not be found!')
|
|
20
20
|
end
|
data/lib/uswds/version.rb
CHANGED