foundry_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: 60f6515cd84fc66c2afafb9d6a89fe6a6dbc9a1ededd295612eba03096d28dc9
4
- data.tar.gz: b09cb2c3a92c6033670f21ce83941a96b4f5580213e6378d34b1427e2108144c
3
+ metadata.gz: 2274f4a3651a055389221c7377f6bd014118d10fd671643b00b6eebbe9799e62
4
+ data.tar.gz: a01a1f2003db2d60d8fbc9e497b481baa42763947d9183750a0e6b9242fc7de5
5
5
  SHA512:
6
- metadata.gz: 8b71b97a7b56f6ac31417600151a238cecb46ff53720711e634d7d43a0f05780b79de0a91e1974256f9f80c717db222b3c2d63892751e5467f1d353f92e56623
7
- data.tar.gz: 383a1ba5771a02276edc49469acdb2898b3e561783987cdf44ef87966425bfa4a9c22ddea226b8989ecdd5ad11a3ce3daac5be4d0d7ed5f7aace339db7e4bd69
6
+ metadata.gz: 3f8cb74efe1c4714d491a56f0bcecee09930afe643111278197c474053bef2b64989a961ae7f98ac5cc4da0650d7bf81539279e76a19821b576d32655a8f00e6
7
+ data.tar.gz: b6e59bb7b74dcdc54d2227301745e23ec14dac4a880802bc78a3c17d27f7d86443692b8ff011a4939cb2847d9aee2e3b1f6b7dfebf5fac9dbbac2e66fe15701c
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- foundry_ruby (0.0.1)
5
- multi_xml (~> 0.6.0)
4
+ foundry_ruby (0.0.2)
5
+ multi_json (~> 1.15)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -10,7 +10,7 @@ GEM
10
10
  ast (2.4.2)
11
11
  diff-lcs (1.5.0)
12
12
  json (2.6.3)
13
- multi_xml (0.6.0)
13
+ multi_json (1.15.0)
14
14
  parallel (1.23.0)
15
15
  parser (3.2.2.1)
16
16
  ast (~> 2.4.1)
@@ -48,6 +48,7 @@ GEM
48
48
 
49
49
  PLATFORMS
50
50
  arm64-darwin-22
51
+ x86_64-linux
51
52
 
52
53
  DEPENDENCIES
53
54
  foundry_ruby!
data/README.md CHANGED
@@ -1,27 +1,23 @@
1
- # FoundryRuby
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/foundry_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 foundry_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 foundry_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 Foundry files in Ruby. This should include characters, monsters, items, and rules.
14
+
15
+ This git repository includes the repository from Foundry 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 FoundryRuby
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.2"
5
5
  end
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foundry_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-29 00:00:00.000000000 Z
11
+ date: 2023-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: multi_xml
14
+ name: multi_json
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.6.0
19
+ version: '1.15'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.6.0
26
+ version: '1.15'
27
27
  description:
28
28
  email:
29
29
  - afstanton@gmail.com