registration_generator 0.2.1 → 0.2.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5fe551f01abee2b587f0543eca72ae4a7d278b42e36867d08bae6ee536a2801a
4
- data.tar.gz: e981f3073cd587feb844a3de9eea6707ca2093883c72981a5847e27846744f1c
3
+ metadata.gz: 6dfe607a78d28d17349d86567b6620ec146c2e5f36eed08cc33d312dda7fcb2e
4
+ data.tar.gz: 83250b7137f39d871a6e41fb453ebf9b0bb98b4f4aed9dfd917874e5a160a6c0
5
5
  SHA512:
6
- metadata.gz: 5bcd4197cb09a1628abedecb268ec5e4e25dd1fa4d9c33926ce7603624c5b14dd83c0b67c7d8240c039d9149e6a9c79fce3f75ba2b4e83d5a899b0352ff45bf1
7
- data.tar.gz: d70430157709e845357c9649df4597f0d10ccdb0366c07501bddbc6cd56e3bddf2ee3411cc4b91132c973c25f822a5c03cd609978e11a1f93559763d5dec3e89
6
+ metadata.gz: '021789a5fe2ab6513b53e72a9c8101bd0312fe2be7fef1d035f76a4e72da4427f2e6912438f26a0ed87667db2170c956fcef005e8b3ca20677f185124db8c2d0'
7
+ data.tar.gz: a92f5b2d4a323d37b7d9ce88d2911dd32cf385f849cd9aba3f2d4bfa64dfa9e1596a38660d9b8ec20e76f16b619a9e04afa2b67507c8f9c7a0251830ad58224f
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RegistrationGenerator
4
- VERSION = "0.2.1"
4
+ VERSION = "0.2.2"
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: registration_generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - DAZ
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-02-22 00:00:00.000000000 Z
10
+ date: 2025-02-23 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: rails
@@ -33,13 +33,12 @@ extra_rdoc_files: []
33
33
  files:
34
34
  - README.md
35
35
  - lib/registration_generator.rb
36
- - lib/registration_generator/USAGE
37
- - lib/registration_generator/registration_generator.gemspec
38
- - lib/registration_generator/registration_generator.rb
39
- - lib/registration_generator/templates/registration_form.html.erb
40
- - lib/registration_generator/templates/registrations_controller.rb
41
- - lib/registration_generator/templates/sign_in_form.html.erb
42
- - lib/version.rb
36
+ - lib/registration_generator/generators/registration/USAGE
37
+ - lib/registration_generator/generators/registration/registration_generator.rb
38
+ - lib/registration_generator/generators/registration/templates/registration_form.html.erb
39
+ - lib/registration_generator/generators/registration/templates/registrations_controller.rb
40
+ - lib/registration_generator/generators/registration/templates/sign_in_form.html.erb
41
+ - lib/registration_generator/version.rb
43
42
  homepage: https://github.com/your_username/registration_generator
44
43
  licenses:
45
44
  - MIT
@@ -1,16 +0,0 @@
1
- Gem::Specification.new do |spec|
2
- spec.name = "registration_generator"
3
- spec.version = "0.1.0"
4
- spec.authors = ["Your Name"]
5
- spec.email = ["your_email@example.com"]
6
-
7
- spec.summary = "A Rails generator for user registration"
8
- spec.description = "This gem provides a Rails generator to create a registration form and related files."
9
- spec.homepage = "https://github.com/your_username/registration_generator"
10
- spec.license = "MIT"
11
-
12
- spec.files = Dir["{lib}/**/*", "README.md"]
13
- spec.require_paths = ["lib"]
14
-
15
- spec.add_dependency "rails", ">= 6.0"
16
- end