instantiator 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,3 @@
1
+ rvm:
2
+ - 1.8.6
3
+ - 1.8.7
@@ -18,4 +18,6 @@ Gem::Specification.new do |s|
18
18
  s.require_paths = ["lib"]
19
19
 
20
20
  s.add_dependency("blankslate")
21
+
22
+ s.add_development_dependency("rake")
21
23
  end
@@ -1,5 +1,5 @@
1
1
  require "instantiator/version"
2
- require "instantiator/symbol"
2
+ require "instantiator/core_ext"
3
3
  require "blankslate"
4
4
 
5
5
  module Instantiator
@@ -0,0 +1 @@
1
+ require "instantiator/core_ext/symbol"
@@ -1,3 +1,3 @@
1
1
  module Instantiator
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
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: 21
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 5
10
- version: 0.0.5
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-11 00:00:00 +01:00
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/symbol.rb
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