superators19 0.9.2 → 0.9.3
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +9 -3
- data/README.md +4 -4
- data/lib/superators19/version.rb +1 -1
- data/superators19.gemspec +1 -1
- metadata +4 -4
data/History.txt
CHANGED
@@ -1,5 +1,11 @@
|
|
1
|
-
==
|
1
|
+
== 0.9.3 / 2012-03-12
|
2
2
|
|
3
|
-
*
|
4
|
-
|
3
|
+
* Minor README tweaks
|
4
|
+
* Update changelog (History.txt)
|
5
5
|
|
6
|
+
== 0.9.2 / 2012-03-12
|
7
|
+
|
8
|
+
* Compatibility with MRI 1.9
|
9
|
+
* Optimize superator dispatch slightly (~30% on a microbenchmark)
|
10
|
+
* Replace hoe with bundler
|
11
|
+
* Incorporates patches from Scott Gonyea
|
data/README.md
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
#
|
1
|
+
# superators19
|
2
2
|
|
3
3
|
### by Jay Phillips
|
4
4
|
### http://jicksta.com
|
5
5
|
|
6
6
|
## DESCRIPTION:
|
7
7
|
|
8
|
-
Superators are a superset of new Ruby operators you can create and use.
|
8
|
+
Superators are a superset of new Ruby operators you can create and use. This is a fork of the original superators gem that adds compatibility with MRI 1.9 and other fixes.
|
9
9
|
|
10
10
|
## FEATURES/PROBLEMS:
|
11
11
|
|
@@ -37,8 +37,8 @@ Below is a simple example monkey patch which adds the "<---" operator to all Rub
|
|
37
37
|
|
38
38
|
## INSTALL:
|
39
39
|
|
40
|
-
*
|
41
|
-
* require '
|
40
|
+
* gem install superators19
|
41
|
+
* require 'superators19'
|
42
42
|
|
43
43
|
## LICENSE:
|
44
44
|
|
data/lib/superators19/version.rb
CHANGED
data/superators19.gemspec
CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.email = ["jay@codemecca.com"]
|
9
9
|
s.homepage = "https://github.com/neilconway/superators"
|
10
10
|
s.summary = %q{Superators add new sexy operators to your Ruby objects.}
|
11
|
-
s.description = %q{Superators are a superset of new Ruby operators you can create and use.}
|
11
|
+
s.description = %q{Superators are a superset of new Ruby operators you can create and use. This is a fork of the original superators gem that adds compatibility with MRI 1.9 and other fixes.}
|
12
12
|
|
13
13
|
s.add_development_dependency "rspec"
|
14
14
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: superators19
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 61
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 9
|
9
|
-
-
|
10
|
-
version: 0.9.
|
9
|
+
- 3
|
10
|
+
version: 0.9.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Jay Phillips
|
@@ -33,7 +33,7 @@ dependencies:
|
|
33
33
|
version: "0"
|
34
34
|
type: :development
|
35
35
|
version_requirements: *id001
|
36
|
-
description: Superators are a superset of new Ruby operators you can create and use.
|
36
|
+
description: Superators are a superset of new Ruby operators you can create and use. This is a fork of the original superators gem that adds compatibility with MRI 1.9 and other fixes.
|
37
37
|
email:
|
38
38
|
- jay@codemecca.com
|
39
39
|
executables: []
|