twitter-bootswatch-rails 3.1.1.0 → 3.1.1.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3c7ad425462d5152cbe4f25cdb50e45d3de284fb
4
- data.tar.gz: dad01d6411b24750f88f7eaa53e98b20b6dec096
3
+ metadata.gz: d33742e0cc3aa623ba8b7c2befdcd0b8dd5bb458
4
+ data.tar.gz: 9984a1f4ca61a93e4f126453f3357e4e22f94c16
5
5
  SHA512:
6
- metadata.gz: b5a4ab0c9083918f4d7ce0088c8a8ae93718f7b505083359f26a9f26ccb9c24465c64eabb1e4267b17b3ee09f89082de0c63653ad5715f5afe7e3c0369543ab0
7
- data.tar.gz: 8533e84cae4df5dae294ba786da548fa0ef6f2413ccc91909e3af54d87ec0229076b8a741c411ca27187dde334a71bfd5088314928f6c2d6f1c91d7e497350de
6
+ metadata.gz: 3981051653022e1f598c8e08a0703427925a5653d5db24e1550eb5fe51b08d8b314a12edc5848a8a0e0d15e5da80905dc32b9831131db75adbada52c11fcaa4e
7
+ data.tar.gz: 4b59efc81fc99878090747cdf06efcde172f9bbee9e8bd081a20e9faddcb25b37723c8ed4910df57994aa6ceb2fda2ae0d4e0dc8aa2aa4600cd3876d05966dc3
@@ -1,10 +1,8 @@
1
1
  <%%= form_for @<%= resource_name %>, :html => { :class => 'form-horizontal' } do |f| %>
2
2
  <%- columns.each do |column| -%>
3
- <div class="control-group">
3
+ <div class="form-group">
4
4
  <%%= f.label :<%= column.name %>, :class => 'control-label' %>
5
- <div class="controls">
6
- <%%= f.<%= column.field_type %> :<%= column.name %>, :class => '<%= column.field_type %>' %>
7
- </div>
5
+ <%%= f.<%= column.field_type %> :<%= column.name %>, :class => 'form-control' %>
8
6
  </div>
9
7
  <%- end -%>
10
8
 
@@ -1,9 +1,8 @@
1
1
  = form_for @<%= resource_name %>, :html => { :class => 'form-horizontal' } do |f|
2
2
  <%- columns.each do |column| -%>
3
- .control-group
3
+ .form-group
4
4
  = f.label :<%= column.name %>, :class => 'control-label'
5
- .controls
6
- = f.<%= column.field_type %> :<%= column.name %>, :class => '<%= column.field_type %>'
5
+ = f.<%= column.field_type %> :<%= column.name %>, :class => 'form-control'
7
6
  <%- end -%>
8
7
  .form-actions
9
8
  = f.submit nil, :class => 'btn btn-primary'
@@ -1,9 +1,8 @@
1
1
  = form_for @<%= resource_name %>, :html => { :class => 'form-horizontal' } do |f|
2
2
  <%- columns.each do |column| -%>
3
- .control-group
3
+ .form-group
4
4
  = f.label :<%= column.name %>, :class => 'control-label'
5
- .controls
6
- = f.<%= column.field_type %> :<%= column.name %>, :class => '<%= column.field_type %>'
5
+ = f.<%= column.field_type %> :<%= column.name %>, :class => 'form-control'
7
6
  <%- end -%>
8
7
  .form-actions
9
8
  = f.submit nil, :class => 'btn btn-primary'
@@ -23,12 +23,12 @@
23
23
  <td><%%=l <%= resource_name %>.created_at %></td>
24
24
  <td>
25
25
  <%%= link_to t('.edit', :default => t("helpers.links.edit")),
26
- edit_<%= singular_controller_routing_path %>_path(<%= resource_name %>), :class => 'btn btn-mini' %>
26
+ edit_<%= singular_controller_routing_path %>_path(<%= resource_name %>), :class => 'btn btn-primary btn-xs' %>
27
27
  <%%= link_to t('.destroy', :default => t("helpers.links.destroy")),
28
28
  <%= singular_controller_routing_path %>_path(<%= resource_name %>),
29
29
  :method => :delete,
30
30
  :data => { :confirm => t('.confirm', :default => t("helpers.links.confirm", :default => 'Are you sure?')) },
31
- :class => 'btn btn-mini btn-danger' %>
31
+ :class => 'btn btn-danger btn-xs' %>
32
32
  </td>
33
33
  </tr>
34
34
  <%% end %>
@@ -19,7 +19,7 @@
19
19
  <%- end -%>
20
20
  %td=l <%= resource_name %>.created_at
21
21
  %td
22
- = link_to t('.edit', :default => t("helpers.links.edit")), edit_<%= singular_controller_routing_path %>_path(<%= resource_name %>), :class => 'btn btn-mini'
23
- = link_to t('.destroy', :default => t("helpers.links.destroy")), <%= singular_controller_routing_path %>_path(<%= resource_name %>), :method => :delete, :data => { :confirm => t('.confirm', :default => t("helpers.links.confirm", :default => 'Are you sure?')) }, :class => 'btn btn-mini btn-danger'
22
+ = link_to t('.edit', :default => t("helpers.links.edit")), edit_<%= singular_controller_routing_path %>_path(<%= resource_name %>), :class => 'btn btn-primary btn-xs'
23
+ = link_to t('.destroy', :default => t("helpers.links.destroy")), <%= singular_controller_routing_path %>_path(<%= resource_name %>), :method => :delete, :data => { :confirm => t('.confirm', :default => t("helpers.links.confirm", :default => 'Are you sure?')) }, :class => 'btn btn-danger btn-xs'
24
24
 
