enum-i18n 0.2.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b4b1aacc546f0315164eb3ad00e80ff3af4050eba67ea5e2316131dfab5c0214
4
- data.tar.gz: 31730cf41c51a85184f1878d8820295e03e5957feeb14da7c7fc82f03a433655
3
+ metadata.gz: 65d1dc220cdd7b8b932e8a8db28dbf38c86f46a0ea324a29eeb9b29ea429951a
4
+ data.tar.gz: de746cb94fd38ba666aace4bf04907a71ca75f11cd993622e4ca66b47102c29b
5
5
  SHA512:
6
- metadata.gz: 42a08489c794314793a29e490d83e440a371e7e55477d3bc83ce18a6497939c5fc3fcdc953ea6e8c76b18e69865f044cf6fbda7d8af7b6d410ddabc36936bf5a
7
- data.tar.gz: e441ef9c936e7b2bce508c53846a7cab9702126e0099424d170381f8e75465fe62dc19f2b1e18ae01794dc77d84ee83cc532a07f48fc6bcd5c3f15993d3a51e4
6
+ metadata.gz: ebd52906313d18db9f73c7aeaa6ae5172327aefdc97b69128a2a42ad2cf287295744335a172fa2cfe62c899b327dc1acd8a243eb579ff4721badaf7c6e1d96ff
7
+ data.tar.gz: 929fd2103b7836ec8241e715e42ef8baaccb0895fc0b37e40c31ff50434c06f0e04a7b589eae305a0fba2ee32593b0d5ba30bb6f720d2b35ef00d66df4ceaf22
data/.gitignore CHANGED
@@ -10,3 +10,9 @@
10
10
 
11
11
  # rspec failure tracking
12
12
  .rspec_status
13
+
14
+ # gem files
15
+ *.gem
16
+
17
+ # IDE files
18
+ .vscode/
data/CHANGELOG.md CHANGED
@@ -17,6 +17,18 @@
17
17
 
18
18
  # CHANGELOG
19
19
 
20
+ # v0.2.1
21
+ * Update contact information to use GitHub issues instead of email addresses
22
+ * Remove email addresses from gemspec and documentation
23
+ * Add bug tracker and source code URIs to gemspec metadata
24
+ * Update .gitignore to exclude gem files
25
+
26
+ # v0.2.0
27
+ * Mark gem as deprecated
28
+ * Add deprecation warning to gemspec and README
29
+ * Set archive date to August 31, 2025
30
+ * Update documentation with migration guide
31
+
20
32
  # v0.1.1
21
33
  [full changelog]( https://github.com/amyroi/enum-i18n/compare/v0.1.0...v0.1.1)
22
34
 
data/CODE_OF_CONDUCT.md CHANGED
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
55
55
  ## Enforcement
56
56
 
57
57
  Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team at atsuko.mori.200@gmail.com. All
58
+ reported by contacting the project team via GitHub issues at https://github.com/amyroi/enum-i18n/issues. All
59
59
  complaints will be reviewed and investigated and will result in a response that
60
60
  is deemed necessary and appropriate to the circumstances. The project team is
61
61
  obligated to maintain confidentiality with regard to the reporter of an incident.
data/README.md CHANGED
@@ -104,4 +104,6 @@ or can appoint i18n scope
104
104
 
105
105
  ## Contributing
106
106
 
107
- Bug reports and pull requests are welcome on GitHub at https://github.com/amyroi/enum-i18n. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
107
+ Bug reports and pull requests are welcome on GitHub at https://github.com/amyroi/enum-i18n. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://contributor-covenant.org) code of conduct.
108
+
109
+ For bug reports and issues, please use our [GitHub Issues](https://github.com/amyroi/enum-i18n/issues) page.
data/enum-i18n.gemspec CHANGED
@@ -6,7 +6,6 @@ Gem::Specification.new do |spec|
6
6
  spec.name = 'enum-i18n'
7
7
  spec.version = EnumI18n::VERSION
8
8
  spec.authors = ['amyroi']
9
- spec.email = ['atsuko.mori.200@gmail.com']
10
9
 
11
10
  spec.summary = 'Enum attributes with I18n and ActiveRecord support (DEPRECATED)'
12
11
  spec.description = 'Enum attributes with I18n and ActiveRecord support. DEPRECATED: This gem is deprecated and will be archived soon. Consider using Rails built-in human_attribute_name or alternative gems like enum_help.'
@@ -14,7 +13,9 @@ Gem::Specification.new do |spec|
14
13
  spec.license = 'MIT'
15
14
  spec.metadata = {
16
15
  'deprecation_warning' => 'This gem is deprecated and will be archived on or after August 31, 2025. Consider migrating to Rails built-in alternatives or alternative gems.',
17
- 'github_repo' => 'https://github.com/amyroi/enum-i18n'
16
+ 'github_repo' => 'https://github.com/amyroi/enum-i18n',
17
+ 'bug_tracker_uri' => 'https://github.com/amyroi/enum-i18n/issues',
18
+ 'source_code_uri' => 'https://github.com/amyroi/enum-i18n'
18
19
  }
19
20
 
20
21
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
@@ -1,3 +1,3 @@
1
1
  module EnumI18n
2
- VERSION = "0.2.0"
2
+ VERSION = '0.2.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enum-i18n
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - amyroi
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-08-14 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: activerecord
@@ -70,7 +70,6 @@ description: 'Enum attributes with I18n and ActiveRecord support. DEPRECATED: Th
70
70
  gem is deprecated and will be archived soon. Consider using Rails built-in human_attribute_name
71
71
  or alternative gems like enum_help.'
72
72
  email:
73
- - atsuko.mori.200@gmail.com
74
73
  executables: []
75
74
  extensions: []
76
75
  extra_rdoc_files: []
@@ -97,6 +96,8 @@ metadata:
97
96
  deprecation_warning: This gem is deprecated and will be archived on or after August
98
97
  31, 2025. Consider migrating to Rails built-in alternatives or alternative gems.
99
98
  github_repo: https://github.com/amyroi/enum-i18n
99
+ bug_tracker_uri: https://github.com/amyroi/enum-i18n/issues
100
+ source_code_uri: https://github.com/amyroi/enum-i18n
100
101
  post_install_message:
101
102
  rdoc_options: []
102
103
  require_paths: