propel_authentication 0.1.3 → 0.1.4

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 (101) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +87 -0
  3. data/README.md +251 -113
  4. data/lib/generators/{propel_auth → propel_authentication}/install_generator.rb +17 -17
  5. data/lib/generators/{propel_auth → propel_authentication}/templates/auth_mailer.rb +1 -1
  6. data/lib/generators/{propel_auth → propel_authentication}/templates/authenticatable.rb +3 -3
  7. data/lib/generators/{propel_auth → propel_authentication}/templates/concerns/confirmable.rb +2 -2
  8. data/lib/generators/{propel_auth → propel_authentication}/templates/concerns/lockable.rb +6 -6
  9. data/lib/generators/{propel_auth → propel_authentication}/templates/concerns/recoverable.rb +6 -6
  10. data/lib/generators/{propel_auth → propel_authentication/templates}/core/configuration_methods.rb +38 -21
  11. data/lib/generators/{propel_auth → propel_authentication}/templates/invitation.rb +2 -2
  12. data/lib/generators/{propel_auth/templates/propel_auth.rb.tt → propel_authentication/templates/propel_authentication.rb.tt} +6 -14
  13. data/lib/generators/{propel_auth → propel_authentication}/templates/test/concerns/lockable_test.rb.tt +12 -12
  14. data/lib/generators/{propel_auth → propel_authentication}/templates/test/concerns/propel_authentication_test.rb.tt +1 -1
  15. data/lib/generators/{propel_auth → propel_authentication}/templates/test/concerns/recoverable_test.rb.tt +7 -7
  16. data/lib/generators/{propel_auth → propel_authentication}/templates/user_test.rb.tt +1 -1
  17. data/lib/generators/{propel_auth → propel_authentication}/unpack_generator.rb +38 -25
  18. data/lib/propel_authentication.rb +3 -0
  19. metadata +98 -98
  20. data/lib/generators/propel_auth/pack_generator.rb +0 -277
  21. data/lib/propel_auth.rb +0 -3
  22. /data/lib/generators/{propel_auth → propel_authentication}/templates/agency.rb +0 -0
  23. /data/lib/generators/{propel_auth → propel_authentication}/templates/agent.rb +0 -0
  24. /data/lib/generators/{propel_auth → propel_authentication}/templates/auth/base_passwords_controller.rb.tt +0 -0
  25. /data/lib/generators/{propel_auth → propel_authentication}/templates/auth/base_tokens_controller.rb.tt +0 -0
  26. /data/lib/generators/{propel_auth → propel_authentication}/templates/auth/passwords_controller.rb.tt +0 -0
  27. /data/lib/generators/{propel_auth → propel_authentication}/templates/concerns/propel_authentication.rb +0 -0
  28. /data/lib/generators/{propel_auth → propel_authentication}/templates/concerns/rack_session_disable.rb +0 -0
  29. /data/lib/generators/{propel_auth → propel_authentication}/templates/config/environments/development_email.rb +0 -0
  30. /data/lib/generators/{propel_auth → propel_authentication}/templates/db/migrate/create_agencies.rb +0 -0
  31. /data/lib/generators/{propel_auth → propel_authentication}/templates/db/migrate/create_agents.rb +0 -0
  32. /data/lib/generators/{propel_auth → propel_authentication}/templates/db/migrate/create_invitations.rb +0 -0
  33. /data/lib/generators/{propel_auth → propel_authentication}/templates/db/migrate/create_organizations.rb +0 -0
  34. /data/lib/generators/{propel_auth → propel_authentication}/templates/db/migrate/create_users.rb +0 -0
  35. /data/lib/generators/{propel_auth → propel_authentication}/templates/db/seeds.rb +0 -0
  36. /data/lib/generators/{propel_auth → propel_authentication}/templates/organization.rb +0 -0
  37. /data/lib/generators/{propel_auth → propel_authentication}/templates/services/auth_notification_service.rb +0 -0
  38. /data/lib/generators/{propel_auth → propel_authentication}/templates/test/concerns/confirmable_test.rb.tt +0 -0
  39. /data/lib/generators/{propel_auth → propel_authentication}/templates/test/controllers/auth/lockable_integration_test.rb.tt +0 -0
  40. /data/lib/generators/{propel_auth → propel_authentication}/templates/test/controllers/auth/password_reset_integration_test.rb.tt +0 -0
  41. /data/lib/generators/{propel_auth → propel_authentication}/templates/test/controllers/auth/tokens_controller_test.rb.tt +0 -0
  42. /data/lib/generators/{propel_auth → propel_authentication}/templates/test/mailers/auth_mailer_test.rb.tt +0 -0
  43. /data/lib/generators/{propel_auth → propel_authentication}/templates/test/mailers/previews/auth_mailer_preview.rb +0 -0
  44. /data/lib/generators/{propel_auth → propel_authentication}/templates/tokens_controller.rb.tt +0 -0
  45. /data/lib/generators/{propel_auth → propel_authentication}/templates/user.rb +0 -0
  46. /data/lib/generators/{propel_auth → propel_authentication}/templates/views/auth_mailer/account_unlock.html.erb +0 -0
  47. /data/lib/generators/{propel_auth → propel_authentication}/templates/views/auth_mailer/account_unlock.text.erb +0 -0
  48. /data/lib/generators/{propel_auth → propel_authentication}/templates/views/auth_mailer/email_confirmation.html.erb +0 -0
  49. /data/lib/generators/{propel_auth → propel_authentication}/templates/views/auth_mailer/email_confirmation.text.erb +0 -0
  50. /data/lib/generators/{propel_auth → propel_authentication}/templates/views/auth_mailer/password_reset.html.erb +0 -0
  51. /data/lib/generators/{propel_auth → propel_authentication}/templates/views/auth_mailer/password_reset.text.erb +0 -0
  52. /data/lib/generators/{propel_auth → propel_authentication}/templates/views/auth_mailer/user_invitation.html.erb +0 -0
  53. /data/lib/generators/{propel_auth → propel_authentication}/templates/views/auth_mailer/user_invitation.text.erb +0 -0
  54. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/Dockerfile +0 -0
  55. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/Gemfile +0 -0
  56. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/README.md +0 -0
  57. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/Rakefile +0 -0
  58. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/assets/stylesheets/application.css +0 -0
  59. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/controllers/application_controller.rb +0 -0
  60. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/helpers/application_helper.rb +0 -0
  61. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/jobs/application_job.rb +0 -0
  62. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/mailers/application_mailer.rb +0 -0
  63. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/models/application_record.rb +0 -0
  64. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/views/layouts/application.html.erb +0 -0
  65. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/views/layouts/mailer.html.erb +0 -0
  66. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/views/layouts/mailer.text.erb +0 -0
  67. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/views/pwa/manifest.json.erb +0 -0
  68. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/app/views/pwa/service-worker.js +0 -0
  69. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/bin/brakeman +0 -0
  70. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/bin/dev +0 -0
  71. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/bin/docker-entrypoint +0 -0
  72. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/bin/rails +0 -0
  73. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/bin/rake +0 -0
  74. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/bin/rubocop +0 -0
  75. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/bin/setup +0 -0
  76. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/bin/thrust +0 -0
  77. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/application.rb +0 -0
  78. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/boot.rb +0 -0
  79. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/cable.yml +0 -0
  80. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/credentials.yml.enc +0 -0
  81. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/database.yml +0 -0
  82. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/environment.rb +0 -0
  83. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/environments/development.rb +0 -0
  84. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/environments/production.rb +0 -0
  85. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/environments/test.rb +0 -0
  86. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/initializers/assets.rb +0 -0
  87. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/initializers/content_security_policy.rb +0 -0
  88. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/initializers/filter_parameter_logging.rb +0 -0
  89. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/initializers/inflections.rb +0 -0
  90. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/locales/en.yml +0 -0
  91. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/master.key +0 -0
  92. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/puma.rb +0 -0
  93. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/routes.rb +0 -0
  94. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config/storage.yml +0 -0
  95. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/config.ru +0 -0
  96. /data/lib/generators/{propel_auth → propel_authentication}/test/dummy/db/schema.rb +0 -0
  97. /data/lib/generators/{propel_auth → propel_authentication}/test/generators/authentication/controllers/tokens_controller_test.rb +0 -0
  98. /data/lib/generators/{propel_auth → propel_authentication}/test/generators/authentication/install_generator_test.rb +0 -0
  99. /data/lib/generators/{propel_auth → propel_authentication}/test/generators/authentication/uninstall_generator_test.rb +0 -0
  100. /data/lib/generators/{propel_auth → propel_authentication}/test/integration/generator_integration_test.rb +0 -0
  101. /data/lib/generators/{propel_auth → propel_authentication}/test/integration/multi_version_generator_test.rb +0 -0
