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 +4 -4
- data/.github/workflows/ruby.yml +1 -1
- data/Gemfile +1 -1
- data/README.md +2 -2
- data/bin/setup +1 -0
- data/kdl.gemspec +1 -1
- data/lib/kdl/kdl.tab.rb +1 -1
- data/lib/kdl/v1/kdl.tab.rb +1 -1
- data/lib/kdl/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 521ea76341d8f75aa57768079afb8b9116551796bcdc74f2501c0ae65a41fed6
|
|
4
|
+
data.tar.gz: 7a24e905e26b4ebf1f5c946631140808e3e07611f8cb8bf1ca467c07d1492e92
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a1001f00580a52378ff441bb5ad1512333aefd6c165265411d9101116a3565dff9d1919f2a3ee2d82bfb5aa69515f34ac73839bf56efbfdc94aea208bc48d51
|
|
7
|
+
data.tar.gz: 8ea174fc419e44dc437688ef464760fe41db6ec99ba9788ef90f605d2827b305b41d05e9fa95f0551c5f02478cd184ec8e5e94791d898f814c30dd121a6faeac
|
data/.github/workflows/ruby.yml
CHANGED
data/Gemfile
CHANGED
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 `
|
|
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
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.
|
|
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
data/lib/kdl/v1/kdl.tab.rb
CHANGED
data/lib/kdl/version.rb
CHANGED
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.
|
|
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.
|
|
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:
|
|
152
|
+
rubygems_version: 4.0.7
|
|
153
153
|
specification_version: 4
|
|
154
154
|
summary: KDL Document Language
|
|
155
155
|
test_files: []
|