rails_layout 1.0.2 → 1.0.3

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: 2ec2fd9c8fca39ae938cc5fd6eb3914ef830fb55
4
- data.tar.gz: 13b14a8b96df4b0d2f0345544998035d8fe6461a
3
+ metadata.gz: 87993f895006e34a5a2bf38ae14e2f1dc4cd7a71
4
+ data.tar.gz: a643ec17d3863e5e31e6c745a00bbfcd3bf48693
5
5
  SHA512:
6
- metadata.gz: 4d3bac0eadadcb7ae241b09a7bf956bee0c62e5a842efa743421f20c6d1c5d71c6fe8b9ce0d877e4c48629b0e6d90f314d6c1d1531864517ecf57fb3def33f87
7
- data.tar.gz: d37900378436c04fafc4b55d22eef5e7e16db0a41d20e6b59ffcb42e83c3ed97b5e06742b894780bb52c6dc91b89f6c2ea1671cbe706c06862ef7ea8674d821a
6
+ metadata.gz: 8774ba64cb3ffd028f2d294a1df48d62723ca4e762173ccf50c91c7ffcf0989fac10a8cd8a9a54d300c531558ee16a7721d05fc5f65ccfe10e8a2fafbb84781d
7
+ data.tar.gz: e347ebf7dbf3905b17ac6a0d3a941c0722a8e0ab6179ad8cf794de042936336fd086e81288f498f69de2256712d1657f4a6f7526a9ef004da2eebfd887509f1b
data/CHANGELOG.textile CHANGED
@@ -1,5 +1,9 @@
1
1
  h1. CHANGELOG
2
2
 
3
+ h3. 1.0.3 January 11, 2014
4
+
5
+ * add missing 'autofocus' to Devise views
6
+
3
7
  h3. 1.0.2 January 11, 2014
4
8
 
5
9
  * don't include a custom 'name' field in the Devise views (fixes issue #12)
@@ -4,7 +4,7 @@
4
4
  <%= devise_error_messages! %>
5
5
  <div class="form-group">
6
6
  <%= f.label :email %>
7
- <%= f.email_field :email, class: 'form-control' %>
7
+ <%= f.email_field :email, :autofocus => true, class: 'form-control' %>
8
8
  <% if devise_mapping.confirmable? && resource.pending_reconfirmation? %>
9
9
  <div>Currently waiting confirmation for: <%= resource.unconfirmed_email %></div>
10
10
  <% end %>
@@ -4,7 +4,7 @@
4
4
  <%= devise_error_messages! %>
5
5
  <div class="form-group">
6
6
  <%= f.label :email %>
7
- <%= f.email_field :email, class: 'form-control' %>
7
+ <%= f.email_field :email, :autofocus => true, class: 'form-control' %>
8
8
  </div>
9
9
  <div class="form-group">
10
10
  <%= f.label :password %>
@@ -1,3 +1,3 @@
1
1
  module RailsLayout
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_layout
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Kehoe