bootswatch_rails 3.2.0.3 → 3.2.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9c53416b94639991b391d9fe00e53c01ca9f26c2
4
- data.tar.gz: bf40c9f4b1783b10722d2b70ef200fed005e6d17
3
+ metadata.gz: 08588d75ec9a1dc146cf7516888ad804d992c7ed
4
+ data.tar.gz: dc7d7d811e9eec910e1daca90a5ce7d5d394b48c
5
5
  SHA512:
6
- metadata.gz: 6e3c4bc7eab4531722a723651fd9f288ac5c5111a6268f05a8a77c1150b351003aba8fa552eeb43e904be0413d8204585cba103898200f8a74e4ac886ac99a1a
7
- data.tar.gz: e1ecbaaddd55f2bfb95ffad32e1f3704e2c5bc38f676fb722edef1a5cae19ff46c9eecf4d3889c888db160a81fbc3fbef84d6c488331f3d94fc7f0328ebe2e49
6
+ metadata.gz: b7caa7503f334bf50424d392e12d391714568588a32dd571f9b01f3c006f8181219a52a80463511f83c01d842f2559aa1233a58630afe6baf0cce451438dbbeb
7
+ data.tar.gz: e0413dd4d50bffcc6b601a939576223c7cadd2292a91123e3e6489989acc76f465646ad1f4ea72751e956fd85ac6d3bd351033be719fb7a85867ea0c2d8fa951
@@ -1,5 +1,5 @@
1
1
  module BootswatchRails
2
- VERSION = "3.2.0.3"
2
+ VERSION = "3.2.0.4"
3
3
  THEMES = [:amelia, :cerulean, :cosmo, :custom, :cyborg, :darkly, :flatly, :journal, :lumen, :paper, :readable, :sandstone, :simplex, :slate, :spacelab, :superhero, :united, :yeti]
4
4
  DEFAULT = 1
5
5
  end
@@ -13,7 +13,7 @@ module BootswatchRails
13
13
  file = "app/assets/javascripts/application.js"
14
14
  inject_into_file file, "\n//= require bootstrap", after: /require jquery_ujs$/
15
15
  unless options.turbolinks?
16
- gsub_file file, /^\/\/(= require turbolinks)/, "//---\\1"
16
+ gsub_file file, /^\/\/=( require turbolinks)/, "// \\1"
17
17
  comment_lines "Gemfile", /gem 'turbolinks/
18
18
  end
19
19
  end
@@ -1,7 +1,7 @@
1
1
  <%%= simple_form_for(@<%= name %>) do |f| %>
2
2
  <%%= f.error_notification %>
3
3
 
4
- <%%= f.input :email %>
4
+ <%%= f.input :email, autofocus: true %>
5
5
  <%%= f.input :name %>
6
6
  <%%= f.input :active %>
7
7
  <%%= f.input :password %>
@@ -5,7 +5,7 @@
5
5
 
6
6
  <%%= f.input :email, disabled: true, required: false %>
7
7
  <%%= f.input :reset_password_token, as: :hidden %>
8
- <%%= f.input :password, required: true %>
8
+ <%%= f.input :password, required: true, autofocus: true %>
9
9
  <%%= f.input :password_confirmation, required: true %>
10
10
 
11
11
  <%%= f.button :submit, t('sorcery.reset.change'), class: 'btn btn-primary' %>
@@ -3,7 +3,7 @@
3
3
  <%%= simple_form_for(@<%= name %>, url: {action: "access"}) do |f| %>
4
4
  <%%= f.error_notification %>
5
5
 
6
- <%%= f.input :email %>
6
+ <%%= f.input :email, autofocus: true %>
7
7
  <%%= f.input :password %>
8
8
  <%- if remember_me? -%>
9
9
  <%%= f.input :remember_me %>
@@ -3,7 +3,7 @@
3
3
  <%%= simple_form_for(@<%= name %>, url: {action: "reset"}) do |f| %>
4
4
  <%%= f.error_notification %>
5
5
 
6
- <%%= f.input :email %>
6
+ <%%= f.input :email, autofocus: true %>
7
7
 
8
8
  <%%= f.button :submit, t('sorcery.reset.send'), class: 'btn btn-primary' %>
9
9
  <%%= link_to t('sorcery.reset.back'), log_in_<%= table_name %>_path, class: 'btn btn-default' %>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootswatch_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0.3
4
+ version: 3.2.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Volker Wiegand