porcupine 0.2.0 → 0.2.1

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/.gitignore CHANGED
@@ -1,10 +1,12 @@
1
1
  *.gem
2
2
  *.rbc
3
3
  .bundle
4
+ .jbundler
4
5
  .config
5
6
  .idea
6
7
  .yardoc
7
8
  Gemfile.lock
9
+ Jarfile.lock
8
10
  InstalledFiles
9
11
  _yardoc
10
12
  coverage
data/Rakefile CHANGED
@@ -1,10 +1 @@
1
- task :default => :prepare
2
-
3
- task :prepare do
4
- require 'lock_jar'
5
-
6
- # get jarfile relative the gem dir
7
- lockfile = File.expand_path( "../Jarfile.lock", __FILE__ )
8
-
9
- LockJar.install( :lockfile => lockfile )
10
- end
1
+ require "bundler/gem_tasks"
@@ -1,7 +1,4 @@
1
- require "lock_jar"
2
-
3
- lockfile = File.expand_path( "../../Jarfile.lock", __FILE__ )
4
- LockJar.load(lockfile)
1
+ require "jbundler"
5
2
 
6
3
  require "porcupine/porcupine"
7
4
  require "porcupine/exceptions"
@@ -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.0"
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.add_dependency "lock_jar"
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.0
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-09-23 00:00:00.000000000 Z
12
+ date: 2013-10-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
- name: lock_jar
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
@@ -1,2 +0,0 @@
1
- jar 'com.netflix.hystrix:hystrix-core:1.3.5'
2
- jar 'org.slf4j:slf4j-simple:1.7.5'
@@ -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: {}