rpg_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: f612ff762b745219c16402964b0f8546fd358f4dd24c5d5a2bca6430acb823f0
4
- data.tar.gz: 1e8e16124ec05e6008bc41fc3159aca36c7133277fc32a9fca2c97f564e4b089
3
+ metadata.gz: 56129df1da9ce4de57b1bfb17821a7f1b19d6d92b4862c9d0811bccb4fd3968f
4
+ data.tar.gz: 2cdb83740a1568b8d2da930affc06c8e6170f1d6fe8976854caf430b4a1002d7
5
5
  SHA512:
6
- metadata.gz: 70863717632d70aa6b46a0927a9f4d26faf0ff31ed183ff866104650c3a4fc9461661bbd6b2932b9dbe911147f8f2a50b12edf49aaec1dedda034687968fe2d8
7
- data.tar.gz: aa12e1da459019e32da6e7fb50fc8c47b344742f331885dbaa1125d03a8d745e234b45ff0359dc550d2095fdcd9b9ee8ed2bbf0c80108e908f04593c7f541bb9
6
+ metadata.gz: '0049f8a0bf7beb373773c4ea77f82b12c96c8a5f7d11f7f0beaf33c50f3374841b9e7a33a8d9be3b563bc6ed4a9cce64b2b8e94a7cc610a3e5bb6fd87c7f15ed'
7
+ data.tar.gz: dff322e8aab4f64c25ddc04b512fccd8d5407a20e1914b933d29a3d1f2ef7062546b80181dea2663a4f1f7f9d6789e0236e4cafc8c8ef221d57c3ca6ef05ad03
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rpg_ruby (0.0.1)
4
+ rpg_ruby (0.0.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -2,8 +2,6 @@
2
2
 
3
3
  ## Installation
4
4
 
5
- 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.
6
-
7
5
  Install the gem and add to the application's Gemfile by executing:
8
6
 
9
7
  $ bundle add rpg_ruby
@@ -0,0 +1,11 @@
1
+ module RpgRuby
2
+ module FifthEdition
3
+ class Character
4
+ attr_accessor :data
5
+
6
+ def initialize(data = {})
7
+ @data = data
8
+ end
9
+ end
10
+ end
11
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RpgRuby
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.2"
5
5
  end
data/lib/rpg_ruby.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative "rpg_ruby/version"
4
+ Dir.glob(File.join(File.dirname(__FILE__), '**', '*.rb'), &method(:require))
4
5
 
5
6
  module RpgRuby
6
7
  class Error < StandardError; end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rpg_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
@@ -25,6 +25,7 @@ files:
25
25
  - README.md
26
26
  - Rakefile
27
27
  - lib/rpg_ruby.rb
28
+ - lib/rpg_ruby/fifth_edition/character.rb
28
29
  - lib/rpg_ruby/version.rb
29
30
  - sig/rpg_ruby.rbs
30
31
  homepage: https://github.com/afstanton/rpg_ruby