daisy_devise 0.0.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 +7 -0
- data/lib/generators/daisy_devise/templates/devise/confirmations/new.html.erb +16 -0
- data/lib/generators/daisy_devise/templates/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/lib/generators/daisy_devise/templates/devise/mailer/email_changed.html.erb +7 -0
- data/lib/generators/daisy_devise/templates/devise/mailer/password_change.html.erb +3 -0
- data/lib/generators/daisy_devise/templates/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/lib/generators/daisy_devise/templates/devise/mailer/unlock_instructions.html.erb +7 -0
- data/lib/generators/daisy_devise/templates/devise/passwords/edit.html.erb +25 -0
- data/lib/generators/daisy_devise/templates/devise/passwords/new.html.erb +24 -0
- data/lib/generators/daisy_devise/templates/devise/registrations/edit.html.erb +48 -0
- data/lib/generators/daisy_devise/templates/devise/registrations/new.html.erb +37 -0
- data/lib/generators/daisy_devise/templates/devise/sessions/new.html.erb +33 -0
- data/lib/generators/daisy_devise/templates/devise/shared/_error_messages.html.erb +15 -0
- data/lib/generators/daisy_devise/templates/devise/shared/_links.html.erb +25 -0
- data/lib/generators/daisy_devise/templates/devise/unlocks/new.html.erb +16 -0
- data/lib/generators/daisy_devise/views_generator.rb +15 -0
- metadata +97 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 12f639e41cb29ca020b280c2d367acbeb6cd738432147485fe7a96a14d6eab29
|
|
4
|
+
data.tar.gz: 4c9c6dcffb3168a09f862bf73ea8d9022b5a9291bd16cb9609a72785e57fe122
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 21fbd44b8aea5e92964866ea97ee5de33d9f1c99ae25e6e165f4f1e26a0daa593ade60bb65a2e79b7307fd68647c2dd2e39d231f764d902006ab969243181687
|
|
7
|
+
data.tar.gz: 4bd9f0dbe92fef939da66676f455f02f4922e2405789c4e2ff3aa19f833884e1c337bb28625fee260a2a171af1fbc2d3d9458cb9e9db463f2c56af06ec5f5328
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<h2>Resend confirmation instructions</h2>
|
|
2
|
+
|
|
3
|
+
<%= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f| %>
|
|
4
|
+
<%= render "devise/shared/error_messages", resource: resource %>
|
|
5
|
+
|
|
6
|
+
<div class="field">
|
|
7
|
+
<%= f.label :email %><br />
|
|
8
|
+
<%= f.email_field :email, autofocus: true, autocomplete: "email", value: (resource.pending_reconfirmation? ? resource.unconfirmed_email : resource.email) %>
|
|
9
|
+
</div>
|
|
10
|
+
|
|
11
|
+
<div class="actions">
|
|
12
|
+
<%= f.submit "Resend confirmation instructions" %>
|
|
13
|
+
</div>
|
|
14
|
+
<% end %>
|
|
15
|
+
|
|
16
|
+
<%= render "devise/shared/links" %>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<p>Hello <%= @email %>!</p>
|
|
2
|
+
|
|
3
|
+
<% if @resource.try(:unconfirmed_email?) %>
|
|
4
|
+
<p>We're contacting you to notify you that your email is being changed to <%= @resource.unconfirmed_email %>.</p>
|
|
5
|
+
<% else %>
|
|
6
|
+
<p>We're contacting you to notify you that your email has been changed to <%= @resource.email %>.</p>
|
|
7
|
+
<% end %>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<p>Hello <%= @resource.email %>!</p>
|
|
2
|
+
|
|
3
|
+
<p>Someone has requested a link to change your password. You can do this through the link below.</p>
|
|
4
|
+
|
|
5
|
+
<p><%= link_to 'Change my password', edit_password_url(@resource, reset_password_token: @token) %></p>
|
|
6
|
+
|
|
7
|
+
<p>If you didn't request this, please ignore this email.</p>
|
|
8
|
+
<p>Your password won't change until you access the link above and create a new one.</p>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<p>Hello <%= @resource.email %>!</p>
|
|
2
|
+
|
|
3
|
+
<p>Your account has been locked due to an excessive number of unsuccessful sign in attempts.</p>
|
|
4
|
+
|
|
5
|
+
<p>Click the link below to unlock your account:</p>
|
|
6
|
+
|
|
7
|
+
<p><%= link_to 'Unlock my account', unlock_url(@resource, unlock_token: @token) %></p>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<h2>Change your password</h2>
|
|
2
|
+
|
|
3
|
+
<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f| %>
|
|
4
|
+
<%= render "devise/shared/error_messages", resource: resource %>
|
|
5
|
+
<%= f.hidden_field :reset_password_token %>
|
|
6
|
+
|
|
7
|
+
<div class="field">
|
|
8
|
+
<%= f.label :password, "New password", class: "label" %><br />
|
|
9
|
+
<% if @minimum_password_length %>
|
|
10
|
+
<em>(<%= @minimum_password_length %> characters minimum)</em><br />
|
|
11
|
+
<% end %>
|
|
12
|
+
<%= f.password_field :password, autofocus: true, autocomplete: "new-password", class: "input" %>
|
|
13
|
+
</div>
|
|
14
|
+
|
|
15
|
+
<div class="field">
|
|
16
|
+
<%= f.label :password_confirmation, "Confirm new password", class: "label" %><br />
|
|
17
|
+
<%= f.password_field :password_confirmation, autocomplete: "new-password", class: "input" %>
|
|
18
|
+
</div>
|
|
19
|
+
|
|
20
|
+
<div class="actions">
|
|
21
|
+
<%= f.submit "Change my password", class: "btn btn-primary" %>
|
|
22
|
+
</div>
|
|
23
|
+
<% end %>
|
|
24
|
+
|
|
25
|
+
<%= render "devise/shared/links" %>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<div class="w-full min-h-[100vh] pt-24">
|
|
2
|
+
<div class="max-w-xl w-full mx-auto shadow-lg bg-gray-200 rounded-lg py-8">
|
|
3
|
+
<h2 class="text-xl mb-4 text-center">Forgot your password?</h2>
|
|
4
|
+
|
|
5
|
+
<div class="w-3/4 mx-auto">
|
|
6
|
+
<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f| %>
|
|
7
|
+
<%= render "devise/shared/error_messages", resource: resource %>
|
|
8
|
+
|
|
9
|
+
<div class="field mb-4">
|
|
10
|
+
<%= f.label :email, class: "label" %><br />
|
|
11
|
+
<%= f.email_field :email, autofocus: true, autocomplete: "email", class: "input" %>
|
|
12
|
+
</div>
|
|
13
|
+
|
|
14
|
+
<div class="actions w-full">
|
|
15
|
+
<%= f.submit "Send me reset password instructions", class: "btn btn-primary" %>
|
|
16
|
+
</div>
|
|
17
|
+
<% end %>
|
|
18
|
+
|
|
19
|
+
<div class="flex flex-col items-center mt-4 gap-4">
|
|
20
|
+
<%= render "devise/shared/links" %>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<div class="w-full min-h-[100vh] pt-24">
|
|
2
|
+
<div class="max-w-xl w-full mx-auto shadow-lg bg-gray-200 rounded-lg py-8">
|
|
3
|
+
<h2 class="text-xl mb-4 text-center">Edit <%= resource_name.to_s.humanize %></h2>
|
|
4
|
+
|
|
5
|
+
<div class="w-3/4 mx-auto">
|
|
6
|
+
<%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| %>
|
|
7
|
+
<%= render "devise/shared/error_messages", resource: resource %>
|
|
8
|
+
|
|
9
|
+
<div class="field mb-4">
|
|
10
|
+
<%= f.label :email, class: "label" %><br />
|
|
11
|
+
<%= f.email_field :email, autofocus: true, autocomplete: "email", class: "input" %>
|
|
12
|
+
</div>
|
|
13
|
+
|
|
14
|
+
<% if devise_mapping.confirmable? && resource.pending_reconfirmation? %>
|
|
15
|
+
<div>Currently waiting confirmation for: <%= resource.unconfirmed_email %></div>
|
|
16
|
+
<% end %>
|
|
17
|
+
|
|
18
|
+
<div class="field mb-4">
|
|
19
|
+
<%= f.label :password, class: "label" %> <i>(leave blank if you don't want to change it)</i><br />
|
|
20
|
+
<%= f.password_field :password, autocomplete: "new-password", class: "input" %>
|
|
21
|
+
<% if @minimum_password_length %>
|
|
22
|
+
<br />
|
|
23
|
+
<em><%= @minimum_password_length %> characters minimum</em>
|
|
24
|
+
<% end %>
|
|
25
|
+
</div>
|
|
26
|
+
|
|
27
|
+
<div class="field mb-4">
|
|
28
|
+
<%= f.label :password_confirmation, class: "label" %><br />
|
|
29
|
+
<%= f.password_field :password_confirmation, autocomplete: "new-password", class: "input" %>
|
|
30
|
+
</div>
|
|
31
|
+
|
|
32
|
+
<div class="field mb-4">
|
|
33
|
+
<%= f.label :current_password, class: "label" %> <i>(we need your current password to confirm your changes)</i><br />
|
|
34
|
+
<%= f.password_field :current_password, autocomplete: "current-password", class: "input" %>
|
|
35
|
+
</div>
|
|
36
|
+
|
|
37
|
+
<div class="actions">
|
|
38
|
+
<%= f.submit "Update", class: "btn btn-primary" %>
|
|
39
|
+
</div>
|
|
40
|
+
<% end %>
|
|
41
|
+
<br/>
|
|
42
|
+
|
|
43
|
+
<%= link_to "Back", :back, class: "text-lg" %>
|
|
44
|
+
|
|
45
|
+
<div class="flex gap-2 items-center mt-8 mx-auto">Unhappy? <%= button_to "Cancel my account", registration_path(resource_name), data: { confirm: "Are you sure?", turbo_confirm: "Are you sure?" }, method: :delete, class: "bg-red-500 p-2 rounded-lg text-red-100" %></div>
|
|
46
|
+
</div>
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<div class="w-full min-h-[100vh] pt-24">
|
|
2
|
+
<div class="max-w-xl w-full mx-auto shadow-lg bg-gray-200 rounded-lg py-8">
|
|
3
|
+
<h2 class="text-xl mb-4 text-center">Sign up</h2>
|
|
4
|
+
|
|
5
|
+
<div class="w-3/4 mx-auto">
|
|
6
|
+
<%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %>
|
|
7
|
+
<%= render "devise/shared/error_messages", resource: resource %>
|
|
8
|
+
|
|
9
|
+
<div class="field mb-4">
|
|
10
|
+
<%= f.label :email, class: "label" %><br />
|
|
11
|
+
<%= f.email_field :email, autofocus: true, autocomplete: "email", class: "input" %>
|
|
12
|
+
</div>
|
|
13
|
+
|
|
14
|
+
<div class="field mb-4">
|
|
15
|
+
<%= f.label :password, class: "label" %>
|
|
16
|
+
<% if @minimum_password_length %>
|
|
17
|
+
<em>(<%= @minimum_password_length %> characters minimum)</em>
|
|
18
|
+
<% end %><br />
|
|
19
|
+
<%= f.password_field :password, autocomplete: "new-password", class: "input" %>
|
|
20
|
+
</div>
|
|
21
|
+
|
|
22
|
+
<div class="field mb-4">
|
|
23
|
+
<%= f.label :password_confirmation, class: "label" %><br />
|
|
24
|
+
<%= f.password_field :password_confirmation, autocomplete: "new-password", class: "input" %>
|
|
25
|
+
</div>
|
|
26
|
+
|
|
27
|
+
<div class="actions">
|
|
28
|
+
<%= f.submit "Sign up", class: "btn btn-primary" %>
|
|
29
|
+
</div>
|
|
30
|
+
<% end %>
|
|
31
|
+
|
|
32
|
+
<div class="flex flex-col items-center mt-4 gap-4">
|
|
33
|
+
<%= render "devise/shared/links" %>
|
|
34
|
+
</div>
|
|
35
|
+
</div>
|
|
36
|
+
</div>
|
|
37
|
+
</div>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<div class="w-full min-h-[100vh] pt-24">
|
|
2
|
+
<div class="max-w-xl w-full mx-auto shadow-lg bg-gray-200 rounded-lg py-8">
|
|
3
|
+
<h2 class="text-xl mb-4 text-center">Log in</h2>
|
|
4
|
+
|
|
5
|
+
<div class="w-3/4 mx-auto">
|
|
6
|
+
<%= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| %>
|
|
7
|
+
<div class="field mb-4">
|
|
8
|
+
<%= f.label :email, class: "label" %><br />
|
|
9
|
+
<%= f.email_field :email, autofocus: true, autocomplete: "email", class: "input" %>
|
|
10
|
+
</div>
|
|
11
|
+
|
|
12
|
+
<div class="field mb-4">
|
|
13
|
+
<%= f.label :password, class: "label" %><br />
|
|
14
|
+
<%= f.password_field :password, autocomplete: "current-password", class: "input" %>
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
<% if devise_mapping.rememberable? %>
|
|
18
|
+
<div class="field mb-4">
|
|
19
|
+
<%= f.check_box :remember_me, class: "checkbox" %>
|
|
20
|
+
<%= f.label :remember_me, class: "label" %>
|
|
21
|
+
</div>
|
|
22
|
+
<% end %>
|
|
23
|
+
|
|
24
|
+
<div class="actions w-full">
|
|
25
|
+
<%= f.submit "Log in", class: "btn btn-primary" %>
|
|
26
|
+
</div>
|
|
27
|
+
<% end %>
|
|
28
|
+
<div class="flex flex-col items-center mt-4 gap-4">
|
|
29
|
+
<%= render "devise/shared/links" %>
|
|
30
|
+
</div>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<% if resource.errors.any? %>
|
|
2
|
+
<div id="error_explanation" data-turbo-cache="false">
|
|
3
|
+
<h2>
|
|
4
|
+
<%= I18n.t("errors.messages.not_saved",
|
|
5
|
+
count: resource.errors.count,
|
|
6
|
+
resource: resource.class.model_name.human.downcase)
|
|
7
|
+
%>
|
|
8
|
+
</h2>
|
|
9
|
+
<ul>
|
|
10
|
+
<% resource.errors.full_messages.each do |message| %>
|
|
11
|
+
<li><%= message %></li>
|
|
12
|
+
<% end %>
|
|
13
|
+
</ul>
|
|
14
|
+
</div>
|
|
15
|
+
<% end %>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<%- if controller_name != 'sessions' %>
|
|
2
|
+
<%= link_to "Log in", new_session_path(resource_name) %>
|
|
3
|
+
<% end %>
|
|
4
|
+
|
|
5
|
+
<%- if devise_mapping.registerable? && controller_name != 'registrations' %>
|
|
6
|
+
<%= link_to "New here? Create an account now", new_registration_path(resource_name) %>
|
|
7
|
+
<% end %>
|
|
8
|
+
|
|
9
|
+
<%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %>
|
|
10
|
+
<%= link_to "Forgot your password?", new_password_path(resource_name) %>
|
|
11
|
+
<% end %>
|
|
12
|
+
|
|
13
|
+
<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %>
|
|
14
|
+
<%= link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name) %>
|
|
15
|
+
<% end %>
|
|
16
|
+
|
|
17
|
+
<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %>
|
|
18
|
+
<%= link_to "Didn't receive unlock instructions?", new_unlock_path(resource_name) %>
|
|
19
|
+
<% end %>
|
|
20
|
+
|
|
21
|
+
<%- if devise_mapping.omniauthable? %>
|
|
22
|
+
<%- resource_class.omniauth_providers.each do |provider| %>
|
|
23
|
+
<%= button_to "Sign in with #{OmniAuth::Utils.camelize(provider)}", omniauth_authorize_path(resource_name, provider), data: { turbo: false } %><br />
|
|
24
|
+
<% end %>
|
|
25
|
+
<% end %>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<h2>Resend unlock instructions</h2>
|
|
2
|
+
|
|
3
|
+
<%= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f| %>
|
|
4
|
+
<%= render "devise/shared/error_messages", resource: resource %>
|
|
5
|
+
|
|
6
|
+
<div class="field">
|
|
7
|
+
<%= f.label :email %><br />
|
|
8
|
+
<%= f.email_field :email, autofocus: true, autocomplete: "email" %>
|
|
9
|
+
</div>
|
|
10
|
+
|
|
11
|
+
<div class="actions">
|
|
12
|
+
<%= f.submit "Resend unlock instructions" %>
|
|
13
|
+
</div>
|
|
14
|
+
<% end %>
|
|
15
|
+
|
|
16
|
+
<%= render "devise/shared/links" %>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
require 'rails/generators/base'
|
|
2
|
+
|
|
3
|
+
module DaisyDevise
|
|
4
|
+
class ViewsGenerator < Rails::Generators::Base
|
|
5
|
+
source_root File.expand_path('templates', __dir__)
|
|
6
|
+
desc "This generator adds the devise views styled with DaisyUI"
|
|
7
|
+
|
|
8
|
+
def copy_devise_daisy_files_to_app
|
|
9
|
+
devise_folder_path = "#{Rails.root}/app/views/devise"
|
|
10
|
+
FileUtils.rm_rf(devise_folder_path)
|
|
11
|
+
FileUtils.mkdir_p(devise_folder_path)
|
|
12
|
+
directory 'devise', devise_folder_path
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: daisy_devise
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Indigo
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: railties
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '6.0'
|
|
19
|
+
type: :development
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - ">="
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '6.0'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: thor
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 0.20.0
|
|
33
|
+
type: :development
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: 0.20.0
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: rails
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - ">="
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '6.0'
|
|
47
|
+
type: :runtime
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - ">="
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '6.0'
|
|
54
|
+
description: Pretty sign in & sign up pages with DaisyUI
|
|
55
|
+
email: indigo@techtutorials.com
|
|
56
|
+
executables: []
|
|
57
|
+
extensions: []
|
|
58
|
+
extra_rdoc_files: []
|
|
59
|
+
files:
|
|
60
|
+
- lib/generators/daisy_devise/templates/devise/confirmations/new.html.erb
|
|
61
|
+
- lib/generators/daisy_devise/templates/devise/mailer/confirmation_instructions.html.erb
|
|
62
|
+
- lib/generators/daisy_devise/templates/devise/mailer/email_changed.html.erb
|
|
63
|
+
- lib/generators/daisy_devise/templates/devise/mailer/password_change.html.erb
|
|
64
|
+
- lib/generators/daisy_devise/templates/devise/mailer/reset_password_instructions.html.erb
|
|
65
|
+
- lib/generators/daisy_devise/templates/devise/mailer/unlock_instructions.html.erb
|
|
66
|
+
- lib/generators/daisy_devise/templates/devise/passwords/edit.html.erb
|
|
67
|
+
- lib/generators/daisy_devise/templates/devise/passwords/new.html.erb
|
|
68
|
+
- lib/generators/daisy_devise/templates/devise/registrations/edit.html.erb
|
|
69
|
+
- lib/generators/daisy_devise/templates/devise/registrations/new.html.erb
|
|
70
|
+
- lib/generators/daisy_devise/templates/devise/sessions/new.html.erb
|
|
71
|
+
- lib/generators/daisy_devise/templates/devise/shared/_error_messages.html.erb
|
|
72
|
+
- lib/generators/daisy_devise/templates/devise/shared/_links.html.erb
|
|
73
|
+
- lib/generators/daisy_devise/templates/devise/unlocks/new.html.erb
|
|
74
|
+
- lib/generators/daisy_devise/views_generator.rb
|
|
75
|
+
homepage: https://rubygems.org/gems/daisy_devise
|
|
76
|
+
licenses:
|
|
77
|
+
- MIT
|
|
78
|
+
metadata:
|
|
79
|
+
source_code_uri: https://github.com/enochtamulonis/daisy-devise-gem
|
|
80
|
+
rdoc_options: []
|
|
81
|
+
require_paths:
|
|
82
|
+
- lib
|
|
83
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
84
|
+
requirements:
|
|
85
|
+
- - ">="
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
87
|
+
version: '0'
|
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
89
|
+
requirements:
|
|
90
|
+
- - ">="
|
|
91
|
+
- !ruby/object:Gem::Version
|
|
92
|
+
version: '0'
|
|
93
|
+
requirements: []
|
|
94
|
+
rubygems_version: 3.6.9
|
|
95
|
+
specification_version: 4
|
|
96
|
+
summary: Creates pretty sign in/signup views for devise
|
|
97
|
+
test_files: []
|