twbs_sass_rails 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7c8e7a6e483a2eec452b5694f9fbdb0b7da9a68d
4
- data.tar.gz: b7039905105f9aa37dcaba52e799d48f3fd4934e
3
+ metadata.gz: 402443434753067cc122cdb65a6a0cd44d481c68
4
+ data.tar.gz: 5411192fadbb2e7d7f5ed9f88e7ba77a3d9e8839
5
5
  SHA512:
6
- metadata.gz: 4a3699e21da4277a945af98d47e8949e8d1ea18bf3781906f3b29d3ce5047b884571402905c9a3009448969a34a6ab59b202fdc59d5d7dc9870caa8a78963c5a
7
- data.tar.gz: 840dd907b4bae8fefb59a033f5ed76c8bd3fc9da5449f72f41a038b8dea8c79dac1ad43f0bd4701e36b5557644e671be037af0297da90f14b36d4f2a5688d619
6
+ metadata.gz: dd650ffbc7381985885e45fab4f3923bbf7515008db0917b6278f307f5eebca6264ca6004ba17efd371b181d289f18c020964921875885ca615302bceac11f6e
7
+ data.tar.gz: d69f582d581a9a53759b91bb48983ceeae6d76d7ac457fbc5e2af941c70c347cac81ed7c7c2952d6a26fcf7c3fe276f574b07339b9699ddbbecee0013c1f4849
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.6.1
4
+
5
+ * Fixed README
6
+
3
7
  ## 0.6.0
4
8
 
5
9
  * Support for Rails 4.1.0.rc2
data/Gemfile.lock CHANGED
@@ -33,7 +33,6 @@ GEM
33
33
  thread_safe (~> 0.1)
34
34
  tzinfo (~> 0.3.37)
35
35
  arel (4.0.2)
36
- atomic (1.1.16)
37
36
  builder (3.1.4)
38
37
  capybara (2.2.1)
39
38
  mime-types (>= 1.16)
@@ -55,9 +54,9 @@ GEM
55
54
  mime-types (~> 1.16)
56
55
  treetop (~> 1.4.8)
57
56
  mime-types (1.25.1)
58
- mini_portile (0.5.2)
57
+ mini_portile (0.5.3)
59
58
  minitest (4.7.5)
60
- multi_json (1.8.4)
59
+ multi_json (1.9.2)
61
60
  nokogiri (1.6.1)
62
61
  mini_portile (~> 0.5.0)
63
62
  polyglot (0.3.4)
@@ -77,7 +76,7 @@ GEM
77
76
  activesupport (= 4.0.4)
78
77
  rake (>= 0.8.7)
79
78
  thor (>= 0.18.1, < 2.0)
80
- rake (10.1.1)
79
+ rake (10.2.2)
81
80
  rest-client (1.6.7)
82
81
  mime-types (>= 1.16)
83
82
  sass (3.3.4)
@@ -101,11 +100,10 @@ GEM
101
100
  sprockets (~> 2.8)
102
101
  term-ansicolor (1.3.0)
103
102
  tins (~> 1.0)
104
- thor (0.18.1)
105
- thread_safe (0.3.1)
106
- atomic (>= 1.1.7, < 2)
103
+ thor (0.19.1)
104
+ thread_safe (0.3.2)
107
105
  tilt (1.4.1)
108
- tins (1.0.0)
106
+ tins (1.0.1)
109
107
  treetop (1.4.15)
110
108
  polyglot
111
109
  polyglot (>= 0.3.1)
data/README.md CHANGED
@@ -27,7 +27,7 @@ $ rails g twbs_sass_rails:install
27
27
 
28
28
  ### Variables
29
29
  Use `twbs-variables.css.scss` to override Bootstrap defaults:
30
- ```css
30
+ ```scss
31
31
  /* New variables */
32
32
  $flat-ui-emerald: #2ecc71;
33
33
  $flat-ui-nephritis: #27ae60;
@@ -36,8 +36,8 @@ $flat-ui-peter-river: #3498db;
36
36
  $flat-ui-belize-hole: #2980b9;
37
37
 
38
38
  /* Overrides */
39
- $brand-primary: @flat-ui-belize-hole;
40
- $brand-success: @flat-ui-nephritis;
39
+ $brand-primary: $flat-ui-belize-hole;
40
+ $brand-success: $flat-ui-nephritis;
41
41
 
42
42
  /* Do not edit below this line */
43
43
  @import "twbs/bootstrap/variables";
@@ -49,13 +49,13 @@ $brand-success: @flat-ui-nephritis;
49
49
  Twbs Sass Rails comes with Glyphicons and Fontawesome, both disabled by default. Edit your `twbs.css.scss` to enable them.
50
50
 
51
51
  Use Glyphicons:
52
- ```css
52
+ ```scss
53
53
  @import "twbs/bootstrap/glyphicons";
54
54
  //@import "fontawesome/font-awesome";
55
55
  ```
56
56
 
57
57
  Use FontAwesome:
58
- ```css
58
+ ```scss
59
59
  //@import "twbs/bootstrap/glyphicons";
60
60
  @import "fontawesome/font-awesome";
61
61
  ```
@@ -65,7 +65,7 @@ If you want to use the [Bootstrap theme](http://getbootstrap.com/examples/theme/
65
65
 
66
66
  ### Customize SCSS components
67
67
  If you want to exclude some SCSS components, remove `@import "twbs/bootstrap";` from your `twbs.css.scss` and add the components you need, e.g.:
68
- ```css
68
+ ```scss
69
69
  /* Use twbs-variables to define new variables and override Bootstrap defaults.
70
70
  * Import "twbs-variables" instead of "twbs/bootstrap/variables"
71
71
  * in each new stylesheet.
@@ -1,3 +1,3 @@
1
1
  module TwbsSassRails
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twbs_sass_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - diowa
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-26 00:00:00.000000000 Z
11
+ date: 2014-04-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -280,7 +280,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
280
280
  version: '0'
281
281
  requirements: []
282
282
  rubyforge_project:
283
- rubygems_version: 2.2.0
283
+ rubygems_version: 2.2.2
284
284
  signing_key:
285
285
  specification_version: 4
286
286
  summary: Bootstrap and FontAwesome assets in Rails applications