bootstrap_builder 0.0.0 → 0.1.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 +4 -5
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/bootstrap_builder.gemspec +2 -2
- metadata +3 -2
data/README.md
CHANGED
|
@@ -1,9 +1,4 @@
|
|
|
1
1
|
# Bootstrap Builder
|
|
2
|
-
Author: [The Working Group](http://www.theworkinggroup.ca)
|
|
3
|
-
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
## What is it?
|
|
7
2
|
|
|
8
3
|
A Rails form builder that generates [Twitter Bootstrap](http://twitter.github.com/bootstrap) markup and helps keep your code clean.
|
|
9
4
|
|
|
@@ -61,3 +56,7 @@ Useful for inline search forms.
|
|
|
61
56
|
|
|
62
57
|
*(Example using [MetaSearch](https://github.com/ernie/meta_search) helpers)*
|
|
63
58
|
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
Author: [The Working Group](http://www.theworkinggroup.ca)
|
|
62
|
+
|
data/Rakefile
CHANGED
|
@@ -6,7 +6,7 @@ Jeweler::Tasks.new do |gem|
|
|
|
6
6
|
gem.name = "bootstrap_builder"
|
|
7
7
|
gem.homepage = "http://github.com/twg/bootstrap_builder"
|
|
8
8
|
gem.license = "MIT"
|
|
9
|
-
gem.summary = "A Rails form builder that generates Twitter Bootstrap markup"
|
|
9
|
+
gem.summary = "A Rails form builder that generates Twitter Bootstrap markup and helps keep your code clean"
|
|
10
10
|
gem.description = ''
|
|
11
11
|
gem.email = "jack@twg.ca"
|
|
12
12
|
gem.authors = ["Jack Neto", 'The Working Group Inc.']
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.1.0
|
data/bootstrap_builder.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "bootstrap_builder"
|
|
8
|
-
s.version = "0.
|
|
8
|
+
s.version = "0.1.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."]
|
|
@@ -48,7 +48,7 @@ Gem::Specification.new do |s|
|
|
|
48
48
|
s.licenses = ["MIT"]
|
|
49
49
|
s.require_paths = ["lib"]
|
|
50
50
|
s.rubygems_version = "1.8.15"
|
|
51
|
-
s.summary = "A Rails form builder that generates Twitter Bootstrap markup"
|
|
51
|
+
s.summary = "A Rails form builder that generates Twitter Bootstrap markup and helps keep your code clean"
|
|
52
52
|
|
|
53
53
|
if s.respond_to? :specification_version then
|
|
54
54
|
s.specification_version = 3
|
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.
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -70,5 +70,6 @@ rubyforge_project:
|
|
|
70
70
|
rubygems_version: 1.8.15
|
|
71
71
|
signing_key:
|
|
72
72
|
specification_version: 3
|
|
73
|
-
summary: A Rails form builder that generates Twitter Bootstrap markup
|
|
73
|
+
summary: A Rails form builder that generates Twitter Bootstrap markup and helps keep
|
|
74
|
+
your code clean
|
|
74
75
|
test_files: []
|