rujitsu 0.4.0 → 0.5.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
  SHA1:
3
- metadata.gz: ffa903afb31f421a3a70aaa7be80493b96387122
4
- data.tar.gz: 5ba97b21216fe755c46ad225fb34c048b1fc6d91
3
+ metadata.gz: 9fe3d3f0f84533e4d541511fb08525b84ee9a21d
4
+ data.tar.gz: 627d3b7bd91f9ad2b468fd973c8dd27829e801d0
5
5
  SHA512:
6
- metadata.gz: 19cec8cd78a9a32fa031496e54c9a4a77b0497e4c8b234a800dd7810dd034fcb40b2081fc0e62800f49d81c4af9877bd0c4506a45e0f63a3bd33e0a6b65027d5
7
- data.tar.gz: 1715b9a643c5598744eb059798d3c448803f343ec9483531cc528ba33aec6cf1fd16d44cf51da892513c19c29ed348b2ab834ac8376d00fdfd1da962e08cecb3
6
+ metadata.gz: 74448d64af3213b4028eda9aa5551fb06ba88cc174ef6e4b18e3f1e0cbadbba5ea0ab6b9a43b026764853590426e3fc57887ea3e29b648eba3c74d4080a63f4d
7
+ data.tar.gz: 72a4cf65573327b0007d9ebd8ee4c8bc3ade1a876f251c671f0c4cad92441edb911b4f68c0943c8899de99733235de965c3415f05b4cc8229a4e98df3504c899
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ = Version 0.5.0 (2018-04-10)
2
+
3
+ Rename `RujitsuFixnum` to `RujitsuInteger` (via @worldisaduck)
4
+
1
5
  = Version 0.4.0 (2017-05-02)
2
6
 
3
7
  Added ::start_of_this_month, ::start_of_last_month and ::start_of_next_month for Date class (via @worldisaduck)
@@ -1,7 +1,7 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  base_dir = File.expand_path(File.dirname(__FILE__))
4
- require base_dir + '/rujitsu/fixnum'
4
+ require base_dir + '/rujitsu/integer'
5
5
  require base_dir + '/rujitsu/numeric'
6
6
  require base_dir + '/rujitsu/range'
7
7
  require base_dir + '/rujitsu/string'
@@ -1,6 +1,6 @@
1
1
  # encoding: utf-8
2
2
 
3
- module RujitsuFixnum
3
+ module RujitsuInteger
4
4
  # produce a string of N random vowels
5
5
  def random_vowels opts={}
6
6
  generate_random_string_using VOWELS, opts
@@ -96,4 +96,4 @@ module RujitsuFixnum
96
96
  end
97
97
  end
98
98
 
99
- Fixnum.send(:include, RujitsuFixnum)
99
+ Integer.send(:include, RujitsuInteger)
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "rujitsu"
5
- spec.version = "0.4.0"
5
+ spec.version = "0.5.0"
6
6
  spec.date = "2010-06-03"
7
7
  spec.authors = ["Brightbox Systems Ltd", "Caius Durling", "Rahoul Baruah"]
8
8
  spec.email = %q{hello@brightbox.co.uk}
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.homepage = %q{http://github.com/brightbox/rujitsu}
13
13
  spec.license = "MIT"
14
14
 
15
- spec.extra_rdoc_files = ["CHANGELOG", "README.rdoc", "lib/rujitsu.rb", "lib/rujitsu/all.rb", "lib/rujitsu/fixnum.rb", "lib/rujitsu/grammar.rb", "lib/rujitsu/inspect.rb", "lib/rujitsu/numeric.rb", "lib/rujitsu/object.rb", "lib/rujitsu/range.rb", "lib/rujitsu/string.rb", "lib/ujitsu.rb"]
15
+ spec.extra_rdoc_files = ["CHANGELOG", "README.rdoc", "lib/rujitsu.rb", "lib/rujitsu/all.rb", "lib/rujitsu/integer.rb", "lib/rujitsu/grammar.rb", "lib/rujitsu/inspect.rb", "lib/rujitsu/numeric.rb", "lib/rujitsu/object.rb", "lib/rujitsu/range.rb", "lib/rujitsu/string.rb", "lib/ujitsu.rb"]
16
16
  spec.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Rujitsu", "--main", "README.rdoc"]
17
17
 
18
18
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rujitsu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brightbox Systems Ltd
@@ -77,7 +77,7 @@ extra_rdoc_files:
77
77
  - README.rdoc
78
78
  - lib/rujitsu.rb
79
79
  - lib/rujitsu/all.rb
80
- - lib/rujitsu/fixnum.rb
80
+ - lib/rujitsu/integer.rb
81
81
  - lib/rujitsu/grammar.rb
82
82
  - lib/rujitsu/inspect.rb
83
83
  - lib/rujitsu/numeric.rb
@@ -96,9 +96,9 @@ files:
96
96
  - lib/rujitsu.rb
97
97
  - lib/rujitsu/all.rb
98
98
  - lib/rujitsu/date.rb
99
- - lib/rujitsu/fixnum.rb
100
99
  - lib/rujitsu/grammar.rb
101
100
  - lib/rujitsu/inspect.rb
101
+ - lib/rujitsu/integer.rb
102
102
  - lib/rujitsu/numeric.rb
103
103
  - lib/rujitsu/object.rb
104
104
  - lib/rujitsu/range.rb
@@ -131,7 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
131
131
  version: '0'
132
132
  requirements: []
133
133
  rubyforge_project:
134
- rubygems_version: 2.6.10
134
+ rubygems_version: 2.6.2
135
135
  signing_key:
136
136
  specification_version: 4
137
137
  summary: Various helper methods to smooth over Ruby development