hl_ruby 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 52a2b25cea0f32e7c420f81647ad9e2ed7b1d29d88a9c30f81d6a4631b8c9324
4
- data.tar.gz: 95b3c1f31720325b972a8b00a2bbcea884acccd14ba39cee89beaf6fb9b065c8
3
+ metadata.gz: 9df628f815b0d6546b9e1cc4d72e7a8487e58967faa4c98973651cdb9ef899e0
4
+ data.tar.gz: 53a5e5dc502b69c4a810e49093f77aa336cde81cc1c79e2067f914d98a9691b5
5
5
  SHA512:
6
- metadata.gz: 5fcbd104428b638f67639551c7bef77030bead4906263298af111a65286611f1b01396135e2d85383ca36b942f84eb471185a205e9ee3c4c0282c15c7c4e832e
7
- data.tar.gz: 6805028499e47b749b457b7fe9d87aa0027558c02dbc587cf6f64d0fe24371ac2f3bb7fd8b8a720df9890d7a413438b8a12dbc5b0720c737c3cf5524b9609448
6
+ metadata.gz: 7590c89dbf607eb57608ff01e30be8a44951e4eb8fe1073c95ecdc7bdec3b2279a7b71a5f212f2cb58735f1f1b12db615cd67ccb198ffef8fe6a8b1b3c3cbaf0
7
+ data.tar.gz: a679166096d2852cad1aef39567f00902982e2b8d1296dca6f08ee5208d6633cab5af59bb41cd59f6462ec3de63e5bc105f67fd7bc04747aeedcea1612df87a2
data/Gemfile.lock CHANGED
@@ -1,7 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- hl_ruby (0.0.1)
4
+ hl_ruby (0.0.2)
5
+ multi_xml (~> 0.6.0)
5
6
 
6
7
  GEM
7
8
  remote: https://rubygems.org/
@@ -9,6 +10,7 @@ GEM
9
10
  ast (2.4.2)
10
11
  diff-lcs (1.5.0)
11
12
  json (2.6.3)
13
+ multi_xml (0.6.0)
12
14
  parallel (1.23.0)
13
15
  parser (3.2.2.1)
14
16
  ast (~> 2.4.1)
data/README.md CHANGED
@@ -1,27 +1,23 @@
1
- # HlRuby
2
-
3
- TODO: Delete this and the text below, and describe your gem
4
-
5
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/hl_ruby`. To experiment with that code, run `bin/console` for an interactive prompt.
6
-
7
1
  ## Installation
8
2
 
9
- TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
-
11
3
  Install the gem and add to the application's Gemfile by executing:
12
4
 
13
- $ bundle add UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
5
+ $ bundle add hl_ruby
14
6
 
15
7
  If bundler is not being used to manage dependencies, install the gem by executing:
16
8
 
17
- $ gem install UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
9
+ $ gem install hl_ruby
18
10
 
19
11
  ## Usage
20
12
 
21
- TODO: Write usage instructions here
13
+ This ruby gem is intended to allow reading and writing of HeroLab Classic files in Ruby. This should include characters, monsters, items, and rules.
14
+
15
+ This git repository includes the repository from Sklore as a git submodule in the externals directory. It is included under its own respective licenses for development purposes only, and is used as test fixtures to validate the code. Its presence here does not place that code or data under the MIT license, and will be removed if necessary.
22
16
 
23
17
  ## Development
24
18
 
19
+ The spec/fixtures directory contains a symlink to the above submodule. As such, if you want to develop in this repo, you will need to run `git submodule update --init` after cloning this.
20
+
25
21
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
26
22
 
27
23
  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 the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HlRuby
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.2"
5
5
  end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hl_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron F Stanton
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-05-25 00:00:00.000000000 Z
12
- dependencies: []
11
+ date: 2023-05-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: multi_xml
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.6.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.6.0
13
27
  description:
14
28
  email:
15
29
  - afstanton@gmail.com