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 +5 -0
- data/README.md +1 -2
- data/less-rails-bootstrap.gemspec +1 -1
- data/lib/less/rails/bootstrap/version.rb +1 -1
- data/test/cases/usage_css_spec.rb +2 -2
- metadata +7 -7
data/CHANGELOG.md
CHANGED
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
|
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.
|
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'
|
@@ -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:
|
4
|
+
hash: 29
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 2.0.
|
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-
|
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:
|
28
|
+
hash: 7
|
29
29
|
segments:
|
30
30
|
- 2
|
31
|
-
-
|
31
|
+
- 2
|
32
32
|
- 0
|
33
|
-
version: 2.
|
33
|
+
version: 2.2.0
|
34
34
|
type: :runtime
|
35
35
|
version_requirements: *id001
|
36
36
|
- !ruby/object:Gem::Dependency
|