gemmyrb 0.1.5 → 0.1.6
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.
- checksums.yaml +4 -4
- data/README.md +7 -0
- data/lib/gemmy.rb +2 -1
- data/lib/gemmy/{components → patches_loaded/components}/cache.rb +0 -0
- data/lib/gemmy/{components → patches_loaded/components}/dynamic_steps.rb +0 -0
- data/lib/gemmy/{components → patches_loaded/components}/nlp.rb +0 -0
- data/lib/gemmy/{components → patches_loaded/components}/word_speaker.rb +0 -0
- data/lib/gemmy/{tasks → patches_loaded/tasks}/make_gem.rb +0 -0
- data/lib/gemmy/{tests → patches_loaded/tests}/component_tests.rb +0 -0
- data/lib/gemmy/{tests → patches_loaded/tests}/component_tests/dynamic_steps_tests.rb +0 -0
- data/lib/gemmy/{tests → patches_loaded/tests}/patch_test.rb +0 -0
- data/lib/gemmy/version.rb +1 -1
- metadata +9 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c9ab508e7252026a54793f0558943b188e1cdc38
|
|
4
|
+
data.tar.gz: f9b90d76bd14aea49b73fa286028caebc4c15cb5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 730465b69de8503415caaebd6b8735f39ac94cee2b385fa31356d6eed1c5e7dfadbe3b3252f73b02fc77e7bc34760f2de2d93681c69ca45bc7a3953d3c5e51ee
|
|
7
|
+
data.tar.gz: 05a131bca2f1248092e3945aedcff0d4e2f1fe277b60e8de149cb2900f5149b624232cf13be781adc12682358b18346f13ce2641d8bd110c46b154b4d3505f58
|
data/README.md
CHANGED
|
@@ -23,3 +23,10 @@ RubyGems hosts the YARD documentation at [http://www.rubydoc.info/gems/gemmyrb](
|
|
|
23
23
|
Specifically, look at the constants defined on Gemmy::Patches. There is one
|
|
24
24
|
module for each of the core classes being patched. Each individual method
|
|
25
25
|
is also contained in its own module.
|
|
26
|
+
|
|
27
|
+
### todo
|
|
28
|
+
|
|
29
|
+
cool gems to include as dependencies
|
|
30
|
+
|
|
31
|
+
chainable_methods
|
|
32
|
+
method_missing
|
data/lib/gemmy.rb
CHANGED
|
@@ -92,11 +92,12 @@ class Gemmy
|
|
|
92
92
|
singleton_class.send(:alias_method, :load, :load_globally)
|
|
93
93
|
end
|
|
94
94
|
|
|
95
|
-
|
|
96
95
|
Gem.find_files("gemmy/**/*.rb").sort_by do |x|
|
|
97
96
|
x.split("/").length
|
|
98
97
|
end.each &method(:require)
|
|
99
98
|
|
|
99
|
+
|
|
100
|
+
|
|
100
101
|
unless ENV["NO_G_MODE"]
|
|
101
102
|
# Alias for less typing
|
|
102
103
|
class G < Gemmy
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/gemmy/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gemmyrb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- max pleaner
|
|
@@ -177,10 +177,6 @@ files:
|
|
|
177
177
|
- lib/gemmy/cli.rb
|
|
178
178
|
- lib/gemmy/coffee.rb
|
|
179
179
|
- lib/gemmy/components.rb
|
|
180
|
-
- lib/gemmy/components/cache.rb
|
|
181
|
-
- lib/gemmy/components/dynamic_steps.rb
|
|
182
|
-
- lib/gemmy/components/nlp.rb
|
|
183
|
-
- lib/gemmy/components/word_speaker.rb
|
|
184
180
|
- lib/gemmy/constants.rb
|
|
185
181
|
- lib/gemmy/patches.rb
|
|
186
182
|
- lib/gemmy/patches/array_patch.rb
|
|
@@ -196,12 +192,16 @@ files:
|
|
|
196
192
|
- lib/gemmy/patches/string_patch.rb
|
|
197
193
|
- lib/gemmy/patches/symbol_patch.rb
|
|
198
194
|
- lib/gemmy/patches/thread_patch.rb
|
|
195
|
+
- lib/gemmy/patches_loaded/components/cache.rb
|
|
196
|
+
- lib/gemmy/patches_loaded/components/dynamic_steps.rb
|
|
197
|
+
- lib/gemmy/patches_loaded/components/nlp.rb
|
|
198
|
+
- lib/gemmy/patches_loaded/components/word_speaker.rb
|
|
199
|
+
- lib/gemmy/patches_loaded/tasks/make_gem.rb
|
|
200
|
+
- lib/gemmy/patches_loaded/tests/component_tests.rb
|
|
201
|
+
- lib/gemmy/patches_loaded/tests/component_tests/dynamic_steps_tests.rb
|
|
202
|
+
- lib/gemmy/patches_loaded/tests/patch_test.rb
|
|
199
203
|
- lib/gemmy/tasks.rb
|
|
200
|
-
- lib/gemmy/tasks/make_gem.rb
|
|
201
204
|
- lib/gemmy/tests.rb
|
|
202
|
-
- lib/gemmy/tests/component_tests.rb
|
|
203
|
-
- lib/gemmy/tests/component_tests/dynamic_steps_tests.rb
|
|
204
|
-
- lib/gemmy/tests/patch_test.rb
|
|
205
205
|
- lib/gemmy/version.rb
|
|
206
206
|
homepage: http://github.com/maxpleaner/gemmy
|
|
207
207
|
licenses:
|