bootstrap_haml_helpers 0.0.3 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +14 -6
- data/lib/bootstrap_haml_helpers/component.rb +5 -0
- data/lib/bootstrap_haml_helpers/engine.rb +1 -0
- data/lib/bootstrap_haml_helpers/version.rb +1 -1
- metadata +23 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 328e2328a59b80867508693459a0ba8d9a91bcae
|
4
|
+
data.tar.gz: 9bd4d0ed6a0a28cd4a4da5fbab6cdfcc15fa0562
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b244cf90369662d551a0021690d11a7888d276db12cf0f405be671f947f19f1c7a551c3644bad49234c675ced76cdcbb237127642b10e8ab8e74781586679b80
|
7
|
+
data.tar.gz: 93761144f457d063a726f8183706628a441893f6ecc0625f7181085cd3bd495f78be7b6ec77496d8eb3a8ed44a8a214b253eb7f3d1ff303592975336bdd8f8c3
|
data/README.md
CHANGED
@@ -1,8 +1,20 @@
|
|
1
|
-
lumoslabs/bootstrap_haml_helpers
|
2
|
-
====
|
1
|
+
# lumoslabs/bootstrap_haml_helpers
|
3
2
|
|
4
3
|
HAML wrappers for [Twitter Bootstrap](http://getbootstrap.com/2.3.2) components.
|
5
4
|
|
5
|
+
[![Build Status](https://travis-ci.org/lumoslabs/bootstrap_haml_helpers.svg)](https://travis-ci.org/lumoslabs/bootstrap_haml_helpers)
|
6
|
+
[![Gem Version](https://badge.fury.io/rb/bootstrap_haml_helpers.svg)](http://badge.fury.io/rb/bootstrap_haml_helpers)
|
7
|
+
|
8
|
+
How To Use The Components
|
9
|
+
----
|
10
|
+
```haml
|
11
|
+
= container do
|
12
|
+
woah!
|
13
|
+
|
14
|
+
= progress_bar do |pb|
|
15
|
+
= pb.bar(40)
|
16
|
+
```
|
17
|
+
|
6
18
|
Integration
|
7
19
|
----
|
8
20
|
To integrate our gem into your application, follow these steps:
|
@@ -12,10 +24,6 @@ To integrate our gem into your application, follow these steps:
|
|
12
24
|
3. Add the following line to your main SASS file (typically application.css.sass): `//= require bootstrap_haml_helpers`
|
13
25
|
4. Add the following to your main JS file (typically application.js): `//= require bootstrap_haml_helpers`
|
14
26
|
|
15
|
-
CI
|
16
|
-
----
|
17
|
-
bootstrap_haml_helpers runs on public [Travis CI](https://magnum.travis-ci.com/lumoslabs/bootstrap_haml_helpers).
|
18
|
-
|
19
27
|
Versioning
|
20
28
|
----
|
21
29
|
We follow the same version as Twitter Bootstrap (currently 2.3.2). Any patches will fall as a sub-version of the existing patch number (e.g. 2.3.2.1).
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootstrap_haml_helpers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Seung-Hyo Choi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-05-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - '>='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: '0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - '>='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bootstrap-sass
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -42,44 +42,44 @@ dependencies:
|
|
42
42
|
name: haml
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - '>='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: '0'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - '>='
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
54
|
+
version: '0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: sass-rails
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- -
|
59
|
+
- - '>='
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
61
|
+
version: '0'
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- -
|
66
|
+
- - '>='
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
68
|
+
version: '0'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: sass
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- - '
|
73
|
+
- - '>='
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version:
|
75
|
+
version: '0'
|
76
76
|
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
|
-
- - '
|
80
|
+
- - '>='
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
82
|
+
version: '0'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: sqlite3
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -98,16 +98,16 @@ dependencies:
|
|
98
98
|
name: rspec-rails
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
|
-
- -
|
101
|
+
- - '>='
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: '
|
103
|
+
version: '0'
|
104
104
|
type: :development
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
|
-
- -
|
108
|
+
- - '>='
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: '
|
110
|
+
version: '0'
|
111
111
|
description: Convenient, clean wrappers for Twitter Bootstrap components and scaffolding.
|
112
112
|
email:
|
113
113
|
- seunghyo@lumoslabs.com
|
@@ -122,6 +122,7 @@ files:
|
|
122
122
|
- app/models/bootstrap_haml_helpers/component/inheritable_traits.rb
|
123
123
|
- app/models/bootstrap_haml_helpers/components/progress_bar.rb
|
124
124
|
- app/models/bootstrap_haml_helpers/scaffolding/container.rb
|
125
|
+
- lib/bootstrap_haml_helpers/component.rb
|
125
126
|
- lib/bootstrap_haml_helpers/controller_helpers.rb
|
126
127
|
- lib/bootstrap_haml_helpers/engine.rb
|
127
128
|
- lib/bootstrap_haml_helpers/spec_view_helpers.rb
|