ruby_wings 0.1.1 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/ruby_wings.rb +17 -3
- data/lib/ruby_wings/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e5f78bcc3faeb514a8362d9a3c34dd6942d0a4f
|
4
|
+
data.tar.gz: 851e65a346dac3627bcf9db8dbccb925c131bf08
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 68a077dd473e6379e9057f3d286d95c8d3b363b5a06c9b77be72264372e33857a06d2237cfaa867fc1f2fcfb09228a5f1cadfb2483fa36cc74b099650139a6fc
|
7
|
+
data.tar.gz: 19f909562c8862371fcae0c0cf8c95ae2a212bdded3cf9353a18f0ef5e34b2879f3c1bcb7f4de7c8a679f03faa340552cb09523bdacd4b1497e464facb682835
|
data/README.md
CHANGED
data/lib/ruby_wings.rb
CHANGED
@@ -14,9 +14,23 @@ class ::String
|
|
14
14
|
end
|
15
15
|
end
|
16
16
|
|
17
|
-
|
18
|
-
|
19
|
-
|
17
|
+
if 1.is_a? Integer
|
18
|
+
class ::Integer
|
19
|
+
def blank?
|
20
|
+
false
|
21
|
+
end
|
22
|
+
end
|
23
|
+
else
|
24
|
+
class ::Fixnum
|
25
|
+
def blank?
|
26
|
+
false
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
class ::Bignum
|
31
|
+
def blank?
|
32
|
+
false
|
33
|
+
end
|
20
34
|
end
|
21
35
|
end
|
22
36
|
|
data/lib/ruby_wings/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby_wings
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gerrit Visscher
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-01-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
version: '0'
|
76
76
|
requirements: []
|
77
77
|
rubyforge_project:
|
78
|
-
rubygems_version: 2.
|
78
|
+
rubygems_version: 2.6.8
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: A collection of small ruby core extensions
|