css_canon 0.0.2 → 0.0.3
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.
- data/lib/css_canon/generators/templates/app/assets/stylesheets/module/module.css.scss +1 -0
- data/lib/css_canon/generators/templates/app/assets/stylesheets/vendor_overrides/vendor_overrides.css.scss +1 -0
- data/lib/css_canon/generators/templates/vendor/assets/stylesheets/vendor.css.scss +1 -1
- data/lib/css_canon/version.rb +1 -1
- metadata +3 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//It is intended that modules styles be organized in files and/or folders named after modules, however sass-rails throws an error unless there is at least one match for an "import 'some_glob/**/*" so this empty file is included
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// It is intended that vendor_override styles be organized in files and/or folders corresponding to the vendor libraries they modify, however sass-rails throws an error unless there is at least one match for an "import 'some_glob/**/*"
|
data/lib/css_canon/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: css_canon
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -46,7 +46,9 @@ files:
|
|
|
46
46
|
- lib/css_canon/generators/templates/app/assets/stylesheets/base.css.scss
|
|
47
47
|
- lib/css_canon/generators/templates/app/assets/stylesheets/layout/grid_additions.css.scss
|
|
48
48
|
- lib/css_canon/generators/templates/app/assets/stylesheets/module/README
|
|
49
|
+
- lib/css_canon/generators/templates/app/assets/stylesheets/module/module.css.scss
|
|
49
50
|
- lib/css_canon/generators/templates/app/assets/stylesheets/vendor_overrides/README
|
|
51
|
+
- lib/css_canon/generators/templates/app/assets/stylesheets/vendor_overrides/vendor_overrides.css.scss
|
|
50
52
|
- lib/css_canon/generators/templates/vendor/assets/stylesheets/vendor.css.scss
|
|
51
53
|
- lib/css_canon/version.rb
|
|
52
54
|
homepage: https://github.com/lastobelus/css_canon
|