twbs_less_rails 2.8.1 → 2.8.2

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: c7442e8f4ac4417fc99b6a58f0fd40223f750ba1
4
- data.tar.gz: 489faa88d524bc01f4673e0cd1ef0f50d5c9ace9
3
+ metadata.gz: ff959567f02c639395e0fe82b46b4675476ff9e3
4
+ data.tar.gz: baabb1afcc2d6a7886a98ae793ca7e4f91f05f7f
5
5
  SHA512:
6
- metadata.gz: f0ee0e99b23ef85b34851a459a71995b5fbd693922377a4e82a62e8aeb180df4a08bba85c79c3c895ce8137d3d92bfab52c632ee5f6f4be894298d6ccd22b9de
7
- data.tar.gz: e92565c76936f68ad606f48fd3ed6a7482450bff064edc08681dd71128f19bda3bc383d7c12f4743ec8bde3e4a4827f5c1b0301a72958b542ab07738da6bf93f
6
+ metadata.gz: 2b39fe0b80eaf298958e74a4355c24d5e10d6d6fe73ebf8e016670b9432bf3a08b85f95f1d8bee0e436bab2d45a89f14365a80926eee010a2b61e80d6a44ef95
7
+ data.tar.gz: c598806771e5ee77242cd6fb23e6fd5cfd54488d699b0542792258d4d89afa49582b3ccdb27c9aa866752aa50c00efd0e7c7a3652ae8acb4c89d19fb7dcf6a48
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.8.2
4
+
5
+ * Improved tests
6
+
3
7
  ## 2.8.1
4
8
 
5
9
  * Fixed gem version number
@@ -1,3 +1,3 @@
1
1
  module TwbsLessRails
2
- VERSION = "2.8.1"
2
+ VERSION = "2.8.2"
3
3
  end
@@ -1,5 +1,10 @@
1
1
  @import "twbs-variables.css.less";
2
2
 
3
3
  .test-class {
4
- color: @brand-primary;
4
+ color: @link-color;
5
5
  }
6
+
7
+ .test-hover-class {
8
+ color: @link-hover-color;
9
+ }
10
+
@@ -35,11 +35,13 @@ describe "assets precompile in production environment integration" do
35
35
  it "overrides Bootstrap variables" do
36
36
  visit "/assets/#{get_asset_name('application', 'css')}"
37
37
  page.text.must_include 'color: #d10d10;'
38
+ page.text.must_include 'color: #89090a;' # automatically generated hover
38
39
  end
39
40
 
40
41
  it "overrides Bootstrap variables in user stylesheets" do
41
42
  visit "/assets/#{get_asset_name('application', 'css')}"
42
43
  page.text.must_include '.test-class { color: #d10d10; }'
44
+ page.text.must_include '.test-hover-class { color: #89090a; }'
43
45
  end
44
46
 
45
47
  private
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twbs_less_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.1
4
+ version: 2.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - diowa
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-30 00:00:00.000000000 Z
11
+ date: 2014-01-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -306,7 +306,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
306
306
  version: '0'
307
307
  requirements: []
308
308
  rubyforge_project:
309
- rubygems_version: 2.2.0
309
+ rubygems_version: 2.2.1
310
310
  signing_key:
311
311
  specification_version: 4
312
312
  summary: Bootstrap and FontAwesome assets in Rails applications