porcupine 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +2 -0
- data/Rakefile +1 -10
- data/lib/porcupine.rb +1 -4
- data/porcupine.gemspec +5 -3
- metadata +7 -8
- data/Jarfile +0 -2
- data/Jarfile.lock +0 -26
data/.gitignore
CHANGED
data/Rakefile
CHANGED
data/lib/porcupine.rb
CHANGED
data/porcupine.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "porcupine"
|
7
|
-
spec.version = "0.2.
|
7
|
+
spec.version = "0.2.1"
|
8
8
|
spec.authors = ["Mike Ragalie"]
|
9
9
|
spec.email = ["ragalie@gmail.com"]
|
10
10
|
spec.summary = "JRuby wrapper for Hystrix"
|
@@ -13,11 +13,13 @@ Gem::Specification.new do |spec|
|
|
13
13
|
|
14
14
|
spec.files = `git ls-files`.split($/)
|
15
15
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
16
|
-
spec.extensions = ["Rakefile"]
|
17
16
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
18
17
|
spec.require_paths = ["lib"]
|
19
18
|
|
20
|
-
spec.
|
19
|
+
spec.requirements << "jar 'com.netflix.hystrix:hystrix-core', '1.3.5'"
|
20
|
+
spec.requirements << "jar 'org.slf4j:slf4j-simple', '1.7.5'"
|
21
|
+
|
22
|
+
spec.add_dependency "jbundler"
|
21
23
|
|
22
24
|
spec.add_development_dependency "bundler", "~> 1.3"
|
23
25
|
spec.add_development_dependency "rake"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: porcupine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,10 +9,10 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-10-07 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
|
-
name:
|
15
|
+
name: jbundler
|
16
16
|
version_requirements: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
18
|
- - '>='
|
@@ -79,15 +79,12 @@ description:
|
|
79
79
|
email:
|
80
80
|
- ragalie@gmail.com
|
81
81
|
executables: []
|
82
|
-
extensions:
|
83
|
-
- Rakefile
|
82
|
+
extensions: []
|
84
83
|
extra_rdoc_files: []
|
85
84
|
files:
|
86
85
|
- .gitignore
|
87
86
|
- .ruby-version
|
88
87
|
- Gemfile
|
89
|
-
- Jarfile
|
90
|
-
- Jarfile.lock
|
91
88
|
- LICENSE.txt
|
92
89
|
- README.md
|
93
90
|
- Rakefile
|
@@ -120,7 +117,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
120
117
|
- !ruby/object:Gem::Version
|
121
118
|
version: '0'
|
122
119
|
none: false
|
123
|
-
requirements:
|
120
|
+
requirements:
|
121
|
+
- jar 'com.netflix.hystrix:hystrix-core', '1.3.5'
|
122
|
+
- jar 'org.slf4j:slf4j-simple', '1.7.5'
|
124
123
|
rubyforge_project:
|
125
124
|
rubygems_version: 1.8.24
|
126
125
|
signing_key:
|
data/Jarfile
DELETED
data/Jarfile.lock
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
---
|
2
|
-
version: 0.7.5
|
3
|
-
groups:
|
4
|
-
default:
|
5
|
-
dependencies:
|
6
|
-
- com.google.code.findbugs:jsr305:jar:2.0.0
|
7
|
-
- com.netflix.archaius:archaius-core:jar:0.4.1
|
8
|
-
- com.netflix.hystrix:hystrix-core:jar:1.3.5
|
9
|
-
- com.netflix.rxjava:rxjava-core:jar:0.13.4
|
10
|
-
- commons-configuration:commons-configuration:jar:1.8
|
11
|
-
- commons-lang:commons-lang:jar:2.6
|
12
|
-
- commons-logging:commons-logging:jar:1.1.1
|
13
|
-
- org.slf4j:slf4j-api:jar:1.7.5
|
14
|
-
- org.slf4j:slf4j-simple:jar:1.7.5
|
15
|
-
artifacts:
|
16
|
-
- jar:com.netflix.hystrix:hystrix-core:jar:1.3.5:
|
17
|
-
transitive:
|
18
|
-
com.google.code.findbugs:jsr305:jar:2.0.0: {}
|
19
|
-
com.netflix.archaius:archaius-core:jar:0.4.1:
|
20
|
-
commons-configuration:commons-configuration:jar:1.8:
|
21
|
-
commons-logging:commons-logging:jar:1.1.1: {}
|
22
|
-
commons-lang:commons-lang:jar:2.6: {}
|
23
|
-
com.netflix.rxjava:rxjava-core:jar:0.13.4: {}
|
24
|
-
- jar:org.slf4j:slf4j-simple:jar:1.7.5:
|
25
|
-
transitive:
|
26
|
-
org.slf4j:slf4j-api:jar:1.7.5: {}
|