matchrb 0.0.1 → 0.0.2
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.
- data/lib/matchrb/global.rb +1 -1
- data/lib/matchrb/version.rb +1 -1
- metadata +11 -11
- checksums.yaml +0 -7
data/lib/matchrb/global.rb
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
require 'matchrb'
|
|
2
|
-
Object.include
|
|
2
|
+
Object.send(:include, Matchrb)
|
data/lib/matchrb/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: matchrb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
|
+
prerelease:
|
|
5
6
|
platform: ruby
|
|
6
7
|
authors:
|
|
7
8
|
- Diogo Lisboa
|
|
@@ -10,16 +11,15 @@ bindir: bin
|
|
|
10
11
|
cert_chain: []
|
|
11
12
|
date: 2014-04-26 00:00:00.000000000 Z
|
|
12
13
|
dependencies: []
|
|
13
|
-
description:
|
|
14
|
-
|
|
15
|
-
pattern matching in Ruby.
|
|
14
|
+
description: ! " matchrb (pronounced 'matcherby') provides a simple but powerful
|
|
15
|
+
way to do\n pattern matching in Ruby.\n"
|
|
16
16
|
email:
|
|
17
17
|
- diogoslisboa@gmail.com
|
|
18
18
|
executables: []
|
|
19
19
|
extensions: []
|
|
20
20
|
extra_rdoc_files: []
|
|
21
21
|
files:
|
|
22
|
-
-
|
|
22
|
+
- .gitignore
|
|
23
23
|
- Gemfile
|
|
24
24
|
- LICENSE.txt
|
|
25
25
|
- README.md
|
|
@@ -32,28 +32,28 @@ files:
|
|
|
32
32
|
homepage: https://github.com/dlisboa/matchrb
|
|
33
33
|
licenses:
|
|
34
34
|
- BSD
|
|
35
|
-
metadata: {}
|
|
36
35
|
post_install_message:
|
|
37
36
|
rdoc_options: []
|
|
38
37
|
require_paths:
|
|
39
38
|
- lib
|
|
40
39
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
40
|
+
none: false
|
|
41
41
|
requirements:
|
|
42
|
-
- -
|
|
42
|
+
- - ! '>='
|
|
43
43
|
- !ruby/object:Gem::Version
|
|
44
44
|
version: '0'
|
|
45
45
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
46
|
+
none: false
|
|
46
47
|
requirements:
|
|
47
|
-
- -
|
|
48
|
+
- - ! '>='
|
|
48
49
|
- !ruby/object:Gem::Version
|
|
49
50
|
version: '0'
|
|
50
51
|
requirements: []
|
|
51
52
|
rubyforge_project:
|
|
52
|
-
rubygems_version:
|
|
53
|
+
rubygems_version: 1.8.23.2
|
|
53
54
|
signing_key:
|
|
54
|
-
specification_version:
|
|
55
|
+
specification_version: 3
|
|
55
56
|
summary: A tiny play on pattern matching in Ruby.
|
|
56
57
|
test_files:
|
|
57
58
|
- matchrb.gemspec
|
|
58
59
|
- spec/match_spec.rb
|
|
59
|
-
has_rdoc:
|
checksums.yaml
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
SHA1:
|
|
3
|
-
metadata.gz: fb61077f3da5e5af7fd2ef01dbdd248b0c4ad5d1
|
|
4
|
-
data.tar.gz: bf16bb6c22c929cf20e1a2c1595b143fe3664951
|
|
5
|
-
SHA512:
|
|
6
|
-
metadata.gz: e3fd2a0e2667e685a329abb316db4514ae39f6de64fd6d708f9c52573d0d0d876770dcb6b2e46a8842b2362d701fc8bdb0a0646ce63c7fb80213ed3a3a2095b3
|
|
7
|
-
data.tar.gz: 1298b29f54502424a1e77fb12d880f89ce99bc7af0c91861d378ddab9014848721961f4304090a7917775d1848dfe91a2c1a47fde95d97fa6c74aad62d471ccc
|