@@ -4,19 +4,19 @@
4
4
  # PropelAuth unpacker that extracts the authentication GENERATOR into the host application
5
5
  #
6
6
  # Usage:
7
- # rails generate propel_auth:unpack # Unpack entire generator (code + templates)
8
- # rails generate propel_auth:unpack --force # Overwrite existing generator files
9
- # rails generate propel_auth:unpack --templates-only # Only copy templates, not generator logic
10
- # rails generate propel_auth:unpack --models-only # Only copy model templates
11
- # rails generate propel_auth:unpack --controllers-only # Only copy controller templates
7
+ # rails generate propel_authentication:unpack # Unpack entire generator (code + templates)
8
+ # rails generate propel_authentication:unpack --force # Overwrite existing generator files
9
+ # rails generate propel_authentication:unpack --templates-only # Only copy templates, not generator logic
10
+ # rails generate propel_authentication:unpack --models-only # Only copy model templates
11
+ # rails generate propel_authentication:unpack --controllers-only # Only copy controller templates
12
12
  #
13
- # This extracts the PropelAuth generator from the gem into lib/generators/propel_auth/
13
+ # This extracts the PropelAuthentication generator from the gem into lib/generators/propel_authentication/
14
14
  # so you can customize the generator logic and templates for your specific needs.
