randsum 1.0.0 → 1.0.1

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
  SHA1:
3
- metadata.gz: ed1e5ae1f629113675ce64b0f5ba2b0c38a59cc0
4
- data.tar.gz: a865d91113c7b9c44a3bc300899c73a26caa70ba
3
+ metadata.gz: 908ccf54f186aee777aa00d69a5f101fb63be913
4
+ data.tar.gz: 4c350dd8cb21dee35091861fbf1c2cbcc61bb7de
5
5
  SHA512:
6
- metadata.gz: 3960a811e17e531220b80872e61ab540b283c8b1b2287a0d49c2c1e00ddf260548905ca02d6a2a939c60a3e1b25dd5c911621c776d1ab4197deff631c523f7d1
7
- data.tar.gz: 95aba041a0a99688da77a9d28860cd666594b0ae0a4eb448ab07f623a833fa37f7238b3b954a1a8cce36333f2b517867feae671d09bd3b61499fed9dba324a83
6
+ metadata.gz: 5449a6db5690f9582a13a0168301db7632e7dfc3b32a2e5bb673958aff44f162edb7cd2df9416f484db5ae4d59b87fcba603f0a84a61f1035c6bc0ce2d552aff
7
+ data.tar.gz: 54e237b7c7a819b2be42fe2b2e9b11c03cce23d31750121c92d7aa9f06d9e8d169035f2d3d390f68ba920dbe58c2758198dfabfd00bac3f282d97a6e52c3eace
@@ -1,3 +1,3 @@
1
1
  module Randsum
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
data/lib/randsum.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  require "randsum/version"
2
+ require "randsum/metadata"
2
3
  require "randsum/filters/filter"
3
4
  require "randsum/filters/droppers/dropper"
4
5
  require "randsum/filters/droppers/high_dropper"
data/randsum.gemspec CHANGED
@@ -2,16 +2,17 @@
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'randsum/version'
5
+ require 'randsum/metadata'
5
6
 
6
7
  Gem::Specification.new do |spec|
7
8
  spec.name = "randsum"
8
9
  spec.version = Randsum::VERSION
9
10
  spec.authors = ["Alex Jarvis"]
10
11
  spec.email = ["alxjrvs@gmail.com"]
11
- spec.summary = %q{Random Numbers, With Style.}
12
- spec.description = %q{Randsum is a Gem that provides a more familiar interface for generating random numbers - Rolling Dice. Using Randsum, developers can generate psuedorandom numbers securely and succinctly.}
13
- spec.homepage = "http://www.github.com/alxjrvs/randsum"
14
- spec.license = "MIT"
12
+ spec.summary = Randsum::SUMMARY
13
+ spec.description = Randsum::DESCRIPTION
14
+ spec.homepage = Randsum::HOMEPAGE
15
+ spec.license = Randsum::LICENSE
15
16
 
16
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
18
  spec.bindir = "exe"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: randsum
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Jarvis
@@ -66,9 +66,8 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: 0.10.3
69
- description: Randsum is a Gem that provides a more familiar interface for generating
70
- random numbers - Rolling Dice. Using Randsum, developers can generate psuedorandom
71
- numbers securely and succinctly.
69
+ description: 'Don''t you hate it when you have to generate specific quantities of
70
+ random numbers from a particular range while writing ruby? Look no further. '
72
71
  email:
73
72
  - alxjrvs@gmail.com
74
73
  executables: []
@@ -101,7 +100,7 @@ files:
101
100
  - lib/randsum/roll_report.rb
102
101
  - lib/randsum/version.rb
103
102
  - randsum.gemspec
104
- homepage: http://www.github.com/alxjrvs/randsum
103
+ homepage: https://api.randsum.io
105
104
  licenses:
106
105
  - MIT
107
106
  metadata: {}
@@ -124,5 +123,5 @@ rubyforge_project:
124
123
  rubygems_version: 2.5.1
125
124
  signing_key:
126
125
  specification_version: 4
127
- summary: Random Numbers, With Style.
126
+ summary: RNaaOOP
128
127
  test_files: []