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 +4 -4
- data/CHANGELOG +4 -0
- data/lib/rujitsu.rb +1 -1
- data/lib/rujitsu/{fixnum.rb → integer.rb} +2 -2
- data/rujitsu.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9fe3d3f0f84533e4d541511fb08525b84ee9a21d
|
4
|
+
data.tar.gz: 627d3b7bd91f9ad2b468fd973c8dd27829e801d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 74448d64af3213b4028eda9aa5551fb06ba88cc174ef6e4b18e3f1e0cbadbba5ea0ab6b9a43b026764853590426e3fc57887ea3e29b648eba3c74d4080a63f4d
|
7
|
+
data.tar.gz: 72a4cf65573327b0007d9ebd8ee4c8bc3ade1a876f251c671f0c4cad92441edb911b4f68c0943c8899de99733235de965c3415f05b4cc8229a4e98df3504c899
|
data/CHANGELOG
CHANGED
data/lib/rujitsu.rb
CHANGED
@@ -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/
|
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
|
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
|
-
|
99
|
+
Integer.send(:include, RujitsuInteger)
|
data/rujitsu.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = "rujitsu"
|
5
|
-
spec.version = "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/
|
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
|
+
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/
|
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.
|
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
|