less-rails-bootstrap 2.0.8 → 2.0.9

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  CHANGELOG
2
2
  =========
3
3
 
4
+ 2.0.9 - 04/04/2012
5
+
6
+ * Bumping the less-rails depedency so everyone can use therubyracer 0.10.0.
7
+
8
+
4
9
  2.0.8 - 03/13/2012
5
10
 
6
11
  * Fix icon sprite paths. Seems they are real paths now.
data/README.md CHANGED
@@ -1,4 +1,3 @@
1
-
2
1
  # Less Rails Bootstrap
3
2
 
4
3
  Bootstrap is Twitter's toolkit for kickstarting CSS for websites, apps, and more. It includes base CSS styles for typography, forms, buttons, tables, grids, navigation, alerts, and more. To get started -- checkout http://twitter.github.com/bootstrap!
@@ -44,7 +43,7 @@ $(document).ready(function(){
44
43
 
45
44
  ## Testing
46
45
 
47
- Simple! Just clone the repo, then run `bundle install` and `bundle exec rake`. The tests will begin to run. We also use Travis CI to run our tests too. Current build status is:
46
+ Simple! Just clone the repo, then run `bundle install` and `bundle exec rake`. The tests will begin to run. We also use Travis CI to run our tests. The current build status is:
48
47
 
49
48
  [![Build Status](https://secure.travis-ci.org/metaskills/less-rails-bootstrap.png)](http://travis-ci.org/metaskills/less-rails-bootstrap)
50
49
 
@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
14
14
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
15
15
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
16
16
  s.require_paths = ["lib"]
17
- s.add_runtime_dependency "less-rails", "~> 2.1.0"
17
+ s.add_runtime_dependency "less-rails", "~> 2.2.0"
18
18
  s.add_development_dependency 'minitest'
19
19
  s.add_development_dependency 'guard-minitest'
20
20
  s.add_development_dependency 'rails', '~> 3.1'
@@ -1,7 +1,7 @@
1
1
  module Less
2
2
  module Rails
3
3
  module Bootstrap
4
- VERSION = "2.0.8"
4
+ VERSION = "2.0.9"
5
5
  end
6
6
  end
7
7
  end
@@ -15,8 +15,8 @@ class UsageCssSpec < Less::Rails::Bootstrap::Spec
15
15
  end
16
16
 
17
17
  it 'uses less-rails asset-url helper for images' do
18
- app_css.must_include 'url(/assets/twitter/bootstrap/glyphicons-halflings.png)'
19
- app_css.must_include 'url(/assets/twitter/bootstrap/glyphicons-halflings-white.png)'
18
+ app_css.must_include 'url("/assets/twitter/bootstrap/glyphicons-halflings.png")'
19
+ app_css.must_include 'url("/assets/twitter/bootstrap/glyphicons-halflings-white.png")'
20
20
  end
21
21
 
22
22
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: less-rails-bootstrap
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 29
5
5
  prerelease:
6
6
  segments:
7
7
  - 2
8
8
  - 0
9
- - 8
10
- version: 2.0.8
9
+ - 9
10
+ version: 2.0.9
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ken Collins
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-03-13 00:00:00 Z
18
+ date: 2012-04-04 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: less-rails
@@ -25,12 +25,12 @@ dependencies:
25
25
  requirements:
26
26
  - - ~>
27
27
  - !ruby/object:Gem::Version
28
- hash: 11
28
+ hash: 7
29
29
  segments:
30
30
  - 2
31
- - 1
31
+ - 2
32
32
  - 0
33
- version: 2.1.0
33
+ version: 2.2.0
34
34
  type: :runtime
35
35
  version_requirements: *id001
36
36
  - !ruby/object:Gem::Dependency