bootstrap_builder 0.2.1 → 0.2.2
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/VERSION +1 -1
- data/bootstrap_builder.gemspec +3 -7
- data/lib/bootstrap_builder/builder.rb +1 -1
- metadata +2 -6
- data/.DS_Store +0 -0
- data/app/.DS_Store +0 -0
- data/lib/bootstrap_builder/.DS_Store +0 -0
- data/vendor/.DS_Store +0 -0
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.2
|
data/bootstrap_builder.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "bootstrap_builder"
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.2"
|
|
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 = "2012-02-
|
|
12
|
+
s.date = "2012-02-13"
|
|
13
13
|
s.description = ""
|
|
14
14
|
s.email = "jack@twg.ca"
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -17,12 +17,10 @@ Gem::Specification.new do |s|
|
|
|
17
17
|
"README.md"
|
|
18
18
|
]
|
|
19
19
|
s.files = [
|
|
20
|
-
".DS_Store",
|
|
21
20
|
"LICENSE.txt",
|
|
22
21
|
"README.md",
|
|
23
22
|
"Rakefile",
|
|
24
23
|
"VERSION",
|
|
25
|
-
"app/.DS_Store",
|
|
26
24
|
"app/assets/images/glyphicons-halflings-white.png",
|
|
27
25
|
"app/assets/images/glyphicons-halflings.png",
|
|
28
26
|
"app/assets/javascripts/bootstrap.js",
|
|
@@ -35,14 +33,12 @@ Gem::Specification.new do |s|
|
|
|
35
33
|
"app/views/bootstrap_builder/_submit.html.haml",
|
|
36
34
|
"bootstrap_builder.gemspec",
|
|
37
35
|
"lib/bootstrap_builder.rb",
|
|
38
|
-
"lib/bootstrap_builder/.DS_Store",
|
|
39
36
|
"lib/bootstrap_builder/builder.rb",
|
|
40
37
|
"lib/bootstrap_builder/configuration.rb",
|
|
41
38
|
"lib/bootstrap_builder/engine.rb",
|
|
42
39
|
"lib/bootstrap_builder/helper.rb",
|
|
43
40
|
"lib/bootstrap_builder/railtie.rb",
|
|
44
|
-
"rails-bootstrap-builder.gemspec"
|
|
45
|
-
"vendor/.DS_Store"
|
|
41
|
+
"rails-bootstrap-builder.gemspec"
|
|
46
42
|
]
|
|
47
43
|
s.homepage = "http://github.com/twg/bootstrap_builder"
|
|
48
44
|
s.licenses = ["MIT"]
|
|
@@ -148,7 +148,7 @@ module BootstrapBuilder
|
|
|
148
148
|
|
|
149
149
|
def fields_for(record_or_name_or_array, *args, &block)
|
|
150
150
|
options = args.extract_options!
|
|
151
|
-
options
|
|
151
|
+
options[:builder] ||= BootstrapBuilder::Builder
|
|
152
152
|
super(record_or_name_or_array, *(args << options), &block)
|
|
153
153
|
end
|
|
154
154
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bootstrap_builder
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2012-02-
|
|
13
|
+
date: 2012-02-13 00:00:00.000000000 Z
|
|
14
14
|
dependencies: []
|
|
15
15
|
description: ''
|
|
16
16
|
email: jack@twg.ca
|
|
@@ -20,12 +20,10 @@ extra_rdoc_files:
|
|
|
20
20
|
- LICENSE.txt
|
|
21
21
|
- README.md
|
|
22
22
|
files:
|
|
23
|
-
- .DS_Store
|
|
24
23
|
- LICENSE.txt
|
|
25
24
|
- README.md
|
|
26
25
|
- Rakefile
|
|
27
26
|
- VERSION
|
|
28
|
-
- app/.DS_Store
|
|
29
27
|
- app/assets/images/glyphicons-halflings-white.png
|
|
30
28
|
- app/assets/images/glyphicons-halflings.png
|
|
31
29
|
- app/assets/javascripts/bootstrap.js
|
|
@@ -38,14 +36,12 @@ files:
|
|
|
38
36
|
- app/views/bootstrap_builder/_submit.html.haml
|
|
39
37
|
- bootstrap_builder.gemspec
|
|
40
38
|
- lib/bootstrap_builder.rb
|
|
41
|
-
- lib/bootstrap_builder/.DS_Store
|
|
42
39
|
- lib/bootstrap_builder/builder.rb
|
|
43
40
|
- lib/bootstrap_builder/configuration.rb
|
|
44
41
|
- lib/bootstrap_builder/engine.rb
|
|
45
42
|
- lib/bootstrap_builder/helper.rb
|
|
46
43
|
- lib/bootstrap_builder/railtie.rb
|
|
47
44
|
- rails-bootstrap-builder.gemspec
|
|
48
|
-
- vendor/.DS_Store
|
|
49
45
|
homepage: http://github.com/twg/bootstrap_builder
|
|
50
46
|
licenses:
|
|
51
47
|
- MIT
|
data/.DS_Store
DELETED
|
Binary file
|
data/app/.DS_Store
DELETED
|
Binary file
|
|
Binary file
|
data/vendor/.DS_Store
DELETED
|
Binary file
|