kdl 2.1.2 → 2.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: eebfcc5663000c4ff45ec9867d0d57e6fa3451fe0047d2a40677b9ce3fca8bba
4
- data.tar.gz: '0800c53e8a225eb79129fcfbb00122686a85b07d597ffc30c3ec148ac0b8deb3'
3
+ metadata.gz: 521ea76341d8f75aa57768079afb8b9116551796bcdc74f2501c0ae65a41fed6
4
+ data.tar.gz: 7a24e905e26b4ebf1f5c946631140808e3e07611f8cb8bf1ca467c07d1492e92
5
5
  SHA512:
6
- metadata.gz: 30753a69f35480afc18bcac27046186cf4a974497ab24bcfb8ffbc5faf2c6788f7a2516bd253514022f19aadcb1242a63c1014183f5fd38562ba1b97651ed224
7
- data.tar.gz: 06efdbaf6779cdb75a4b373e15d384226e2e7747d02bae268149aaa7af8ddbaa64f52bc1e502d09f953a4dd6fb3ba3c3cd9faabb6874bd9b83672672147a357c
6
+ metadata.gz: 3a1001f00580a52378ff441bb5ad1512333aefd6c165265411d9101116a3565dff9d1919f2a3ee2d82bfb5aa69515f34ac73839bf56efbfdc94aea208bc48d51
7
+ data.tar.gz: 8ea174fc419e44dc437688ef464760fe41db6ec99ba9788ef90f605d2827b305b41d05e9fa95f0551c5f02478cd184ec8e5e94791d898f814c30dd121a6faeac
@@ -18,7 +18,7 @@ jobs:
18
18
  continue-on-error: ${{ matrix.ruby == 'head' }}
19
19
  strategy:
20
20
  matrix:
21
- ruby: [3.1, 3.2, 3.3, 3.4, head]
21
+ ruby: [3.2, 3.3, 3.4, 4.0, head]
22
22
 
23
23
  runs-on: ubuntu-latest
24
24
 
data/Gemfile CHANGED
@@ -6,7 +6,7 @@ gemspec
6
6
  gem "rake", "~> 13.0"
7
7
 
8
8
  group :test do
9
- gem "minitest", "~> 5.0"
9
+ gem "minitest", "~> 6.0"
10
10
  gem "simplecov", require: false
11
11
  gem "coveralls_reborn", require: false
12
12
  end
data/README.md CHANGED
@@ -104,9 +104,9 @@ KDL.parse("/- kdl-version 2\nfoo bar", version: 1)
104
104
 
105
105
  ## Development
106
106
 
107
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
107
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
108
108
 
109
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
109
+ To install this gem onto your local machine, run `bin/rake install`. To release a new version, update the version number in `version.rb`, and then run `bin/rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
110
110
 
111
111
  ## Contributing
112
112
 
data/bin/setup CHANGED
@@ -7,3 +7,4 @@ bundle install
7
7
 
8
8
  # Do any other automated setup that you need to do here
9
9
  bin/rake racc
10
+ git submodule update --init --recursive
data/kdl.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.description = %q{Ruby implementation of the KDL Document Language Spec}
11
11
  spec.homepage = "https://kdl.dev"
12
12
  spec.license = "MIT"
13
- spec.required_ruby_version = Gem::Requirement.new(">= 3.1.0")
13
+ spec.required_ruby_version = Gem::Requirement.new(">= 3.2.0")
14
14
 
15
15
  spec.metadata["homepage_uri"] = spec.homepage
16
16
  spec.metadata["source_code_uri"] = "https://github.com/danini-the-panini/kdl-rb"
data/lib/kdl/kdl.tab.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # DO NOT MODIFY!!!!
3
- # This file is automatically generated by Racc 1.8.0
3
+ # This file is automatically generated by Racc 1.8.1
4
4
  # from Racc grammar file "kdl.yy".
5
5
  #
6
6
 
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # DO NOT MODIFY!!!!
3
- # This file is automatically generated by Racc 1.8.0
3
+ # This file is automatically generated by Racc 1.8.1
4
4
  # from Racc grammar file "kdl.yy".
5
5
  #
6
6
 
data/lib/kdl/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module KDL
4
- VERSION = "2.1.2"
4
+ VERSION = "2.2.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kdl
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.2
4
+ version: 2.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Danielle Smith
@@ -142,14 +142,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
142
142
  requirements:
143
143
  - - ">="
144
144
  - !ruby/object:Gem::Version
145
- version: 3.1.0
145
+ version: 3.2.0
146
146
  required_rubygems_version: !ruby/object:Gem::Requirement
147
147
  requirements:
148
148
  - - ">="
149
149
  - !ruby/object:Gem::Version
150
150
  version: '0'
151
151
  requirements: []
152
- rubygems_version: 3.6.9
152
+ rubygems_version: 4.0.7
153
153
  specification_version: 4
154
154
  summary: KDL Document Language
155
155
  test_files: []