15
15
  #
16
- class PropelAuth::UnpackGenerator < Rails::Generators::Base
16
+ class PropelAuthentication::UnpackGenerator < Rails::Generators::Base
17
17
  source_root File.expand_path("templates", __dir__)
18
18
 
19
- desc "Extract PropelAuth generator code from gem to lib/generators/propel_auth/ for full customization"
19
+ desc "Extract PropelAuthentication generator code from gem to lib/generators/propel_authentication/ for full customization"
20
20
 
21
21
  class_option :force,
22
22
  type: :boolean,
@@ -47,7 +47,7 @@ class PropelAuth::UnpackGenerator < Rails::Generators::Base
47
47
  show_welcome_message
48
48
 
49
49
  components_to_unpack = determine_components
50
- destination_path = "lib/generators/propel_auth"
50
+ destination_path = "lib/generators/propel_authentication"
51
51
 
52
52
  if File.exist?(destination_path) && !options[:force]
53
53
  say "⚠️ #{destination_path} already exists (use --force to overwrite)", :yellow
@@ -69,11 +69,11 @@ class PropelAuth::UnpackGenerator < Rails::Generators::Base
69
69
  say "║ UNPACK PROPEL AUTH GENERATOR ║", :cyan
70
70
  say "╚══════════════════════════════════════╝", :cyan
71
71
  say ""
72
- say "This extracts the PropelAuth generator from the gem into your app", :blue
73
- say "at lib/generators/propel_auth/ so you can customize generator logic and templates.", :blue
72
+ say "This extracts the PropelAuthentication generator from the gem into your app", :blue
73
+ say "at lib/generators/propel_authentication/ so you can customize generator logic and templates.", :blue
74
74
  say ""
75
75
  say "📦 FROM: Gem-based generator (black box)", :yellow
76
- say "📁 TO: Local generator in lib/generators/propel_auth/ (fully customizable)", :green
76
+ say "📁 TO: Local generator in lib/generators/propel_authentication/ (fully customizable)", :green
77
77
  say ""
78
78
  end
79
79
 
@@ -85,10 +85,10 @@ class PropelAuth::UnpackGenerator < Rails::Generators::Base
85
85
  elsif options[:tests_only]
86
86
  return %w[tests]
87
87
  elsif options[:templates_only]
88
- return %w[models controllers tests views concerns services config db]
88
+ return %w[models controllers tests views concerns services config db core]
89
89
  else
90
90
  # Default: everything including generator logic
91
- return %w[models controllers tests views concerns services config db generator]
91
+ return %w[models controllers tests views concerns services config db core generator]
92
92
  end
93
93
  end
94
94
 
@@ -118,6 +118,8 @@ class PropelAuth::UnpackGenerator < Rails::Generators::Base
118
118
  copy_config_templates(destination_path)
