mixin_comment 0.1.2 → 0.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 98dfa8c2bfbf1da2033ec4a2f78f7a32df5635e4fcd4e774bdfb9c4d6d27f4a0
4
- data.tar.gz: 84e2d4c4d181de3017130fd835baac46e98fad7feb06589f3ec75a0491f5d747
3
+ metadata.gz: ae4fe9a919de03fd69ca058b04b7d1a27f2a64aa0185ec87a57d94e393786b40
4
+ data.tar.gz: 84b6fb5070e32674bef39d3b92acf5a015e50d8c4e39165f3b076d8505ed3280
5
5
  SHA512:
6
- metadata.gz: 43dd6df4a05e2c62844b35835e01ae44034f68141074bcd3a2c99a38bb3939a68ff4b1a5a93bbccae66cc0a9dae6369de38773bfa0938a9c4faec63fd2a6f6ec
7
- data.tar.gz: 82a2ef58fbf3cc044d379449ff3d369af9236ad15509926c835bf027901a1b95c6e8d99639187c52efbac19330cd9eb6dff405166831fe479eb3caf6b622e02f
6
+ metadata.gz: 3e2eeae55af95fd9828c62ad0be7fd055ee6908f08da5194f2e04a9ac5b264260cc6e7934c31cdd466bdadcf8157e610af2b1f1fd084743754467e1fe05217dc
7
+ data.tar.gz: 393cd6448e615b44c0a8333c402d3d391cae7cd26f51afae8005621357fad861159e4a58298102f1299b3a0e5f1cc20d602bff4345ff92fb21e0d73c8b020a61
@@ -8,37 +8,19 @@ jobs:
8
8
  strategy:
9
9
  fail-fast: false
10
10
  matrix:
11
- ruby: [2.6, 2.7, '3.0', 3.1, 3.2, 3.3]
12
- gemfile: ['rails50', 'rails51', 'rails52', 'rails60', 'rails61', 'rails70', 'rails71']
11
+ ruby: ['3.0', 3.1, 3.2, 3.3, 3.4, '4.0']
12
+ gemfile: ['rails70', 'rails71', 'rails72', 'rails80', 'rails81']
13
13
  exclude:
14
- - ruby: 2.6
15
- gemfile: rails70
16
- - ruby: 2.6
17
- gemfile: rails71
18
14
  - ruby: 3.0
19
- gemfile: rails50
15
+ gemfile: rails72
20
16
  - ruby: 3.0
21
- gemfile: rails51
17
+ gemfile: rails80
22
18
  - ruby: 3.0
23
- gemfile: rails52
19
+ gemfile: rails81
24
20
  - ruby: 3.1
25
- gemfile: rails50
21
+ gemfile: rails80
26
22
  - ruby: 3.1
27
- gemfile: rails51
28
- - ruby: 3.1
29
- gemfile: rails52
30
- - ruby: 3.2
31
- gemfile: rails50
32
- - ruby: 3.2
33
- gemfile: rails51
34
- - ruby: 3.2
35
- gemfile: rails52
36
- - ruby: 3.3
37
- gemfile: rails50
38
- - ruby: 3.3
39
- gemfile: rails51
40
- - ruby: 3.3
41
- gemfile: rails52
23
+ gemfile: rails81
42
24
 
43
25
  name: ruby ${{ matrix.ruby }}, ${{ matrix.gemfile }}
44
26
 
@@ -51,6 +33,9 @@ jobs:
51
33
  with:
52
34
  ruby-version: ${{ matrix.ruby }}
53
35
  bundler-cache: true
36
+ - name: Bundle list
37
+ run: |
38
+ bundle list
54
39
  - name: Prepare test
55
40
  run: |
56
41
  cd spec/dummy
data/.gitignore CHANGED
File without changes
data/.rspec CHANGED
File without changes
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.2.0
4
+
5
+ * Drop support for ruby <= 2.7, rails <= 6.1.
6
+
3
7
  ## 0.1.2
4
8
 
5
9
  * Add `frozen_string_literal: true`.
data/Gemfile CHANGED
@@ -1,3 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
+
5
+ gem "rails", ">= 7.0"
6
+ gem "sqlite3"
data/LICENSE CHANGED
File without changes
data/README.md CHANGED
@@ -4,8 +4,8 @@ Verification of comments for roughly designed mixin module.
4
4
 
5
5
  ## Dependencies
6
6
 
7
- * ruby 2.6+
8
- * activesupport 5.0+
7
+ * ruby 3.0+
8
+ * activesupport 7.0+
9
9
 
10
10
  ## Installation
11
11
 
data/Rakefile CHANGED
File without changes
@@ -3,4 +3,13 @@ source 'https://rubygems.org'
3
3
  gem "rails", "~> 7.0.1"
4
4
  gem "sqlite3", "~> 1.4.0"
5
5
 
6
+ gem "concurrent-ruby", "<= 1.3.4"
7
+
8
+ if RUBY_VERSION >= "3.4"
9
+ gem "bigdecimal"
10
+ gem "base64"
11
+ gem "drb"
12
+ gem "mutex_m"
13
+ end
14
+
6
15
  gemspec path: "../"
File without changes
@@ -1,6 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem "rails", "~> 6.1.0"
4
- gem "sqlite3", "~> 1.4.0"
3
+ gem "rails", "~> 7.2.0"
4
+ gem "sqlite3"
5
5
 
