tw_bootstrap_helper 0.2.3 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/app/assets/javascripts/002-jquery-tablesorter.js +3 -0
- data/app/assets/javascripts/003-bootstrap-alerts.js +124 -0
- data/app/assets/javascripts/003-bootstrap-buttons.js +64 -0
- data/app/assets/javascripts/003-bootstrap-dropdown.js +55 -0
- data/app/assets/javascripts/003-bootstrap-modal.js +260 -0
- data/app/assets/javascripts/003-bootstrap-popover.js +90 -0
- data/app/assets/javascripts/003-bootstrap-scrollspy.js +107 -0
- data/app/assets/javascripts/003-bootstrap-tabs.js +80 -0
- data/app/assets/javascripts/003-bootstrap-twipsy.js +321 -0
- data/app/assets/javascripts/999-bootstrap-default-behaviors.js +49 -0
- data/app/assets/stylesheets/001-bootstrap.css +2467 -0
- data/app/assets/stylesheets/002-bootstrap-hacks-and-fixes.css +10 -0
- data/app/assets/stylesheets/003-bootstrap-layout.css +35 -0
- data/app/assets/stylesheets/004-bootstrap-overrides.css +134 -0
- data/lib/generators/bootstrap/bootstrap_generator.rb +1 -1
- data/lib/generators/bootstrap/templates/9991-bootstrap-hacks-and-fixes.css +19 -0
- data/lib/generators/bootstrap/templates/9992-bootstrap-utils.css +133 -0
- data/lib/tw_bootstrap_helper/view_helper.rb +10 -30
- metadata +98 -52
@@ -0,0 +1,35 @@
|
|
1
|
+
|
2
|
+
body{
|
3
|
+
|
4
|
+
}
|
5
|
+
|
6
|
+
.sidebar h2{
|
7
|
+
margin: 0 0 0.5em 0 !important;
|
8
|
+
}
|
9
|
+
|
10
|
+
.topbar{
|
11
|
+
margin: 0 !important;
|
12
|
+
padding: 0 !important;
|
13
|
+
}
|
14
|
+
|
15
|
+
.nav-icon-item{
|
16
|
+
width: 72px !important;
|
17
|
+
display: inline-table;
|
18
|
+
text-align: center;
|
19
|
+
}
|
20
|
+
|
21
|
+
.nav-icon-item span{
|
22
|
+
color: #CCC;
|
23
|
+
text-shadow: 2px 2px 2px #000;
|
24
|
+
}
|
25
|
+
|
26
|
+
#nav-icon{
|
27
|
+
border-bottom: solid 2px #333;
|
28
|
+
margin-bottom: 2em;
|
29
|
+
}
|
30
|
+
|
31
|
+
body .content,
|
32
|
+
body .well{
|
33
|
+
background-color: #FFF;
|
34
|
+
padding:12px;
|
35
|
+
}
|
@@ -0,0 +1,134 @@
|
|
1
|
+
/* FONTS */
|
2
|
+
|
3
|
+
.f-code{
|
4
|
+
}
|
5
|
+
|
6
|
+
.f-number{
|
7
|
+
}
|
8
|
+
|
9
|
+
/* FONT SIZES */
|
10
|
+
|
11
|
+
h1{
|
12
|
+
display:block;
|
13
|
+
padding:6px !important;
|
14
|
+
}
|
15
|
+
|
16
|
+
.f-code{
|
17
|
+
font-weight: bold;
|
18
|
+
font-size: 1.3em;
|
19
|
+
}
|
20
|
+
|
21
|
+
/* UTILS */
|
22
|
+
|
23
|
+
.small-shadow{
|
24
|
+
-moz-box-shadow: 2px 4px 8px #000;
|
25
|
+
-webkit-box-shadow: 2px 4px 8px #000;
|
26
|
+
box-shadow: 2px 4px 8px #000;
|
27
|
+
}
|
28
|
+
|
29
|
+
.corner{
|
30
|
+
-moz-border-radius: 10px;
|
31
|
+
border-radius: 10px;
|
32
|
+
}
|
33
|
+
|
34
|
+
.border{
|
35
|
+
border: solid 1px #CCC;
|
36
|
+
}
|
37
|
+
|
38
|
+
.dashed-border{
|
39
|
+
border: dashed 1px #CCC;
|
40
|
+
}
|
41
|
+
|
42
|
+
.dark-border{
|
43
|
+
border: solid 2px #333;
|
44
|
+
}
|
45
|
+
|
46
|
+
.center{
|
47
|
+
text-align:center;
|
48
|
+
}
|
49
|
+
|
50
|
+
.align-right{
|
51
|
+
text-align: right !important;
|
52
|
+
}
|
53
|
+
|
54
|
+
.align-left{
|
55
|
+
text-align: left !important;
|
56
|
+
}
|
57
|
+
|
58
|
+
.bold{
|
59
|
+
text-weight:bold;
|
60
|
+
}
|
61
|
+
|
62
|
+
.center{
|
63
|
+
text-align: center !important;
|
64
|
+
padding: 0 0 10px 0!important;
|
65
|
+
}
|
66
|
+
|
67
|
+
.v-padding{
|
68
|
+
padding-top: 6px;
|
69
|
+
padding-bottom: 6px;
|
70
|
+
}
|
71
|
+
|
72
|
+
.h-padding{
|
73
|
+
padding-left: 6px;
|
74
|
+
padding-right: 6px;
|
75
|
+
}
|
76
|
+
|
77
|
+
.v-margin{
|
78
|
+
margin-top: 6px;
|
79
|
+
margin-bottom: 6px;
|
80
|
+
}
|
81
|
+
|
82
|
+
.h-margin{
|
83
|
+
margin-left: 6px;
|
84
|
+
margin-right: 6px;
|
85
|
+
}
|
86
|
+
|
87
|
+
.opaque{
|
88
|
+
background-color: #FFF;
|
89
|
+
}
|
90
|
+
|
91
|
+
.gradient{
|
92
|
+
background-image: linear-gradient(top, rgb(250,250,250) 38%, rgb(228,235,235) 64%);
|
93
|
+
background-image: -o-linear-gradient(top, rgb(250,250,250) 38%, rgb(228,235,235) 64%);
|
94
|
+
background-image: -moz-linear-gradient(top, rgb(250,250,250) 38%, rgb(228,235,235) 64%);
|
95
|
+
background-image: -webkit-linear-gradient(top, rgb(250,250,250) 38%, rgb(228,235,235) 64%);
|
96
|
+
background-image: -ms-linear-gradient(top, rgb(250,250,250) 38%, rgb(228,235,235) 64%);
|
97
|
+
|
98
|
+
background-image: -webkit-gradient(
|
99
|
+
linear,
|
100
|
+
right top,
|
101
|
+
right bottom,
|
102
|
+
color-stop(0.38, rgb(250,250,250)),
|
103
|
+
color-stop(0.64, rgb(228,235,235))
|
104
|
+
);
|
105
|
+
}
|
106
|
+
|
107
|
+
.toolbar{
|
108
|
+
|
109
|
+
padding:0 1em;
|
110
|
+
margin:1em 0;
|
111
|
+
|
112
|
+
}
|
113
|
+
|
114
|
+
.toolbar ul{
|
115
|
+
margin:1em 0 !important;
|
116
|
+
}
|
117
|
+
|
118
|
+
.toolbar ul li{
|
119
|
+
margin-right:1em;
|
120
|
+
display:inline;
|
121
|
+
}
|
122
|
+
|
123
|
+
table{
|
124
|
+
background-color: #FFF;
|
125
|
+
}
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
|
134
|
+
|
@@ -1,7 +1,7 @@
|
|
1
1
|
class BootstrapGenerator < Rails::Generators::NamedBase
|
2
2
|
source_root File.expand_path('../templates', __FILE__)
|
3
3
|
argument :assets, :type => :string, :default => "install"
|
4
|
-
class_option :bootstrap, :type => :boolean, :default => false, :description => "
|
4
|
+
class_option :bootstrap, :type => :boolean, :default => false, :description => "Copy Local Default Twitter Bootstrap Files..."
|
5
5
|
|
6
6
|
def generate_assets
|
7
7
|
# copy twitter bootstrap javascript files
|
@@ -0,0 +1,19 @@
|
|
1
|
+
|
2
|
+
/* FIXES */
|
3
|
+
|
4
|
+
body { padding-top: 60px !important; } /* bootstrap fix */
|
5
|
+
|
6
|
+
.brand img{margin: 0 6px 0 0;vertical-align:middle;}
|
7
|
+
|
8
|
+
.well ul li{list-style:none}
|
9
|
+
|
10
|
+
.well ul li img{margin-right:6px;vertical-align:bottom;}
|
11
|
+
|
12
|
+
form .inputs label{
|
13
|
+
margin-right:1em;
|
14
|
+
font-weight:bold;
|
15
|
+
}
|
16
|
+
|
17
|
+
form .span1-5{
|
18
|
+
width: 50px !important;
|
19
|
+
}
|
@@ -0,0 +1,133 @@
|
|
1
|
+
/* FONTS */
|
2
|
+
|
3
|
+
.f-code{
|
4
|
+
font-family: "Courier New" !important;
|
5
|
+
}
|
6
|
+
|
7
|
+
.f-number{
|
8
|
+
font-family: 'Convergence', sans-serif !important;
|
9
|
+
}
|
10
|
+
|
11
|
+
/* FONT SIZES */
|
12
|
+
|
13
|
+
h1{
|
14
|
+
display:block;
|
15
|
+
padding:6px !important;
|
16
|
+
}
|
17
|
+
|
18
|
+
.f-code{
|
19
|
+
font-weight: bold;
|
20
|
+
font-size: 1.3em;
|
21
|
+
}
|
22
|
+
|
23
|
+
/* UTILS */
|
24
|
+
|
25
|
+
.small-shadow{
|
26
|
+
-moz-box-shadow: 2px 4px 8px #000;
|
27
|
+
-webkit-box-shadow: 2px 4px 8px #000;
|
28
|
+
box-shadow: 2px 4px 8px #000;
|
29
|
+
}
|
30
|
+
|
31
|
+
.corner{
|
32
|
+
-moz-border-radius: 10px;
|
33
|
+
border-radius: 10px;
|
34
|
+
}
|
35
|
+
|
36
|
+
.border{
|
37
|
+
border: solid 1px #CCC;
|
38
|
+
}
|
39
|
+
|
40
|
+
.dashed-border{
|
41
|
+
border: dashed 1px #CCC;
|
42
|
+
}
|
43
|
+
|
44
|
+
.dark-border{
|
45
|
+
border: solid 2px #333;
|
46
|
+
}
|
47
|
+
|
48
|
+
.center{
|
49
|
+
text-align:center;
|
50
|
+
}
|
51
|
+
|
52
|
+
.align-right{
|
53
|
+
text-align: right !important;
|
54
|
+
}
|
55
|
+
|
56
|
+
.align-left{
|
57
|
+
text-align: left !important;
|
58
|
+
}
|
59
|
+
|
60
|
+
.bold{
|
61
|
+
text-weight:bold;
|
62
|
+
}
|
63
|
+
|
64
|
+
.center{
|
65
|
+
text-align: center !important;
|
66
|
+
}
|
67
|
+
|
68
|
+
.v-padding{
|
69
|
+
}
|
70
|
+
|
71
|
+
.h-padding{
|
72
|
+
padding-top: 6px;
|
73
|
+
padding-bottom: 6px;
|
74
|
+
}
|
75
|
+
|
76
|
+
.v-margin{
|
77
|
+
margin-top: 6px;
|
78
|
+
margin-bottom: 6px;
|
79
|
+
}
|
80
|
+
|
81
|
+
.h-margin{
|
82
|
+
margin-left: 6px;
|
83
|
+
margin-right: 6px;
|
84
|
+
}
|
85
|
+
|
86
|
+
.opaque{
|
87
|
+
background-color: #FFF;
|
88
|
+
}
|
89
|
+
|
90
|
+
.gradient{
|
91
|
+
background-image: linear-gradient(top, rgb(250,250,250) 38%, rgb(228,235,235) 64%);
|
92
|
+
background-image: -o-linear-gradient(top, rgb(250,250,250) 38%, rgb(228,235,235) 64%);
|
93
|
+
background-image: -moz-linear-gradient(top, rgb(250,250,250) 38%, rgb(228,235,235) 64%);
|
94
|
+
background-image: -webkit-linear-gradient(top, rgb(250,250,250) 38%, rgb(228,235,235) 64%);
|
95
|
+
background-image: -ms-linear-gradient(top, rgb(250,250,250) 38%, rgb(228,235,235) 64%);
|
96
|
+
|
97
|
+
background-image: -webkit-gradient(
|
98
|
+
linear,
|
99
|
+
right top,
|
100
|
+
right bottom,
|
101
|
+
color-stop(0.38, rgb(250,250,250)),
|
102
|
+
color-stop(0.64, rgb(228,235,235))
|
103
|
+
);
|
104
|
+
}
|
105
|
+
|
106
|
+
.toolbar{
|
107
|
+
|
108
|
+
padding:0 1em;
|
109
|
+
margin:1em 0;
|
110
|
+
|
111
|
+
}
|
112
|
+
|
113
|
+
.toolbar ul{
|
114
|
+
margin:1em 0 !important;
|
115
|
+
}
|
116
|
+
|
117
|
+
.toolbar ul li{
|
118
|
+
margin-right:1em;
|
119
|
+
display:inline;
|
120
|
+
}
|
121
|
+
|
122
|
+
table{
|
123
|
+
background-color: #FFF;
|
124
|
+
}
|
125
|
+
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
|
@@ -1,15 +1,15 @@
|
|
1
|
-
# Helpers para auxiliar o uso do
|
1
|
+
# Helpers para auxiliar o uso do Twitter Bootstrap em Rails Apps
|
2
2
|
#
|
3
|
-
# Author:: Luiz Eduardo de Oliveira Fomseca - Agência Orangeweb (mailto:
|
3
|
+
# Author:: Luiz Eduardo de Oliveira Fomseca - Agência Orangeweb (mailto:apps@orangeweb.com.br)
|
4
4
|
# Copyright:: Copyright (c) 2011 Agência Orangeweb, MEI
|
5
5
|
# License:: MIT
|
6
6
|
|
7
7
|
require 'tw_bootstrap_helper/railtie.rb'
|
8
8
|
|
9
|
-
# GEM
|
9
|
+
# GEM tw_bootstrap_helper
|
10
10
|
module TwBootStrapHelper
|
11
11
|
|
12
|
-
|
12
|
+
# Extende os Helpers da Aplicação
|
13
13
|
module ViewHelper
|
14
14
|
|
15
15
|
def bootstrap_link_to title, path, type, options={}
|
@@ -77,34 +77,18 @@ module ViewHelper
|
|
77
77
|
options[:confirm] = 'Tem certeza que deseja apagar este item?'
|
78
78
|
options[:method] = :delete
|
79
79
|
danger_link_to title, path, options
|
80
|
-
end
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
# Show a Toolbar
|
85
|
-
def toolbar(&block)
|
86
|
-
content = capture(&block)
|
87
|
-
content_tag(:div, content_tag(:ul, content), :class => "toolbar corner border gradient")
|
88
|
-
end
|
89
|
-
|
90
|
-
# Show a Toolbar
|
91
|
-
def toolbar_item(&block)
|
92
|
-
content = capture(&block)
|
93
|
-
content_tag(:li, content, :class => "toolbar-item")
|
94
|
-
end
|
95
|
-
|
96
|
-
|
80
|
+
end
|
97
81
|
|
98
82
|
# Show a Pill Toolbar
|
99
83
|
def pill(&block)
|
100
84
|
content = capture(&block)
|
101
|
-
content_tag(:div, content_tag(:ul, content, :class => "pills
|
85
|
+
content_tag(:div, content_tag(:ul, content, :class => "pills"))
|
102
86
|
end
|
103
87
|
|
104
88
|
# Show a Pill Toolbar Item
|
105
89
|
def pill_item(&block)
|
106
90
|
content = capture(&block)
|
107
|
-
content_tag(:li, content
|
91
|
+
content_tag(:li, content)
|
108
92
|
end
|
109
93
|
|
110
94
|
|
@@ -169,10 +153,7 @@ module ViewHelper
|
|
169
153
|
# Bootstrap Col Grid
|
170
154
|
def grid_col(cols, center=true,&block)
|
171
155
|
content = capture(&block)
|
172
|
-
cl = "span#{cols}
|
173
|
-
|
174
|
-
cl += " center " if center
|
175
|
-
|
156
|
+
cl = "span#{cols}"
|
176
157
|
content_tag(:div, content, :class => cl)
|
177
158
|
end
|
178
159
|
|
@@ -188,7 +169,7 @@ module ViewHelper
|
|
188
169
|
def table(opts={}, &block)
|
189
170
|
content = capture(&block)
|
190
171
|
|
191
|
-
opts[:class] = "
|
172
|
+
opts[:class] = "zebra-striped"
|
192
173
|
|
193
174
|
content_tag(:table, content, opts)
|
194
175
|
end
|
@@ -221,7 +202,6 @@ module ViewHelper
|
|
221
202
|
content_tag(:tr, content)
|
222
203
|
end
|
223
204
|
|
224
|
-
|
225
205
|
def table_td_block(options={}, &block)
|
226
206
|
content = capture(&block)
|
227
207
|
content_tag(:td, content, options)
|
@@ -231,7 +211,7 @@ module ViewHelper
|
|
231
211
|
content_tag(:td, value, options)
|
232
212
|
end
|
233
213
|
|
234
|
-
def
|
214
|
+
def lorem_ipsum
|
235
215
|
<<-eos
|
236
216
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris fermentum tempor arcu in mollis.
|
237
217
|
Aliquam erat volutpat. Sed malesuada lacinia nibh, eget posuere turpis accumsan vitae. Aliquam lacus massa, pellentesque auctor volutpat eu, luctus ac enim.
|
metadata
CHANGED
@@ -1,69 +1,107 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: tw_bootstrap_helper
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 23
|
5
5
|
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 0
|
10
|
+
version: 1.0.0
|
6
11
|
platform: ruby
|
7
|
-
authors:
|
12
|
+
authors:
|
8
13
|
- Agencia Orangeweb
|
9
14
|
- Luiz Eduardo de Oliveira Fonseca
|
10
15
|
autorequire:
|
11
16
|
bindir: bin
|
12
17
|
cert_chain: []
|
13
|
-
|
14
|
-
|
15
|
-
|
18
|
+
|
19
|
+
date: 2011-12-16 00:00:00 Z
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
16
22
|
name: shoulda
|
17
|
-
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
18
25
|
none: false
|
19
|
-
requirements:
|
20
|
-
- -
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 3
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
version: "0"
|
23
33
|
type: :development
|
24
|
-
|
25
|
-
|
26
|
-
- !ruby/object:Gem::Dependency
|
34
|
+
version_requirements: *id001
|
35
|
+
- !ruby/object:Gem::Dependency
|
27
36
|
name: bundler
|
28
|
-
|
37
|
+
prerelease: false
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
29
39
|
none: false
|
30
|
-
requirements:
|
40
|
+
requirements:
|
31
41
|
- - ~>
|
32
|
-
- !ruby/object:Gem::Version
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
hash: 23
|
44
|
+
segments:
|
45
|
+
- 1
|
46
|
+
- 0
|
47
|
+
- 0
|
33
48
|
version: 1.0.0
|
34
49
|
type: :development
|
35
|
-
|
36
|
-
|
37
|
-
- !ruby/object:Gem::Dependency
|
50
|
+
version_requirements: *id002
|
51
|
+
- !ruby/object:Gem::Dependency
|
38
52
|
name: jeweler
|
39
|
-
|
53
|
+
prerelease: false
|
54
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
40
55
|
none: false
|
41
|
-
requirements:
|
56
|
+
requirements:
|
42
57
|
- - ~>
|
43
|
-
- !ruby/object:Gem::Version
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
hash: 7
|
60
|
+
segments:
|
61
|
+
- 1
|
62
|
+
- 6
|
63
|
+
- 4
|
44
64
|
version: 1.6.4
|
45
65
|
type: :development
|
46
|
-
|
47
|
-
|
48
|
-
- !ruby/object:Gem::Dependency
|
66
|
+
version_requirements: *id003
|
67
|
+
- !ruby/object:Gem::Dependency
|
49
68
|
name: rcov
|
50
|
-
|
69
|
+
prerelease: false
|
70
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
51
71
|
none: false
|
52
|
-
requirements:
|
53
|
-
- -
|
54
|
-
- !ruby/object:Gem::Version
|
55
|
-
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
hash: 3
|
76
|
+
segments:
|
77
|
+
- 0
|
78
|
+
version: "0"
|
56
79
|
type: :development
|
57
|
-
|
58
|
-
|
59
|
-
description: Make easy use of Twitter Bootstrap on Rails App
|
80
|
+
version_requirements: *id004
|
81
|
+
description: Make easy use of Twitter Bootstrap with Ruby on Rails App
|
60
82
|
email: apps@orangeweb.com.br
|
61
83
|
executables: []
|
84
|
+
|
62
85
|
extensions: []
|
63
|
-
|
86
|
+
|
87
|
+
extra_rdoc_files:
|
64
88
|
- LICENSE.txt
|
65
89
|
- README.rdoc
|
66
|
-
files:
|
90
|
+
files:
|
91
|
+
- app/assets/javascripts/002-jquery-tablesorter.js
|
92
|
+
- app/assets/javascripts/003-bootstrap-alerts.js
|
93
|
+
- app/assets/javascripts/003-bootstrap-buttons.js
|
94
|
+
- app/assets/javascripts/003-bootstrap-dropdown.js
|
95
|
+
- app/assets/javascripts/003-bootstrap-modal.js
|
96
|
+
- app/assets/javascripts/003-bootstrap-popover.js
|
97
|
+
- app/assets/javascripts/003-bootstrap-scrollspy.js
|
98
|
+
- app/assets/javascripts/003-bootstrap-tabs.js
|
99
|
+
- app/assets/javascripts/003-bootstrap-twipsy.js
|
100
|
+
- app/assets/javascripts/999-bootstrap-default-behaviors.js
|
101
|
+
- app/assets/stylesheets/001-bootstrap.css
|
102
|
+
- app/assets/stylesheets/002-bootstrap-hacks-and-fixes.css
|
103
|
+
- app/assets/stylesheets/003-bootstrap-layout.css
|
104
|
+
- app/assets/stylesheets/004-bootstrap-overrides.css
|
67
105
|
- lib/generators/bootstrap/USAGE
|
68
106
|
- lib/generators/bootstrap/bootstrap_generator.rb
|
69
107
|
- lib/generators/bootstrap/templates/9990-bootstrap-alerts.js
|
@@ -76,6 +114,8 @@ files:
|
|
76
114
|
- lib/generators/bootstrap/templates/9990-bootstrap-twipsy.js
|
77
115
|
- lib/generators/bootstrap/templates/9990-bootstrap.css
|
78
116
|
- lib/generators/bootstrap/templates/9990-jquery-tablesorter.js
|
117
|
+
- lib/generators/bootstrap/templates/9991-bootstrap-hacks-and-fixes.css
|
118
|
+
- lib/generators/bootstrap/templates/9992-bootstrap-utils.css
|
79
119
|
- lib/generators/bootstrap/templates/9999-bootstrap-behaviors.js
|
80
120
|
- lib/tw_bootstrap_helper.rb
|
81
121
|
- lib/tw_bootstrap_helper/railtie.rb
|
@@ -83,31 +123,37 @@ files:
|
|
83
123
|
- LICENSE.txt
|
84
124
|
- README.rdoc
|
85
125
|
homepage: http://github.com/orangeweb/tw_bootstrap_helper
|
86
|
-
licenses:
|
126
|
+
licenses:
|
87
127
|
- MIT
|
88
128
|
post_install_message:
|
89
129
|
rdoc_options: []
|
90
|
-
|
130
|
+
|
131
|
+
require_paths:
|
91
132
|
- lib
|
92
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
133
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
93
134
|
none: false
|
94
|
-
requirements:
|
95
|
-
- -
|
96
|
-
- !ruby/object:Gem::Version
|
97
|
-
|
98
|
-
segments:
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
hash: 3
|
139
|
+
segments:
|
99
140
|
- 0
|
100
|
-
|
101
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
141
|
+
version: "0"
|
142
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
102
143
|
none: false
|
103
|
-
requirements:
|
104
|
-
- -
|
105
|
-
- !ruby/object:Gem::Version
|
106
|
-
|
144
|
+
requirements:
|
145
|
+
- - ">="
|
146
|
+
- !ruby/object:Gem::Version
|
147
|
+
hash: 3
|
148
|
+
segments:
|
149
|
+
- 0
|
150
|
+
version: "0"
|
107
151
|
requirements: []
|
152
|
+
|
108
153
|
rubyforge_project:
|
109
|
-
rubygems_version: 1.
|
154
|
+
rubygems_version: 1.8.12
|
110
155
|
signing_key:
|
111
156
|
specification_version: 3
|
112
157
|
summary: Make easy use of Twitter Bootstrap on Rails App
|
113
158
|
test_files: []
|
159
|
+
|