119
119
  when 'db'
120
120
  copy_db_templates(destination_path)
121
+ when 'core'
122
+ copy_core_templates(destination_path)
121
123
  when 'generator'
122
124
  copy_generator_logic(destination_path)
123
125
  else
@@ -144,6 +146,14 @@ class PropelAuth::UnpackGenerator < Rails::Generators::Base
144
146
  say " ✅ Model generator templates extracted", :green
145
147
  end
146
148
 
149
+ def copy_core_templates(destination_path)
150
+ say "📂 Extracting core generator templates...", :blue
151
+
152
+ copy_template_file("core/configuration_methods.rb", destination_path)
153
+
154
+ say " ✅ Core generator templates extracted", :green
155
+ end
156
+
147
157
  def copy_controller_templates(destination_path)
148
158
  say "📂 Extracting controller generator templates...", :blue
149
159
 
@@ -190,8 +200,7 @@ class PropelAuth::UnpackGenerator < Rails::Generators::Base
190
200
  def copy_config_templates(destination_path)
191
201
  say "📂 Extracting config generator templates...", :blue
192
202
 
193
- copy_template_file("propel_auth.rb", destination_path)
194
- copy_template_file("propel_auth_configuration.rb.tt", destination_path)
203
+ copy_template_file("propel_authentication.rb.tt", destination_path)
195
204
  copy_directory_templates("config", destination_path)
196
205
 
197
206
  say " ✅ Config generator templates extracted", :green
@@ -217,12 +226,16 @@ class PropelAuth::UnpackGenerator < Rails::Generators::Base
217
226
  source_content = File.read(source_generator)
218
227
 
219
228
  # Update module declaration to be properly namespaced in host app
229
+ # AND fix the require_relative path to point to templates/core
220
230
  modified_content = source_content.gsub(
221
- /^module PropelAuth$/,
222
- "module PropelAuth"
231
+ /^module PropelAuthentication$/,
232
+ "module PropelAuthentication"
223
233
  ).gsub(
224
234
  /^ class InstallGenerator/,
225
235
  " class InstallGenerator"
236
+ ).gsub(
237
+ /require_relative 'core\/configuration_methods'/,
238
+ "require_relative 'templates/core/configuration_methods'"
226
239
  )
227
240
 
228
241
  # Create the directory and write the modified generator
@@ -252,17 +265,17 @@ class PropelAuth::UnpackGenerator < Rails::Generators::Base
252
265
  end
253
266
 
254
267
  def copy_lib_runtime(destination_path)
255
- say "📂 Extracting PropelAuth runtime code...", :blue
268
+ say "📂 Extracting PropelAuthentication runtime code...", :blue
256
269
 
257
- lib_source = File.join(self.class.source_root, "lib", "propel_auth.rb")
258
- lib_dest = File.join(destination_path, "templates", "lib", "propel_auth.rb")
270
+ lib_source = File.join(self.class.source_root, "lib", "propel_authentication.rb.tt")
271
+ lib_dest = File.join(destination_path, "templates", "lib", "propel_authentication.rb.tt")
259
272
 
260
273
  if File.exist?(lib_source)
261
274
  FileUtils.mkdir_p(File.dirname(lib_dest))
262
275
  FileUtils.cp(lib_source, lib_dest)
263
- say " ✅ PropelAuth runtime code extracted", :green
276
+ say " ✅ PropelAuthentication runtime code extracted", :green
264
277
  else
265
- say " ⚠️ PropelAuth runtime template not found", :yellow
278
+ say " ⚠️ PropelAuthentication runtime template not found", :yellow
266
279
  end
267
280
  end
268
281
 
@@ -305,7 +318,7 @@ class PropelAuth::UnpackGenerator < Rails::Generators::Base
305
318
 
306
319
  def show_completion_message(destination_path)
307
320
  say ""
308
- say "🎉 PropelAuth GENERATOR unpacked successfully!", :green
321
+ say "🎉 PropelAuthentication GENERATOR unpacked successfully!", :green
309
322
  say ""
310
323
  say "📁 Generator extracted to: #{destination_path}/", :bold
311
324
  say "📂 Templates available at: #{destination_path}/templates/", :bold
@@ -329,7 +342,7 @@ class PropelAuth::UnpackGenerator < Rails::Generators::Base
329
342
 
