zeke-monkey_patches 0.1.8 → 0.1.9
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/README.textile +18 -0
- data/VERSION.yml +1 -1
- metadata +4 -4
- data/README.rdoc +0 -7
data/README.textile
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
h1. Monkey Patches
|
2
|
+
|
3
|
+
This Rails gem extends String, Array, and Object.
|
4
|
+
|
5
|
+
h1. Installation
|
6
|
+
|
7
|
+
gem sources -a http://gems.github.com
|
8
|
+
sudo gem install zeke-monkey_patches
|
9
|
+
|
10
|
+
h2. String Methods
|
11
|
+
|
12
|
+
See lib/monkey_patches.rb for information on all the methods.
|
13
|
+
|
14
|
+
h2. TODO
|
15
|
+
|
16
|
+
* They say it's bad to monkey patch.. Would taking the ActiveSupport approach to adding these methods be favorable in some way?
|
17
|
+
|
18
|
+
Copyright (c) 2009 Zeke Sikelianos. See LICENSE for details.
|
data/VERSION.yml
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zeke-monkey_patches
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Zeke Sikelianos
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-04-
|
12
|
+
date: 2009-04-10 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -20,10 +20,10 @@ executables: []
|
|
20
20
|
extensions: []
|
21
21
|
|
22
22
|
extra_rdoc_files:
|
23
|
-
- README.
|
23
|
+
- README.textile
|
24
24
|
- LICENSE
|
25
25
|
files:
|
26
|
-
- README.
|
26
|
+
- README.textile
|
27
27
|
- VERSION.yml
|
28
28
|
- lib/monkey_patches.rb
|
29
29
|
- spec/monkey_patches_spec.rb
|