6
6
  gemspec path: "../"
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem "rails", "~> 8.0.0"
4
+ gem "sqlite3"
5
+
6
+ gemspec path: "../"
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem "rails", "~> 8.1.0"
4
+ gem "sqlite3"
5
+
6
+ gemspec path: "../"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MixinComment
4
- VERSION = '0.1.2'
4
+ VERSION = '0.2.0'
5
5
  end
data/lib/mixin_comment.rb CHANGED
File without changes
@@ -17,11 +17,11 @@ Gem::Specification.new do |spec|
17
17
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
18
18
  spec.require_paths = ["lib"]
19
19
 
20
- spec.add_dependency "activesupport", ">= 5.0"
20
+ spec.required_ruby_version = ">= 3.0"
21
+
22
+ spec.add_dependency "activesupport", ">= 7.0"
21
23
  spec.add_dependency "rdoc"
22
24
 
23
- spec.add_development_dependency "rails", ">= 5.0"
24
- spec.add_development_dependency "sqlite3"
25
25
  spec.add_development_dependency "rake"
26
26
  spec.add_development_dependency "rspec-rails"
27
27
  spec.add_development_dependency "simplecov"
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mixin_comment
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yoshikazu Kaneta
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-06-23 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: activesupport
@@ -16,14 +15,14 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: '5.0'
18
+ version: '7.0'
20
19
  type: :runtime
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
23
  - - ">="
25
24
  - !ruby/object:Gem::Version
26
- version: '5.0'
25
+ version: '7.0'
27
26
  - !ruby/object:Gem::Dependency
28
27
  name: rdoc
29
28
  requirement: !ruby/object:Gem::Requirement
@@ -38,34 +37,6 @@ dependencies:
38
37
  - - ">="
39
38
  - !ruby/object:Gem::Version
40
39
  version: '0'
41
- - !ruby/object:Gem::Dependency
42
- name: rails
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - ">="
46
- - !ruby/object:Gem::Version
47
- version: '5.0'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - ">="
53
- - !ruby/object:Gem::Version
54
- version: '5.0'
55
- - !ruby/object:Gem::Dependency
56
- name: sqlite3
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- version: '0'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - ">="
67
- - !ruby/object:Gem::Version
68
- version: '0'
69
40
  - !ruby/object:Gem::Dependency
70
41
  name: rake
71
42
  requirement: !ruby/object:Gem::Requirement
@@ -123,15 +94,11 @@ files:
123
94
  - LICENSE
124
95
  - README.md
125
96
  - Rakefile
126
- - bin/console
127
- - bin/setup
128
- - gemfiles/rails50.gemfile
129
- - gemfiles/rails51.gemfile
130
- - gemfiles/rails52.gemfile
131
- - gemfiles/rails60.gemfile
132
- - gemfiles/rails61.gemfile
133
97
  - gemfiles/rails70.gemfile
134
98
  - gemfiles/rails71.gemfile
99
+ - gemfiles/rails72.gemfile
100
+ - gemfiles/rails80.gemfile
101
+ - gemfiles/rails81.gemfile
135
102
  - lib/mixin_comment.rb
136
103
  - lib/mixin_comment/loader.rb
137
104
  - lib/mixin_comment/parser.rb
@@ -144,7 +111,6 @@ files:
144
111
  homepage: https://github.com/kanety/mixin_comment
145
112
  licenses: []
146
113
  metadata: {}
147
- post_install_message:
148
114
  rdoc_options: []
149
115
  require_paths:
150
116
  - lib
@@ -152,15 +118,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
152
118
  requirements:
153
119
  - - ">="
154
120
  - !ruby/object:Gem::Version
155
- version: '0'
121
+ version: '3.0'
156
122
  required_rubygems_version: !ruby/object:Gem::Requirement
157
123
  requirements:
158
124
  - - ">="
159
125
  - !ruby/object:Gem::Version
160
126
  version: '0'
161
127
  requirements: []
162
- rubygems_version: 3.3.3
163
- signing_key:
128
+ rubygems_version: 3.6.9
164
129
  specification_version: 4
165
130
  summary: Verification of comments for roughly designed mixin module
166
131
  test_files: []
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "mixin_comment"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
@@ -1,8 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem "rails", "~> 5.0.0"
4
- gem "sqlite3", "~> 1.3.6"
5
- gem "psych", "~> 3.3.0"
6
- gem "loofah", "~> 2.19.1"
7
-
8
- gemspec path: "../"
@@ -1,8 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem "rails", "~> 5.1.0"
4
- gem "sqlite3", "~> 1.3.6"
5
- gem "psych", "~> 3.3.0"
6
- gem "loofah", "~> 2.19.1"
7
-
8
- gemspec path: "../"
@@ -1,8 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem "rails", "~> 5.2.0"
4
- gem "sqlite3", "~> 1.3.6"
5
- gem "psych", "~> 3.3.0"
6
- gem "loofah", "~> 2.19.1"
7
-
8
- gemspec path: "../"
@@ -1,7 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem "rails", "~> 6.0.0"
4
- gem "sqlite3", "~> 1.4.0"
5
- gem "psych", "~> 3.3.0"
6
-
7
- gemspec path: "../"