bootstrap_builder 0.3.3 → 0.4.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/README.md +3 -3
- data/VERSION +1 -1
- data/app/assets/javascripts/{bootstrap.js → bootstrap_builder/bootstrap.js} +0 -0
- data/app/assets/javascripts/{bootstrap_builder.js → bootstrap_builder/bootstrap_builder.js} +0 -0
- data/app/assets/stylesheets/{bootstrap-responsive.css → bootstrap_builder/bootstrap-responsive.css} +0 -0
- data/app/assets/stylesheets/{bootstrap.css → bootstrap_builder/bootstrap.css} +0 -0
- data/bootstrap_builder.gemspec +8 -9
- metadata +30 -42
data/README.md
CHANGED
|
@@ -25,14 +25,14 @@ Bundle it:
|
|
|
25
25
|
Require it in your CSS manifest file: ('bootstrap-responsive' is optional)
|
|
26
26
|
|
|
27
27
|
``` css
|
|
28
|
-
//= require bootstrap
|
|
29
|
-
//= require bootstrap-responsive
|
|
28
|
+
//= require bootstrap_builder/bootstrap
|
|
29
|
+
//= require bootstrap_builder/bootstrap-responsive
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
Require it in your Javascript manifest file if you want to use Bootstrap's jQuery plugins:
|
|
33
33
|
|
|
34
34
|
``` css
|
|
35
|
-
//= require bootstrap
|
|
35
|
+
//= require bootstrap_builder/bootstrap
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
## Configuration
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.4.0
|
|
File without changes
|
|
File without changes
|
data/app/assets/stylesheets/{bootstrap-responsive.css → bootstrap_builder/bootstrap-responsive.css}
RENAMED
|
File without changes
|
|
File without changes
|
data/bootstrap_builder.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{bootstrap_builder}
|
|
8
|
-
s.version = "0.
|
|
8
|
+
s.version = "0.4.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Jack Neto", "The Working Group Inc."]
|
|
12
|
-
s.date = %q{2012-07-
|
|
12
|
+
s.date = %q{2012-07-15}
|
|
13
13
|
s.description = %q{}
|
|
14
14
|
s.email = %q{jack@twg.ca}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -23,10 +23,10 @@ Gem::Specification.new do |s|
|
|
|
23
23
|
"VERSION",
|
|
24
24
|
"app/assets/images/glyphicons-halflings-white.png",
|
|
25
25
|
"app/assets/images/glyphicons-halflings.png",
|
|
26
|
-
"app/assets/javascripts/bootstrap.js",
|
|
27
|
-
"app/assets/javascripts/bootstrap_builder.js",
|
|
28
|
-
"app/assets/stylesheets/bootstrap-responsive.css",
|
|
29
|
-
"app/assets/stylesheets/bootstrap.css",
|
|
26
|
+
"app/assets/javascripts/bootstrap_builder/bootstrap.js",
|
|
27
|
+
"app/assets/javascripts/bootstrap_builder/bootstrap_builder.js",
|
|
28
|
+
"app/assets/stylesheets/bootstrap_builder/bootstrap-responsive.css",
|
|
29
|
+
"app/assets/stylesheets/bootstrap_builder/bootstrap.css",
|
|
30
30
|
"app/views/bootstrap_builder/_check_box.html.haml",
|
|
31
31
|
"app/views/bootstrap_builder/_default_field.html.haml",
|
|
32
32
|
"app/views/bootstrap_builder/_radio_button.html.haml",
|
|
@@ -42,14 +42,13 @@ Gem::Specification.new do |s|
|
|
|
42
42
|
s.homepage = %q{http://github.com/twg/bootstrap_builder}
|
|
43
43
|
s.licenses = ["MIT"]
|
|
44
44
|
s.require_paths = ["lib"]
|
|
45
|
-
s.rubygems_version = %q{1.
|
|
45
|
+
s.rubygems_version = %q{1.6.2}
|
|
46
46
|
s.summary = %q{A Rails form builder that generates Twitter Bootstrap markup and helps keep your code clean}
|
|
47
47
|
|
|
48
48
|
if s.respond_to? :specification_version then
|
|
49
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
50
49
|
s.specification_version = 3
|
|
51
50
|
|
|
52
|
-
if Gem::Version.new(Gem::
|
|
51
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
53
52
|
else
|
|
54
53
|
end
|
|
55
54
|
else
|
metadata
CHANGED
|
@@ -1,44 +1,36 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bootstrap_builder
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
- 0
|
|
7
|
-
- 3
|
|
8
|
-
- 3
|
|
9
|
-
version: 0.3.3
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.4.0
|
|
5
|
+
prerelease:
|
|
10
6
|
platform: ruby
|
|
11
|
-
authors:
|
|
7
|
+
authors:
|
|
12
8
|
- Jack Neto
|
|
13
9
|
- The Working Group Inc.
|
|
14
10
|
autorequire:
|
|
15
11
|
bindir: bin
|
|
16
12
|
cert_chain: []
|
|
17
|
-
|
|
18
|
-
date: 2012-07-11 00:00:00 -04:00
|
|
13
|
+
date: 2012-07-15 00:00:00.000000000 -04:00
|
|
19
14
|
default_executable:
|
|
20
15
|
dependencies: []
|
|
21
|
-
|
|
22
|
-
description: ""
|
|
16
|
+
description: ''
|
|
23
17
|
email: jack@twg.ca
|
|
24
18
|
executables: []
|
|
25
|
-
|
|
26
19
|
extensions: []
|
|
27
|
-
|
|
28
|
-
extra_rdoc_files:
|
|
20
|
+
extra_rdoc_files:
|
|
29
21
|
- LICENSE.txt
|
|
30
22
|
- README.md
|
|
31
|
-
files:
|
|
23
|
+
files:
|
|
32
24
|
- LICENSE.txt
|
|
33
25
|
- README.md
|
|
34
26
|
- Rakefile
|
|
35
27
|
- VERSION
|
|
36
28
|
- app/assets/images/glyphicons-halflings-white.png
|
|
37
29
|
- app/assets/images/glyphicons-halflings.png
|
|
38
|
-
- app/assets/javascripts/bootstrap.js
|
|
39
|
-
- app/assets/javascripts/bootstrap_builder.js
|
|
40
|
-
- app/assets/stylesheets/bootstrap-responsive.css
|
|
41
|
-
- app/assets/stylesheets/bootstrap.css
|
|
30
|
+
- app/assets/javascripts/bootstrap_builder/bootstrap.js
|
|
31
|
+
- app/assets/javascripts/bootstrap_builder/bootstrap_builder.js
|
|
32
|
+
- app/assets/stylesheets/bootstrap_builder/bootstrap-responsive.css
|
|
33
|
+
- app/assets/stylesheets/bootstrap_builder/bootstrap.css
|
|
42
34
|
- app/views/bootstrap_builder/_check_box.html.haml
|
|
43
35
|
- app/views/bootstrap_builder/_default_field.html.haml
|
|
44
36
|
- app/views/bootstrap_builder/_radio_button.html.haml
|
|
@@ -52,33 +44,29 @@ files:
|
|
|
52
44
|
- lib/bootstrap_builder/railtie.rb
|
|
53
45
|
has_rdoc: true
|
|
54
46
|
homepage: http://github.com/twg/bootstrap_builder
|
|
55
|
-
licenses:
|
|
47
|
+
licenses:
|
|
56
48
|
- MIT
|
|
57
49
|
post_install_message:
|
|
58
50
|
rdoc_options: []
|
|
59
|
-
|
|
60
|
-
require_paths:
|
|
51
|
+
require_paths:
|
|
61
52
|
- lib
|
|
62
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
requirements:
|
|
71
|
-
- -
|
|
72
|
-
- !ruby/object:Gem::Version
|
|
73
|
-
|
|
74
|
-
- 0
|
|
75
|
-
version: "0"
|
|
53
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
54
|
+
none: false
|
|
55
|
+
requirements:
|
|
56
|
+
- - ! '>='
|
|
57
|
+
- !ruby/object:Gem::Version
|
|
58
|
+
version: '0'
|
|
59
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
60
|
+
none: false
|
|
61
|
+
requirements:
|
|
62
|
+
- - ! '>='
|
|
63
|
+
- !ruby/object:Gem::Version
|
|
64
|
+
version: '0'
|
|
76
65
|
requirements: []
|
|
77
|
-
|
|
78
66
|
rubyforge_project:
|
|
79
|
-
rubygems_version: 1.
|
|
67
|
+
rubygems_version: 1.6.2
|
|
80
68
|
signing_key:
|
|
81
69
|
specification_version: 3
|
|
82
|
-
summary: A Rails form builder that generates Twitter Bootstrap markup and helps keep
|
|
70
|
+
summary: A Rails form builder that generates Twitter Bootstrap markup and helps keep
|
|
71
|
+
your code clean
|
|
83
72
|
test_files: []
|
|
84
|
-
|