rbs_active_hash 1.5.0 → 1.6.0

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.
@@ -1,14 +1,19 @@
1
+ # Generated from lib/rbs_active_hash/rake_task.rb with RBS::Inline
2
+
1
3
  module RbsActiveHash
2
4
  class RakeTask < Rake::TaskLib
3
5
  attr_accessor name: Symbol
4
- attr_accessor signature_root_dir: Pathname
5
6
 
6
- @name: Symbol
7
- @signature_root_dir: Pathname
7
+ attr_accessor signature_root_dir: Pathname
8
8
 
9
+ # @rbs name: Symbol
10
+ # @rbs &block: (RakeTask) -> void
9
11
  def initialize: (?Symbol name) { (RakeTask) -> void } -> void
12
+
10
13
  def define_setup_task: () -> void
14
+
11
15
  def define_clean_task: () -> void
16
+
12
17
  def define_generate_task: () -> void
13
18
 
14
19
  private
@@ -0,0 +1,5 @@
1
+ # Generated from lib/rbs_active_hash/version.rb with RBS::Inline
2
+
3
+ module RbsActiveHash
4
+ VERSION: ::String
5
+ end
@@ -1,6 +1,6 @@
1
+ # Generated from lib/rbs_active_hash.rb with RBS::Inline
2
+
1
3
  module RbsActiveHash
2
4
  class Error < StandardError
3
5
  end
4
-
5
- VERSION: String
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbs_active_hash
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takeshi KOMIYA
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-02-04 00:00:00.000000000 Z
11
+ date: 2025-10-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: active_hash
@@ -61,7 +61,6 @@ files:
61
61
  - lib/rbs_active_hash/active_hash/parser.rb
62
62
  - lib/rbs_active_hash/rake_task.rb
63
63
  - lib/rbs_active_hash/version.rb
64
- - rbs_active_hash.gemspec
65
64
  - rbs_collection.lock.yaml
66
65
  - rbs_collection.yaml
67
66
  - sig/generators/rbs_active_hash/install_generator.rbs
@@ -69,6 +68,7 @@ files:
69
68
  - sig/rbs_active_hash/active_hash.rbs
70
69
  - sig/rbs_active_hash/active_hash/parser.rbs
71
70
  - sig/rbs_active_hash/rake_task.rbs
71
+ - sig/rbs_active_hash/version.rbs
72
72
  homepage: https://github.com/tk0miya/rbs_active_hash
73
73
  licenses:
74
74
  - MIT
@@ -76,7 +76,8 @@ metadata:
76
76
  homepage_uri: https://github.com/tk0miya/rbs_active_hash
77
77
  source_code_uri: https://github.com/tk0miya/rbs_active_hash
78
78
  changelog_uri: https://github.com/tk0miya/rbs_active_hash
79
- post_install_message:
79
+ rubygems_mfa_required: 'true'
80
+ post_install_message:
80
81
  rdoc_options: []
81
82
  require_paths:
82
83
  - lib
@@ -84,15 +85,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
84
85
  requirements:
85
86
  - - ">="
86
87
  - !ruby/object:Gem::Version
87
- version: '2.7'
88
+ version: '3.2'
88
89
  required_rubygems_version: !ruby/object:Gem::Requirement
89
90
  requirements:
90
91
  - - ">="
91
92
  - !ruby/object:Gem::Version
92
93
  version: '0'
93
94
  requirements: []
94
- rubygems_version: 3.4.19
95
- signing_key:
95
+ rubygems_version: 3.5.22
96
+ signing_key:
96
97
  specification_version: 4
97
98
  summary: A RBS files generator for ActiveHash models
98
99
  test_files: []
@@ -1,35 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "lib/rbs_active_hash/version"
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = "rbs_active_hash"
7
- spec.version = RbsActiveHash::VERSION
8
- spec.authors = ["Takeshi KOMIYA"]
9
- spec.email = ["i.tkomiya@gmail.com"]
10
-
11
- spec.summary = "A RBS files generator for ActiveHash models"
12
- spec.description = "A RBS files generator for ActiveHash models"
13
- spec.homepage = "https://github.com/tk0miya/rbs_active_hash"
14
- spec.license = "MIT"
15
- spec.required_ruby_version = ">= 2.7"
16
-
17
- spec.metadata["homepage_uri"] = spec.homepage
18
- spec.metadata["source_code_uri"] = spec.homepage
19
- spec.metadata["changelog_uri"] = spec.homepage
20
-
21
- spec.files = Dir.chdir(__dir__) do
22
- `git ls-files -z`.split("\x0").reject do |f|
23
- (File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor])
24
- end
25
- end
26
- spec.bindir = "exe"
27
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
28
- spec.require_paths = ["lib"]
29
-
30
- spec.add_dependency "active_hash"
31
- spec.add_dependency "rbs"
32
-
33
- # For more information and examples about making a new gem, check out our
34
- # guide at: https://bundler.io/guides/creating_gem.html
35
- end