bootstrap_builder 0.3.3 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
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.3.3
1
+ 0.4.0
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{bootstrap_builder}
8
- s.version = "0.3.3"
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-11}
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.3.6}
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::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
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
- prerelease: false
5
- segments:
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
- requirements:
64
- - - ">="
65
- - !ruby/object:Gem::Version
66
- segments:
67
- - 0
68
- version: "0"
69
- required_rubygems_version: !ruby/object:Gem::Requirement
70
- requirements:
71
- - - ">="
72
- - !ruby/object:Gem::Version
73
- segments:
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.3.6
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 your code clean
70
+ summary: A Rails form builder that generates Twitter Bootstrap markup and helps keep
71
+ your code clean
83
72
  test_files: []
84
-