flutie 1.3.0 → 1.3.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.
data/README.md CHANGED
@@ -24,9 +24,15 @@ Click on the "Default styles" link to view the same markup with a barebones layo
24
24
 
25
25
  To upgrade, bump the gem version in your Gemfile, and then run 'rake flutie:install' again to get the latest changes moved into your application.
26
26
 
27
- If you are using rails 3.1 or greater with asset pipelining enabled, you don't need to run the installer. Simply add
28
- = require 'flutie'
29
- in the application stylesheet manifest (app/assets/stylesheets/application.css).
27
+ If you are using rails 3.1 or greater with asset pipelining enabled, you don't need to run the installer. Simply add:
28
+
29
+ *= require _flutie
30
+
31
+ in the application stylesheet manifest (app/assets/stylesheets/application.css), or:
32
+
33
+ @import 'flutie';
34
+
35
+ as a sass import.
30
36
 
31
37
  Usage
32
38
  -----
@@ -81,7 +87,7 @@ Development
81
87
  The actual stylesheet source files are sass, so edit the files in app/assets/stylesheets/.
82
88
  To rebuild the static flutie.css file, you can run:
83
89
 
84
- sass --update app/assets/stylesheets/flutie.scss:public/stylesheets/flutie.css
90
+ sass --update app/assets/stylesheets/_flutie.scss:public/stylesheets/flutie.css
85
91
 
86
92
  You can run a server which will allow you to view the flutie styleguide locally:
87
93
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flutie
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -33,12 +33,12 @@ extra_rdoc_files: []
33
33
  files:
34
34
  - app/assets/stylesheets/_defaults.scss
35
35
  - app/assets/stylesheets/_flashes.scss
36
+ - app/assets/stylesheets/_flutie.scss
36
37
  - app/assets/stylesheets/_forms.scss
37
38
  - app/assets/stylesheets/_lists.scss
38
39
  - app/assets/stylesheets/_reset.scss
39
40
  - app/assets/stylesheets/_tables.scss
40
41
  - app/assets/stylesheets/_type.scss
41
- - app/assets/stylesheets/flutie.scss
42
42
  - app/controllers/flutie/styleguides_controller.rb
43
43
  - app/helpers/body_class_helper.rb
44
44
  - app/helpers/page_title_helper.rb