rafini 0.5.0 → 1.0.0

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: 487c2085e2d72ff8cbcb19139112d40803daaf94
4
- data.tar.gz: f367404c6323a01f3bd75b2cd69f2524e9ebd57d
3
+ metadata.gz: bcf2292d9da70068c6595c31195265cacea43c9d
4
+ data.tar.gz: 9dcab18064c2eeb25340182f22e26632141f82f0
5
5
  SHA512:
6
- metadata.gz: c76b4db1a927a1a6b2ffd13f621adf32df2fb9657cf5f33e86bfa5d6457dc813f37d92d879009220c078574ad2807407e3233abf3e909d9c2706745a0fa8bcba
7
- data.tar.gz: 0d1f221119ff12ad9f978ae7f6c55c48c1f9a97009af8845d0637f6cc536902c903b2b01f63df318faed9eaf216306c93c3eed4a8842a486efb71041696f90d4
6
+ metadata.gz: 404b14d5065305fa3c792bb6f3b43af65f292e99d3a2b50c89db45fa2fa16bf9e8468af4f5c65e95de6e401a21c3d46a06d752e93e8b97d85c0ec81f6267739d
7
+ data.tar.gz: c41acda381c48132bee1dd21115db290059387f04d7c1b4ce914f2b780fc7de679a302d23a9c75a02e905f6856d4aba146d80cc9edc8e1465f54215c1ae95105
data/lib/rafini/array.rb CHANGED
@@ -54,16 +54,6 @@ module Rafini
54
54
  return hash
55
55
  end
56
56
 
57
- # [:a, :b, :c].any?(:b, :d) #=> true
58
- #
59
- # Are any of the given in the array?
60
- def any?(*a)
61
- a.each do |b|
62
- return true if include?(b)
63
- end
64
- return false
65
- end
66
-
67
57
  end
68
58
  end
69
59
  end
data/lib/rafini/hash.rb CHANGED
@@ -52,8 +52,6 @@ module Rafini
52
52
  end
53
53
  self
54
54
  end
55
- # TODO: ammend was a typo, to go away on a major revision bump.
56
- alias ammend amend
57
55
 
58
56
  end
59
57
  end
@@ -1,3 +1,3 @@
1
1
  module Rafini
2
- VERSION = '0.5.0'
2
+ VERSION = '1.0.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rafini
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - carlosjhr64
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-16 00:00:00.000000000 Z
11
+ date: 2014-12-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |
14
14
  Just a collection of useful refinements.