devise-better_routes 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.
Files changed (55) hide show
  1. data/.gitignore +20 -0
  2. data/.rspec +2 -0
  3. data/.travis.yml +3 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +76 -0
  7. data/Rakefile +1 -0
  8. data/devise-better_routes.gemspec +28 -0
  9. data/lib/devise/better_routes.rb +72 -0
  10. data/lib/devise/better_routes/version.rb +5 -0
  11. data/spec/devise/better_routes_spec.rb +108 -0
  12. data/spec/rails_app/Rakefile +6 -0
  13. data/spec/rails_app/app/assets/images/.keep +0 -0
  14. data/spec/rails_app/app/assets/javascripts/application.js +13 -0
  15. data/spec/rails_app/app/assets/stylesheets/application.css +13 -0
  16. data/spec/rails_app/app/controllers/application_controller.rb +5 -0
  17. data/spec/rails_app/app/controllers/concerns/.keep +0 -0
  18. data/spec/rails_app/app/controllers/current_rails_programmers_controller.rb +2 -0
  19. data/spec/rails_app/app/controllers/current_users_controller.rb +2 -0
  20. data/spec/rails_app/app/controllers/rails_programmers_controller.rb +2 -0
  21. data/spec/rails_app/app/controllers/users_controller.rb +2 -0
  22. data/spec/rails_app/app/helpers/application_helper.rb +2 -0
  23. data/spec/rails_app/app/mailers/.keep +0 -0
  24. data/spec/rails_app/app/models/.keep +0 -0
  25. data/spec/rails_app/app/models/concerns/.keep +0 -0
  26. data/spec/rails_app/app/models/rails_programmer.rb +3 -0
  27. data/spec/rails_app/app/models/user.rb +3 -0
  28. data/spec/rails_app/app/views/layouts/application.html.erb +14 -0
  29. data/spec/rails_app/config.ru +4 -0
  30. data/spec/rails_app/config/application.rb +26 -0
  31. data/spec/rails_app/config/boot.rb +5 -0
  32. data/spec/rails_app/config/database.yml +25 -0
  33. data/spec/rails_app/config/environment.rb +5 -0
  34. data/spec/rails_app/config/environments/development.rb +29 -0
  35. data/spec/rails_app/config/environments/production.rb +80 -0
  36. data/spec/rails_app/config/environments/test.rb +36 -0
  37. data/spec/rails_app/config/initializers/backtrace_silencers.rb +7 -0
  38. data/spec/rails_app/config/initializers/devise.rb +246 -0
  39. data/spec/rails_app/config/initializers/filter_parameter_logging.rb +4 -0
  40. data/spec/rails_app/config/initializers/inflections.rb +16 -0
  41. data/spec/rails_app/config/initializers/mime_types.rb +5 -0
  42. data/spec/rails_app/config/initializers/secret_token.rb +12 -0
  43. data/spec/rails_app/config/initializers/session_store.rb +3 -0
  44. data/spec/rails_app/config/initializers/wrap_parameters.rb +14 -0
  45. data/spec/rails_app/config/locales/en.yml +23 -0
  46. data/spec/rails_app/config/routes.rb +4 -0
  47. data/spec/rails_app/db/migrate/20130623000000_devise_create_users.rb +46 -0
  48. data/spec/rails_app/db/schema.rb +34 -0
  49. data/spec/rails_app/lib/assets/.keep +0 -0
  50. data/spec/rails_app/public/404.html +58 -0
  51. data/spec/rails_app/public/422.html +58 -0
  52. data/spec/rails_app/public/500.html +57 -0
  53. data/spec/rails_app/public/favicon.ico +0 -0
  54. data/spec/spec_helper.rb +10 -0
  55. metadata +262 -0
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ RailsApp::Application.config.secret_key_base = '2c6ff278202c9931d2a60e4e167be6070b71e01f7c4e14cf303161d1ffe7db041727ea84e56a4460df18ded68f6e97a7ad2c969bc38d6f30c4a0c58e0d80486e'
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ RailsApp::Application.config.session_store :cookie_store, key: '_rails_app_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,4 @@
1
+ RailsApp::Application.routes.draw do
2
+ devise_for :users
3
+ devise_for :rails_programmers
4
+ end
@@ -0,0 +1,46 @@
1
+ class DeviseCreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table(:users) do |t|
4
+ ## Database authenticatable
5
+ t.string :email, :null => false, :default => ""
6
+ t.string :encrypted_password, :null => false, :default => ""
7
+
8
+ ## Recoverable
9
+ t.string :reset_password_token
10
+ t.datetime :reset_password_sent_at
11
+
12
+ ## Rememberable
13
+ t.datetime :remember_created_at
14
+
15
+ ## Trackable
16
+ t.integer :sign_in_count, :default => 0
17
+ t.datetime :current_sign_in_at
18
+ t.datetime :last_sign_in_at
19
+ t.string :current_sign_in_ip
20
+ t.string :last_sign_in_ip
21
+
22
+ ## Confirmable
23
+ # t.string :confirmation_token
24
+ # t.datetime :confirmed_at
25
+ # t.datetime :confirmation_sent_at
26
+ # t.string :unconfirmed_email # Only if using reconfirmable
27
+
28
+ ## Lockable
29
+ # t.integer :failed_attempts, :default => 0 # Only if lock strategy is :failed_attempts
30
+ # t.string :unlock_token # Only if unlock strategy is :email or :both
31
+ # t.datetime :locked_at
32
+
33
+ ## Token authenticatable
34
+ # t.string :authentication_token
35
+
36
+
37
+ t.timestamps
38
+ end
39
+
40
+ add_index :users, :email, :unique => true
41
+ add_index :users, :reset_password_token, :unique => true
42
+ # add_index :users, :confirmation_token, :unique => true
43
+ # add_index :users, :unlock_token, :unique => true
44
+ # add_index :users, :authentication_token, :unique => true
45
+ end
46
+ end
@@ -0,0 +1,34 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20130623000000) do
15
+
16
+ create_table "users", force: true do |t|
17
+ t.string "email", default: "", null: false
18
+ t.string "encrypted_password", default: "", null: false
19
+ t.string "reset_password_token"
20
+ t.datetime "reset_password_sent_at"
21
+ t.datetime "remember_created_at"
22
+ t.integer "sign_in_count", default: 0
23
+ t.datetime "current_sign_in_at"
24
+ t.datetime "last_sign_in_at"
25
+ t.string "current_sign_in_ip"
26
+ t.string "last_sign_in_ip"
27
+ t.datetime "created_at"
28
+ t.datetime "updated_at"
29
+ end
30
+
31
+ add_index "users", ["email"], name: "index_users_on_email", unique: true
32
+ add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
33
+
34
+ end
File without changes
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/404.html -->
52
+ <div class="dialog">
53
+ <h1>The page you were looking for doesn't exist.</h1>
54
+ <p>You may have mistyped the address or the page may have moved.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/422.html -->
52
+ <div class="dialog">
53
+ <h1>The change you wanted was rejected.</h1>
54
+ <p>Maybe you tried to change something you didn't have access to.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,57 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/500.html -->
52
+ <div class="dialog">
53
+ <h1>We're sorry, but something went wrong.</h1>
54
+ </div>
55
+ <p>If you are the application owner check the logs for more information.</p>
56
+ </body>
57
+ </html>
File without changes
@@ -0,0 +1,10 @@
1
+ ENV['RAILS_ENV'] = 'test'
2
+
3
+ require File.expand_path('rails_app/config/environment.rb', File.dirname(__FILE__))
4
+ require 'rspec'
5
+ require 'rspec/rails'
6
+ require 'rspec/autorun'
7
+
8
+ RSpec.configure do |config|
9
+ # some config ...
10
+ end
metadata ADDED
@@ -0,0 +1,262 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: devise-better_routes
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Toru KAWAMURA
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-06-23 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: devise
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 3.0.0.rc
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: 3.0.0.rc
30
+ - !ruby/object:Gem::Dependency
31
+ name: rails
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: 4.0.0.rc1
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: 4.0.0.rc1
46
+ - !ruby/object:Gem::Dependency
47
+ name: bundler
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: '1.3'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '1.3'
62
+ - !ruby/object:Gem::Dependency
63
+ name: rake
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: rspec
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: rspec-rails
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ - !ruby/object:Gem::Dependency
111
+ name: sqlite3
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ! '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ! '>='
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ description: Better routes patch for Devise
127
+ email:
128
+ - tkawa@4bit.net
129
+ executables: []
130
+ extensions: []
131
+ extra_rdoc_files: []
132
+ files:
133
+ - .gitignore
134
+ - .rspec
135
+ - .travis.yml
136
+ - Gemfile
137
+ - LICENSE.txt
138
+ - README.md
139
+ - Rakefile
140
+ - devise-better_routes.gemspec
141
+ - lib/devise/better_routes.rb
142
+ - lib/devise/better_routes/version.rb
143
+ - spec/devise/better_routes_spec.rb
144
+ - spec/rails_app/Rakefile
145
+ - spec/rails_app/app/assets/images/.keep
146
+ - spec/rails_app/app/assets/javascripts/application.js
147
+ - spec/rails_app/app/assets/stylesheets/application.css
148
+ - spec/rails_app/app/controllers/application_controller.rb
149
+ - spec/rails_app/app/controllers/concerns/.keep
150
+ - spec/rails_app/app/controllers/current_rails_programmers_controller.rb
151
+ - spec/rails_app/app/controllers/current_users_controller.rb
152
+ - spec/rails_app/app/controllers/rails_programmers_controller.rb
153
+ - spec/rails_app/app/controllers/users_controller.rb
154
+ - spec/rails_app/app/helpers/application_helper.rb
155
+ - spec/rails_app/app/mailers/.keep
156
+ - spec/rails_app/app/models/.keep
157
+ - spec/rails_app/app/models/concerns/.keep
158
+ - spec/rails_app/app/models/rails_programmer.rb
159
+ - spec/rails_app/app/models/user.rb
160
+ - spec/rails_app/app/views/layouts/application.html.erb
161
+ - spec/rails_app/config.ru
162
+ - spec/rails_app/config/application.rb
163
+ - spec/rails_app/config/boot.rb
164
+ - spec/rails_app/config/database.yml
165
+ - spec/rails_app/config/environment.rb
166
+ - spec/rails_app/config/environments/development.rb
167
+ - spec/rails_app/config/environments/production.rb
168
+ - spec/rails_app/config/environments/test.rb
169
+ - spec/rails_app/config/initializers/backtrace_silencers.rb
170
+ - spec/rails_app/config/initializers/devise.rb
171
+ - spec/rails_app/config/initializers/filter_parameter_logging.rb
172
+ - spec/rails_app/config/initializers/inflections.rb
173
+ - spec/rails_app/config/initializers/mime_types.rb
174
+ - spec/rails_app/config/initializers/secret_token.rb
175
+ - spec/rails_app/config/initializers/session_store.rb
176
+ - spec/rails_app/config/initializers/wrap_parameters.rb
177
+ - spec/rails_app/config/locales/en.yml
178
+ - spec/rails_app/config/routes.rb
179
+ - spec/rails_app/db/migrate/20130623000000_devise_create_users.rb
180
+ - spec/rails_app/db/schema.rb
181
+ - spec/rails_app/lib/assets/.keep
182
+ - spec/rails_app/public/404.html
183
+ - spec/rails_app/public/422.html
184
+ - spec/rails_app/public/500.html
185
+ - spec/rails_app/public/favicon.ico
186
+ - spec/spec_helper.rb
187
+ homepage: ''
188
+ licenses:
189
+ - MIT
190
+ post_install_message:
191
+ rdoc_options: []
192
+ require_paths:
193
+ - lib
194
+ required_ruby_version: !ruby/object:Gem::Requirement
195
+ none: false
196
+ requirements:
197
+ - - ! '>='
198
+ - !ruby/object:Gem::Version
199
+ version: '0'
200
+ segments:
201
+ - 0
202
+ hash: -1753925327031690861
203
+ required_rubygems_version: !ruby/object:Gem::Requirement
204
+ none: false
205
+ requirements:
206
+ - - ! '>='
207
+ - !ruby/object:Gem::Version
208
+ version: '0'
209
+ segments:
210
+ - 0
211
+ hash: -1753925327031690861
212
+ requirements: []
213
+ rubyforge_project:
214
+ rubygems_version: 1.8.24
215
+ signing_key:
216
+ specification_version: 3
217
+ summary: Better routes patch for Devise
218
+ test_files:
219
+ - spec/devise/better_routes_spec.rb
220
+ - spec/rails_app/Rakefile
221
+ - spec/rails_app/app/assets/images/.keep
222
+ - spec/rails_app/app/assets/javascripts/application.js
223
+ - spec/rails_app/app/assets/stylesheets/application.css
224
+ - spec/rails_app/app/controllers/application_controller.rb
225
+ - spec/rails_app/app/controllers/concerns/.keep
226
+ - spec/rails_app/app/controllers/current_rails_programmers_controller.rb
227
+ - spec/rails_app/app/controllers/current_users_controller.rb
228
+ - spec/rails_app/app/controllers/rails_programmers_controller.rb
229
+ - spec/rails_app/app/controllers/users_controller.rb
230
+ - spec/rails_app/app/helpers/application_helper.rb
231
+ - spec/rails_app/app/mailers/.keep
232
+ - spec/rails_app/app/models/.keep
233
+ - spec/rails_app/app/models/concerns/.keep
234
+ - spec/rails_app/app/models/rails_programmer.rb
235
+ - spec/rails_app/app/models/user.rb
236
+ - spec/rails_app/app/views/layouts/application.html.erb
237
+ - spec/rails_app/config.ru
238
+ - spec/rails_app/config/application.rb
239
+ - spec/rails_app/config/boot.rb
240
+ - spec/rails_app/config/database.yml
241
+ - spec/rails_app/config/environment.rb
242
+ - spec/rails_app/config/environments/development.rb
243
+ - spec/rails_app/config/environments/production.rb
244
+ - spec/rails_app/config/environments/test.rb
245
+ - spec/rails_app/config/initializers/backtrace_silencers.rb
246
+ - spec/rails_app/config/initializers/devise.rb
247
+ - spec/rails_app/config/initializers/filter_parameter_logging.rb
248
+ - spec/rails_app/config/initializers/inflections.rb
249
+ - spec/rails_app/config/initializers/mime_types.rb
250
+ - spec/rails_app/config/initializers/secret_token.rb
251
+ - spec/rails_app/config/initializers/session_store.rb
252
+ - spec/rails_app/config/initializers/wrap_parameters.rb
253
+ - spec/rails_app/config/locales/en.yml
254
+ - spec/rails_app/config/routes.rb
255
+ - spec/rails_app/db/migrate/20130623000000_devise_create_users.rb
256
+ - spec/rails_app/db/schema.rb
257
+ - spec/rails_app/lib/assets/.keep
258
+ - spec/rails_app/public/404.html
259
+ - spec/rails_app/public/422.html
260
+ - spec/rails_app/public/500.html
261
+ - spec/rails_app/public/favicon.ico
262
+ - spec/spec_helper.rb