instantiator 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +3 -0
- data/instantiator.gemspec +2 -0
- data/lib/instantiator.rb +1 -1
- data/lib/instantiator/core_ext.rb +1 -0
- data/lib/instantiator/{symbol.rb → core_ext/symbol.rb} +0 -0
- data/lib/instantiator/version.rb +1 -1
- metadata +21 -5
data/.travis.yml
ADDED
data/instantiator.gemspec
CHANGED
data/lib/instantiator.rb
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
require "instantiator/core_ext/symbol"
|
File without changes
|
data/lib/instantiator/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: instantiator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 19
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 6
|
10
|
+
version: 0.0.6
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- James Mead
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-08-
|
18
|
+
date: 2011-08-12 00:00:00 +01:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -32,6 +32,20 @@ dependencies:
|
|
32
32
|
version: "0"
|
33
33
|
type: :runtime
|
34
34
|
version_requirements: *id001
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: rake
|
37
|
+
prerelease: false
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
hash: 3
|
44
|
+
segments:
|
45
|
+
- 0
|
46
|
+
version: "0"
|
47
|
+
type: :development
|
48
|
+
version_requirements: *id002
|
35
49
|
description:
|
36
50
|
email:
|
37
51
|
- james@floehopper.org
|
@@ -43,12 +57,14 @@ extra_rdoc_files: []
|
|
43
57
|
|
44
58
|
files:
|
45
59
|
- .gitignore
|
60
|
+
- .travis.yml
|
46
61
|
- Gemfile
|
47
62
|
- README.md
|
48
63
|
- Rakefile
|
49
64
|
- instantiator.gemspec
|
50
65
|
- lib/instantiator.rb
|
51
|
-
- lib/instantiator/
|
66
|
+
- lib/instantiator/core_ext.rb
|
67
|
+
- lib/instantiator/core_ext/symbol.rb
|
52
68
|
- lib/instantiator/version.rb
|
53
69
|
- test/instantiator_test.rb
|
54
70
|
- test/method_invocation_sink_test.rb
|