330
343
  say "💡 Test your customized generator:", :blue
331
344
  say " # Your local generator will be used instead of the gem:"
332
- say " rails generate propel_auth:install"
345
+ say " rails generate propel_authentication:install"
333
346
  say ""
334
347
 
335
348
  say "🔄 To use gem generator again:", :cyan
@@ -0,0 +1,3 @@
1
+ module PropelAuthentication
2
+ VERSION = "0.1.4"
3
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: propel_authentication
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Propel Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-07-22 00:00:00.000000000 Z
11
+ date: 2025-08-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -67,105 +67,105 @@ executables: []
67
67
  extensions: []
68
68
  extra_rdoc_files: []
69
69
  files:
70
+ - CHANGELOG.md
70
71
  - LICENSE
71
72
  - README.md
72
73
  - Rakefile
73
- - lib/generators/propel_auth/core/configuration_methods.rb
74
- - lib/generators/propel_auth/install_generator.rb
75
- - lib/generators/propel_auth/pack_generator.rb
76
- - lib/generators/propel_auth/templates/agency.rb
77
- - lib/generators/propel_auth/templates/agent.rb
78
- - lib/generators/propel_auth/templates/auth/base_passwords_controller.rb.tt
79
- - lib/generators/propel_auth/templates/auth/base_tokens_controller.rb.tt
80
- - lib/generators/propel_auth/templates/auth/passwords_controller.rb.tt
81
- - lib/generators/propel_auth/templates/auth_mailer.rb
82
- - lib/generators/propel_auth/templates/authenticatable.rb
83
- - lib/generators/propel_auth/templates/concerns/confirmable.rb
84
- - lib/generators/propel_auth/templates/concerns/lockable.rb
85
- - lib/generators/propel_auth/templates/concerns/propel_authentication.rb
86
- - lib/generators/propel_auth/templates/concerns/rack_session_disable.rb
87
- - lib/generators/propel_auth/templates/concerns/recoverable.rb
88
- - lib/generators/propel_auth/templates/config/environments/development_email.rb
89
- - lib/generators/propel_auth/templates/db/migrate/create_agencies.rb
90
- - lib/generators/propel_auth/templates/db/migrate/create_agents.rb
91
- - lib/generators/propel_auth/templates/db/migrate/create_invitations.rb
92
- - lib/generators/propel_auth/templates/db/migrate/create_organizations.rb
93
- - lib/generators/propel_auth/templates/db/migrate/create_users.rb
94
- - lib/generators/propel_auth/templates/db/seeds.rb
95
- - lib/generators/propel_auth/templates/invitation.rb
96
- - lib/generators/propel_auth/templates/organization.rb
97
- - lib/generators/propel_auth/templates/propel_auth.rb.tt
98
- - lib/generators/propel_auth/templates/services/auth_notification_service.rb
99
- - lib/generators/propel_auth/templates/test/concerns/confirmable_test.rb.tt
100
- - lib/generators/propel_auth/templates/test/concerns/lockable_test.rb.tt
101
- - lib/generators/propel_auth/templates/test/concerns/propel_authentication_test.rb.tt
102
- - lib/generators/propel_auth/templates/test/concerns/recoverable_test.rb.tt
103
- - lib/generators/propel_auth/templates/test/controllers/auth/lockable_integration_test.rb.tt
104
- - lib/generators/propel_auth/templates/test/controllers/auth/password_reset_integration_test.rb.tt
105
- - lib/generators/propel_auth/templates/test/controllers/auth/tokens_controller_test.rb.tt
106
- - lib/generators/propel_auth/templates/test/mailers/auth_mailer_test.rb.tt
107
- - lib/generators/propel_auth/templates/test/mailers/previews/auth_mailer_preview.rb
108
- - lib/generators/propel_auth/templates/tokens_controller.rb.tt
109
- - lib/generators/propel_auth/templates/user.rb
110
- - lib/generators/propel_auth/templates/user_test.rb.tt
111
- - lib/generators/propel_auth/templates/views/auth_mailer/account_unlock.html.erb
112
- - lib/generators/propel_auth/templates/views/auth_mailer/account_unlock.text.erb
113
- - lib/generators/propel_auth/templates/views/auth_mailer/email_confirmation.html.erb
114
- - lib/generators/propel_auth/templates/views/auth_mailer/email_confirmation.text.erb
115
- - lib/generators/propel_auth/templates/views/auth_mailer/password_reset.html.erb
116
- - lib/generators/propel_auth/templates/views/auth_mailer/password_reset.text.erb
117
- - lib/generators/propel_auth/templates/views/auth_mailer/user_invitation.html.erb
118
- - lib/generators/propel_auth/templates/views/auth_mailer/user_invitation.text.erb
119
- - lib/generators/propel_auth/test/dummy/Dockerfile
120
- - lib/generators/propel_auth/test/dummy/Gemfile
121
- - lib/generators/propel_auth/test/dummy/README.md
122
- - lib/generators/propel_auth/test/dummy/Rakefile
123
- - lib/generators/propel_auth/test/dummy/app/assets/stylesheets/application.css
124
- - lib/generators/propel_auth/test/dummy/app/controllers/application_controller.rb
125
- - lib/generators/propel_auth/test/dummy/app/helpers/application_helper.rb
126
- - lib/generators/propel_auth/test/dummy/app/jobs/application_job.rb
127
- - lib/generators/propel_auth/test/dummy/app/mailers/application_mailer.rb
128
- - lib/generators/propel_auth/test/dummy/app/models/application_record.rb
129
- - lib/generators/propel_auth/test/dummy/app/views/layouts/application.html.erb
130
- - lib/generators/propel_auth/test/dummy/app/views/layouts/mailer.html.erb
131
- - lib/generators/propel_auth/test/dummy/app/views/layouts/mailer.text.erb
132
- - lib/generators/propel_auth/test/dummy/app/views/pwa/manifest.json.erb
133
- - lib/generators/propel_auth/test/dummy/app/views/pwa/service-worker.js
134
- - lib/generators/propel_auth/test/dummy/bin/brakeman
135
- - lib/generators/propel_auth/test/dummy/bin/dev
136
- - lib/generators/propel_auth/test/dummy/bin/docker-entrypoint
137
- - lib/generators/propel_auth/test/dummy/bin/rails
138
- - lib/generators/propel_auth/test/dummy/bin/rake
139
- - lib/generators/propel_auth/test/dummy/bin/rubocop
140
- - lib/generators/propel_auth/test/dummy/bin/setup
141
- - lib/generators/propel_auth/test/dummy/bin/thrust
142
- - lib/generators/propel_auth/test/dummy/config.ru
143
- - lib/generators/propel_auth/test/dummy/config/application.rb
144
- - lib/generators/propel_auth/test/dummy/config/boot.rb
145
- - lib/generators/propel_auth/test/dummy/config/cable.yml
146
- - lib/generators/propel_auth/test/dummy/config/credentials.yml.enc
147
- - lib/generators/propel_auth/test/dummy/config/database.yml
148
- - lib/generators/propel_auth/test/dummy/config/environment.rb
149
- - lib/generators/propel_auth/test/dummy/config/environments/development.rb
150
- - lib/generators/propel_auth/test/dummy/config/environments/production.rb
151
- - lib/generators/propel_auth/test/dummy/config/environments/test.rb
152
- - lib/generators/propel_auth/test/dummy/config/initializers/assets.rb
153
- - lib/generators/propel_auth/test/dummy/config/initializers/content_security_policy.rb
154
- - lib/generators/propel_auth/test/dummy/config/initializers/filter_parameter_logging.rb
155
- - lib/generators/propel_auth/test/dummy/config/initializers/inflections.rb
156
- - lib/generators/propel_auth/test/dummy/config/locales/en.yml
157
- - lib/generators/propel_auth/test/dummy/config/master.key
158
- - lib/generators/propel_auth/test/dummy/config/puma.rb
159
- - lib/generators/propel_auth/test/dummy/config/routes.rb
160
- - lib/generators/propel_auth/test/dummy/config/storage.yml
161
- - lib/generators/propel_auth/test/dummy/db/schema.rb
162
- - lib/generators/propel_auth/test/generators/authentication/controllers/tokens_controller_test.rb
163
- - lib/generators/propel_auth/test/generators/authentication/install_generator_test.rb
164
- - lib/generators/propel_auth/test/generators/authentication/uninstall_generator_test.rb
165
- - lib/generators/propel_auth/test/integration/generator_integration_test.rb
166
- - lib/generators/propel_auth/test/integration/multi_version_generator_test.rb
167
- - lib/generators/propel_auth/unpack_generator.rb
168
- - lib/propel_auth.rb
74
+ - lib/generators/propel_authentication/install_generator.rb
75
+ - lib/generators/propel_authentication/templates/agency.rb
76
+ - lib/generators/propel_authentication/templates/agent.rb
77
+ - lib/generators/propel_authentication/templates/auth/base_passwords_controller.rb.tt
78
+ - lib/generators/propel_authentication/templates/auth/base_tokens_controller.rb.tt
79
+ - lib/generators/propel_authentication/templates/auth/passwords_controller.rb.tt
80
+ - lib/generators/propel_authentication/templates/auth_mailer.rb
81
+ - lib/generators/propel_authentication/templates/authenticatable.rb
82
+ - lib/generators/propel_authentication/templates/concerns/confirmable.rb
83
+ - lib/generators/propel_authentication/templates/concerns/lockable.rb
84
+ - lib/generators/propel_authentication/templates/concerns/propel_authentication.rb
85
+ - lib/generators/propel_authentication/templates/concerns/rack_session_disable.rb
86
+ - lib/generators/propel_authentication/templates/concerns/recoverable.rb
87
+ - lib/generators/propel_authentication/templates/config/environments/development_email.rb
88
+ - lib/generators/propel_authentication/templates/core/configuration_methods.rb
89
+ - lib/generators/propel_authentication/templates/db/migrate/create_agencies.rb
90
+ - lib/generators/propel_authentication/templates/db/migrate/create_agents.rb
91
+ - lib/generators/propel_authentication/templates/db/migrate/create_invitations.rb
92
+ - lib/generators/propel_authentication/templates/db/migrate/create_organizations.rb
93
+ - lib/generators/propel_authentication/templates/db/migrate/create_users.rb
94
+ - lib/generators/propel_authentication/templates/db/seeds.rb
95
+ - lib/generators/propel_authentication/templates/invitation.rb
96
+ - lib/generators/propel_authentication/templates/organization.rb
97
+ - lib/generators/propel_authentication/templates/propel_authentication.rb.tt
98
+ - lib/generators/propel_authentication/templates/services/auth_notification_service.rb
99
+ - lib/generators/propel_authentication/templates/test/concerns/confirmable_test.rb.tt
100
+ - lib/generators/propel_authentication/templates/test/concerns/lockable_test.rb.tt
101
+ - lib/generators/propel_authentication/templates/test/concerns/propel_authentication_test.rb.tt
102
+ - lib/generators/propel_authentication/templates/test/concerns/recoverable_test.rb.tt
103
+ - lib/generators/propel_authentication/templates/test/controllers/auth/lockable_integration_test.rb.tt
104
+ - lib/generators/propel_authentication/templates/test/controllers/auth/password_reset_integration_test.rb.tt
105
+ - lib/generators/propel_authentication/templates/test/controllers/auth/tokens_controller_test.rb.tt
106
+ - lib/generators/propel_authentication/templates/test/mailers/auth_mailer_test.rb.tt
107
+ - lib/generators/propel_authentication/templates/test/mailers/previews/auth_mailer_preview.rb
108
+ - lib/generators/propel_authentication/templates/tokens_controller.rb.tt
109
+ - lib/generators/propel_authentication/templates/user.rb
110
+ - lib/generators/propel_authentication/templates/user_test.rb.tt
111
+ - lib/generators/propel_authentication/templates/views/auth_mailer/account_unlock.html.erb
112
+ - lib/generators/propel_authentication/templates/views/auth_mailer/account_unlock.text.erb
113
+ - lib/generators/propel_authentication/templates/views/auth_mailer/email_confirmation.html.erb
114
+ - lib/generators/propel_authentication/templates/views/auth_mailer/email_confirmation.text.erb
115
+ - lib/generators/propel_authentication/templates/views/auth_mailer/password_reset.html.erb
116
+ - lib/generators/propel_authentication/templates/views/auth_mailer/password_reset.text.erb
117
+ - lib/generators/propel_authentication/templates/views/auth_mailer/user_invitation.html.erb
118
+ - lib/generators/propel_authentication/templates/views/auth_mailer/user_invitation.text.erb
119
+ - lib/generators/propel_authentication/test/dummy/Dockerfile
120
+ - lib/generators/propel_authentication/test/dummy/Gemfile
121
+ - lib/generators/propel_authentication/test/dummy/README.md
122
+ - lib/generators/propel_authentication/test/dummy/Rakefile
123
+ - lib/generators/propel_authentication/test/dummy/app/assets/stylesheets/application.css
124
+ - lib/generators/propel_authentication/test/dummy/app/controllers/application_controller.rb
125
+ - lib/generators/propel_authentication/test/dummy/app/helpers/application_helper.rb
126
+ - lib/generators/propel_authentication/test/dummy/app/jobs/application_job.rb
127
+ - lib/generators/propel_authentication/test/dummy/app/mailers/application_mailer.rb
128
+ - lib/generators/propel_authentication/test/dummy/app/models/application_record.rb
129
+ - lib/generators/propel_authentication/test/dummy/app/views/layouts/application.html.erb
130
+ - lib/generators/propel_authentication/test/dummy/app/views/layouts/mailer.html.erb
131
+ - lib/generators/propel_authentication/test/dummy/app/views/layouts/mailer.text.erb
132
+ - lib/generators/propel_authentication/test/dummy/app/views/pwa/manifest.json.erb
133
+ - lib/generators/propel_authentication/test/dummy/app/views/pwa/service-worker.js
134
+ - lib/generators/propel_authentication/test/dummy/bin/brakeman
135
+ - lib/generators/propel_authentication/test/dummy/bin/dev
136
+ - lib/generators/propel_authentication/test/dummy/bin/docker-entrypoint
137
+ - lib/generators/propel_authentication/test/dummy/bin/rails
138
+ - lib/generators/propel_authentication/test/dummy/bin/rake
139
+ - lib/generators/propel_authentication/test/dummy/bin/rubocop
140
+ - lib/generators/propel_authentication/test/dummy/bin/setup
141
+ - lib/generators/propel_authentication/test/dummy/bin/thrust
142
+ - lib/generators/propel_authentication/test/dummy/config.ru
143
+ - lib/generators/propel_authentication/test/dummy/config/application.rb
144
+ - lib/generators/propel_authentication/test/dummy/config/boot.rb
145
+ - lib/generators/propel_authentication/test/dummy/config/cable.yml
146
+ - lib/generators/propel_authentication/test/dummy/config/credentials.yml.enc
147
+ - lib/generators/propel_authentication/test/dummy/config/database.yml
148
+ - lib/generators/propel_authentication/test/dummy/config/environment.rb
149
+ - lib/generators/propel_authentication/test/dummy/config/environments/development.rb
150
+ - lib/generators/propel_authentication/test/dummy/config/environments/production.rb
151
+ - lib/generators/propel_authentication/test/dummy/config/environments/test.rb
152
+ - lib/generators/propel_authentication/test/dummy/config/initializers/assets.rb
153
+ - lib/generators/propel_authentication/test/dummy/config/initializers/content_security_policy.rb
154
+ - lib/generators/propel_authentication/test/dummy/config/initializers/filter_parameter_logging.rb
155
+ - lib/generators/propel_authentication/test/dummy/config/initializers/inflections.rb
156
+ - lib/generators/propel_authentication/test/dummy/config/locales/en.yml
157
+ - lib/generators/propel_authentication/test/dummy/config/master.key
158
+ - lib/generators/propel_authentication/test/dummy/config/puma.rb
159
+ - lib/generators/propel_authentication/test/dummy/config/routes.rb
160
+ - lib/generators/propel_authentication/test/dummy/config/storage.yml
161
+ - lib/generators/propel_authentication/test/dummy/db/schema.rb
162
+ - lib/generators/propel_authentication/test/generators/authentication/controllers/tokens_controller_test.rb
163
+ - lib/generators/propel_authentication/test/generators/authentication/install_generator_test.rb
164
+ - lib/generators/propel_authentication/test/generators/authentication/uninstall_generator_test.rb
165
+ - lib/generators/propel_authentication/test/integration/generator_integration_test.rb
166
+ - lib/generators/propel_authentication/test/integration/multi_version_generator_test.rb
167
+ - lib/generators/propel_authentication/unpack_generator.rb
168
+ - lib/propel_authentication.rb
169
169
  homepage: https://github.com/propel-hq/propel_rails.git
170
170
  licenses:
171
171
  - MIT