gennaro 0.3 → 0.3.1

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: 80405acaeb5e87ed31dc20a59b3cb045fb0b0636
4
- data.tar.gz: b0354be72a53234219c5e458982514ea2b9d1549
3
+ metadata.gz: 242e1e43fb65b62caf646376ce9a366470400ce8
4
+ data.tar.gz: 726d907be80e0ffbeb1d3d0bcb67d7f18131a35a
5
5
  SHA512:
6
- metadata.gz: d00251c816c985f2da759a2663ce5ce296c086c153e9975707333670e06f61e0ccc5021b68efeb11e63ec50e6388523dfd04c085180bcd238f7dd976cc8e5a2b
7
- data.tar.gz: 78f08cfa769fece813ea53603a2353d2ee27b823a01c77a141e49f035aa115a36d203c9e83e4ad2e56b9ae58645e19121c59e4b66d254884bcc39911e6d596c6
6
+ metadata.gz: b45a8c697352cf62b0ee9cbbe07b64a2ac4c909cf7459e44dee67c44122d9089234dd8b01a5fbb626b8396fcb825ac08c133afbefa1b68c190835a81b4b365a0
7
+ data.tar.gz: a405c59ec70bf7988c2c37263e693b5f638a67a2f12219306eefb2ad82326d44e5739921bd4a34a1483683d692733dacde1feb424d368874a8c597e601c34881
@@ -10,6 +10,6 @@
10
10
 
11
11
  class Gennaro
12
12
  def self.version
13
- '0.3'
13
+ '0.3.1'
14
14
  end
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gennaro
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.3'
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Giovanni Capuano
@@ -58,13 +58,6 @@ files:
58
58
  - templates/authentication/app/helpers/user.rb
59
59
  - templates/authentication/app/models/guest.rb
60
60
  - templates/authentication/app/models/user.rb
61
- - templates/authentication/app/views/user/login.erb
62
- - templates/authentication/app/views/user/logout.erb
63
- - templates/authentication/app/views/user/lost_password.erb
64
- - templates/authentication/app/views/user/password_recovery.erb
65
- - templates/authentication/app/views/user/signup.erb
66
- - templates/authentication/app/views/user/template/footer.rb
67
- - templates/authentication/app/views/user/template/header.erb
68
61
  - templates/authentication/config.ru
69
62
  - templates/authentication/Gemfile
70
63
  - templates/authentication/Rakefile
@@ -1,16 +0,0 @@
1
- <%= erb :'template/header' %>
2
-
3
- <% if defined? @error %>
4
- <p class="error"><%= @error %></p>
5
- <% elsif defined? @success %>
6
- <p class="success"><%= @success %></p>
7
- <% else %>
8
- <form action="<%= @current_url %>" method="post">
9
- <input type="text" placeholder="username" name="username"><br>
10
- <input type="password" placeholder="password" name="password"><br>
11
- <%= csrf_tag %>
12
- <input type="submit" value="Login">
13
- </form>
14
- <% end %>
15
-
16
- <%= erb :'template/footer' %>
@@ -1,9 +0,0 @@
1
- <%= erb :'template/header' %>
2
-
3
- <% if defined? @error %>
4
- <p class="error"><%= @error %></p>
5
- <% elsif defined? @success %>
6
- <p class="success"><%= @success %></p>
7
- <% end %>
8
-
9
- <%= erb :'template/footer' %>
@@ -1,15 +0,0 @@
1
- <%= erb :'template/header' %>
2
-
3
- <% if defined? @error %>
4
- <p class="error"><%= @error %></p>
5
- <% elsif defined? @success %>
6
- <p class="success"><%= @success %></p>
7
- <% else %>
8
- <form action="<%= @current_url %>" method="post">
9
- <input type="text" placeholder="username" name="username"><br>
10
- <%= csrf_tag %>
11
- <input type="submit" value="Request">
12
- </form>
13
- <% end %>
14
-
15
- <%= erb :'template/footer' %>
@@ -1,17 +0,0 @@
1
- <%= erb :'template/header' %>
2
-
3
- <% if defined? @error %>
4
- <p class="error"><%= @error %></p>
5
- <% elsif defined? @success %>
6
- <p class="success"><%= @success %></p>
7
- <% else %>
8
- <form action="<%= @current_url %>" method="post">
9
- <input type="text" placeholder="username" name="username"><br>
10
- <input type="password" placeholder="code" name="passcode"><br>
11
- <input type="password" placeholder="new password" name="password"><br>
12
- <%= csrf_tag %>
13
- <input type="submit" value="Recover">
14
- </form>
15
- <% end %>
16
-
17
- <%= erb :'template/footer' %>
@@ -1,17 +0,0 @@
1
- <%= erb :'template/header' %>
2
-
3
- <% if defined? @error %>
4
- <p class="error"><%= @error %></p>
5
- <% elsif defined? @success %>
6
- <p class="success"><%= @success %></p>
7
- <% else %>
8
- <form action="<%= @current_url %>" method="post">
9
- <input type="text" placeholder="username" name="username"><br>
10
- <input type="email" placeholder="email" name="email" ><br>
11
- <input type="password" placeholder="password" name="password"><br>
12
- <%= csrf_tag %>
13
- <input type="submit" value="Sign up">
14
- </form>
15
- <% end %>
16
-
17
- <%= erb :'template/footer' %>
@@ -1,2 +0,0 @@
1
- </body>
2
- </html>
@@ -1,8 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
- <meta name="robots" content="index, follow">
6
- <title><%= @title %></title>
7
- </head>
8
- <body>