librollenspielsache-rb 0.0.1 → 0.1.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: ce29474760b8d89db90f29af3379e9380b084c5f6a07c5b58f137cad0e91eb6a
4
- data.tar.gz: d068cdac8e26e3518d93cef2b06169179bd05486480be2bc91a52bc286ceea84
3
+ metadata.gz: 10c2ae8a313efa474a98ce9e53654ff9168f726e1af15a9ecf70b61b32017fd9
4
+ data.tar.gz: 4c01d90db9e0fc3fbd6a896e1f474160f59a57393ad8b176d72a33950a330c3c
5
5
  SHA512:
6
- metadata.gz: 9bd84a55ad5f57cc69080d02807172815d6dab280f57ac8c8e7508ae7036f66bf705d38a8d04998f0817bf942db95b9a6bc3158e1496df548006158106488e0e
7
- data.tar.gz: 5b85a5edbbd34949a0ee9a14c85bc15705c6371477544f484cf02ca7c8d5966e66ec58956ca265f9f5e090e76dcb2bba9ce76d9252b2ca95985f30b9fb6132fd
6
+ metadata.gz: d7fabb447a00c37184b2261b657904cae7b7a027fda17e4b113ceb14f6e9f813fb76d4bb07ec1fac76a55991146755c5a8bfa8cf8cbd8b104795a419bf4a1076
7
+ data.tar.gz: 254c94cc749b93c0c64f0adf6899a17144456ef1a7f0913fbb72603f886e734a1466cba111ee103c81602a0075488fb4afa3e33a9c2fb57af4cdb33a972ef85c
data/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # 0.1.0
2
+
3
+ Mostly just code formats and paths and stuff.
4
+
5
+ # 0.0.1
6
+
7
+ Initial release - core logic needed for 0.1.0.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- librollenspielsache-rb (0.0.1)
4
+ librollenspielsache-rb (0.1.0)
5
5
  ffi
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Librollenspielsache-rb
2
2
 
3
+ WIP - there's like nothing actually here yet.
4
+
5
+ ![Gem](https://img.shields.io/gem/v/librollenspielsache-rb)
6
+
3
7
  Ruby bindings for [`librollenspielsache`](https://crates.io/crates/librollenspielsache).
4
8
 
5
9
  ## Installation
@@ -23,7 +27,7 @@ Or install it yourself as:
23
27
 
24
28
  ## Development
25
29
 
26
- 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.
30
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests or `rake lint` to run RuboCop. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
27
31
 
28
32
  For now, this expects a pre-compiled `librollenspielsache.so` available in `ext/`. One is provided with the repo.
29
33
 
@@ -31,5 +35,5 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
31
35
 
32
36
  ## Contributing
33
37
 
34
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/librollenspielsache-rb.
38
+ Bug reports and pull requests are welcome on GitHub at https://github.com/deciduously/librollenspielsache-rb.
35
39
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Librollenspielsache
4
- VERSION = '0.0.1'
4
+ VERSION = '0.1.0'
5
5
  end
@@ -8,16 +8,16 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ['Ben Lovy']
9
9
  spec.email = ['ben@deciduously.com']
10
10
 
11
- spec.summary = 'Ruby binding for librolenspiesache'
12
- spec.description = 'Complete Ruby-idiomatic wrapper for librollenspielsache'
13
- spec.homepage = 'https://github.com/deciduously/librollenspielsache-rb'
11
+ spec.summary = 'Ruby binding for librolenspiesache.'
12
+ spec.description = "Complete Ruby-idiomatic wrapper for librollenspielsache. WIP - there's very little to the underlying binding, and as such, very little here. Version numbers for both should remain in sync, and this won't be \"usable\" until 1.0."
13
+ spec.homepage = 'https://rubygems.org/gems/librollenspielsache-rb'
14
14
  spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
15
15
 
16
16
  spec.metadata['allowed_push_host'] = 'https://rubygems.org'
17
17
 
18
18
  spec.metadata['homepage_uri'] = spec.homepage
19
19
  spec.metadata['source_code_uri'] = 'https://github.com/deciduously/librollenspielsache-rb'
20
- # spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
20
+ spec.metadata['changelog_uri'] = 'https://github.com/deciduously/librollenspielsache-rb/blob/master/CHANGELOG.md'
21
21
 
22
22
  # spec.add_dependency 'dotenv'
23
23
  spec.add_dependency 'ffi'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: librollenspielsache-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Lovy
@@ -38,7 +38,9 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- description: Complete Ruby-idiomatic wrapper for librollenspielsache
41
+ description: Complete Ruby-idiomatic wrapper for librollenspielsache. WIP - there's
42
+ very little to the underlying binding, and as such, very little here. Version numbers
43
+ for both should remain in sync, and this won't be "usable" until 1.0.
42
44
  email:
43
45
  - ben@deciduously.com
44
46
  executables: []
@@ -48,6 +50,7 @@ files:
48
50
  - ".github/workflows/ruby.yml"
49
51
  - ".gitignore"
50
52
  - ".rspec"
53
+ - CHANGELOG.md
51
54
  - Gemfile
52
55
  - Gemfile.lock
53
56
  - README.md
@@ -60,12 +63,13 @@ files:
60
63
  - lib/librollenspielsache/dice/roll_result.rb
61
64
  - lib/librollenspielsache/version.rb
62
65
  - librollenspielsache-rb.gemspec
63
- homepage: https://github.com/deciduously/librollenspielsache-rb
66
+ homepage: https://rubygems.org/gems/librollenspielsache-rb
64
67
  licenses: []
65
68
  metadata:
66
69
  allowed_push_host: https://rubygems.org
67
- homepage_uri: https://github.com/deciduously/librollenspielsache-rb
70
+ homepage_uri: https://rubygems.org/gems/librollenspielsache-rb
68
71
  source_code_uri: https://github.com/deciduously/librollenspielsache-rb
72
+ changelog_uri: https://github.com/deciduously/librollenspielsache-rb/blob/master/CHANGELOG.md
69
73
  post_install_message:
70
74
  rdoc_options: []
71
75
  require_paths:
@@ -84,5 +88,5 @@ requirements: []
84
88
  rubygems_version: 3.1.2
85
89
  signing_key:
86
90
  specification_version: 4
87
- summary: Ruby binding for librolenspiesache
91
+ summary: Ruby binding for librolenspiesache.
88
92
  test_files: []