25
25
  = link_to t('.new', :default => t("helpers.links.new")), new_<%= singular_controller_routing_path %>_path, :class => 'btn btn-primary'
@@ -19,8 +19,8 @@ table.table.table-striped
19
19
  <%- end -%>
20
20
  td=l <%= resource_name %>.created_at
21
21
  td
22
- = link_to t('.edit', :default => t("helpers.links.edit")), edit_<%= singular_controller_routing_path %>_path(<%= resource_name %>), :class => 'btn btn-mini'
22
+ = link_to t('.edit', :default => t("helpers.links.edit")), edit_<%= singular_controller_routing_path %>_path(<%= resource_name %>), :class => 'btn btn-primary btn-xs'
23
23
  | &#xA0;
24
- = link_to t('.destroy', :default => t("helpers.links.destroy")), <%= singular_controller_routing_path %>_path(<%= resource_name %>), :method => :delete, :data => { :confirm => t('.confirm', :default => t("helpers.links.confirm", :default => 'Are you sure?')) }, :class => 'btn btn-mini btn-danger'
24
+ = link_to t('.destroy', :default => t("helpers.links.destroy")), <%= singular_controller_routing_path %>_path(<%= resource_name %>), :method => :delete, :data => { :confirm => t('.confirm', :default => t("helpers.links.confirm", :default => 'Are you sure?')) }, :class => 'btn btn-danger btn-xs'
25
25
 
26
26
  = link_to t('.new', :default => t("helpers.links.new")), new_<%= singular_controller_routing_path %>_path, :class => 'btn btn-primary'
@@ -14,7 +14,7 @@
14
14
  <%%= link_to t('.back', :default => t("helpers.links.back")),
15
15
  <%= controller_routing_path %>_path, :class => 'btn' %>
16
16
  <%%= link_to t('.edit', :default => t("helpers.links.edit")),
17
- edit_<%= singular_controller_routing_path %>_path(@<%= resource_name %>), :class => 'btn' %>
17
+ edit_<%= singular_controller_routing_path %>_path(@<%= resource_name %>), :class => 'btn btn-primary' %>
18
18
  <%%= link_to t('.destroy', :default => t("helpers.links.destroy")),
19
19
  <%= singular_controller_routing_path %>_path(@<%= resource_name %>),
20
20
  :method => 'delete',
@@ -11,5 +11,5 @@
11
11
 
12
12
  .form-actions
13
13
  = link_to t('.back', :default => t("helpers.links.back")), <%= controller_routing_path %>_path, :class => 'btn'
14
- = link_to t('.edit', :default => t("helpers.links.edit")), edit_<%= singular_controller_routing_path %>_path(@<%= resource_name %>), :class => 'btn'
14
+ = link_to t('.edit', :default => t("helpers.links.edit")), edit_<%= singular_controller_routing_path %>_path(@<%= resource_name %>), :class => 'btn btn-primary'
15
15
  = link_to t('.destroy', :default => t("helpers.links.destroy")), <%= singular_controller_routing_path %>_path(@<%= resource_name %>), :method => "delete", :data => { :confirm => t('.confirm', :default => t("helpers.links.confirm", :default => 'Are you sure?')) }, :class => 'btn btn-danger'
@@ -12,6 +12,6 @@ p
12
12
  .form-actions
13
13
  = link_to t('.back', :default => t("helpers.links.back")), <%= controller_routing_path %>_path, :class => 'btn'
14
14
  | &#xA0;
15
- = link_to t('.edit', :default => t("helpers.links.edit")), edit_<%= singular_controller_routing_path %>_path(@<%= resource_name %>), :class => 'btn'
15
+ = link_to t('.edit', :default => t("helpers.links.edit")), edit_<%= singular_controller_routing_path %>_path(@<%= resource_name %>), :class => 'btn btn-primary'
16
16
  | &#xA0;
17
17
  = link_to t('.destroy', :default => t("helpers.links.destroy")), <%= singular_controller_routing_path %>_path(@<%= resource_name %>), :method => "delete", :data => { :confirm => t('.confirm', :default => t("helpers.links.confirm", :default => 'Are you sure?')) }, :class => 'btn btn-danger'
@@ -1,7 +1,7 @@
1
1
  module Twitter
2
2
  module Bootswatch
3
3
  module Rails
4
- VERSION = '3.1.1.0'
4
+ VERSION = '3.1.1.1'
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twitter-bootswatch-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.1.0
4
+ version: 3.1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott V. Rosenthal
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-19 00:00:00.000000000 Z
11
+ date: 2014-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -206,7 +206,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
206
206
  version: 1.8.11
207
207
  requirements: []
208
208
  rubyforge_project:
209
- rubygems_version: 2.2.1
209
+ rubygems_version: 2.2.2
210
210
  signing_key:
211
211
  specification_version: 4
212
212
  summary: Bootstrap toolkit for Rails Asset Pipeline with less-rails