exchange 0.10.0 → 0.10.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -11,10 +11,15 @@ rdoc
11
11
  doc
12
12
  .yardoc
13
13
 
14
+ # the gem binary
15
+ *.gem
16
+
14
17
  # bundler
15
18
  .bundle
16
19
  *.rdb
17
20
 
21
+ Gemfile.lock
22
+
18
23
  # filestore
19
24
  exchange_filestore
20
25
 
@@ -6,6 +6,12 @@ rvm:
6
6
  - ree
7
7
  - rbx-18mode
8
8
  - rbx-19mode
9
- - jruby
9
+ - jruby-18mode
10
+ - jruby-19mode
10
11
 
11
- script: bundle exec rspec
12
+ script: bundle exec rspec
13
+
14
+ matrix:
15
+ allow_failures:
16
+ - rvm: jruby-18mode
17
+ - rvm: jruby-19mode
@@ -1,13 +1,13 @@
1
1
  = exchange {<img src="https://secure.travis-ci.org/beatrichartz/exchange.png" />}[http://travis-ci.org/beatrichartz/exchange] {<img src="https://gemnasium.com/beatrichartz/exchange.png" alt="Dependency Status" />}[https://gemnasium.com/beatrichartz/exchange] {<img src="https://codeclimate.com/badge.png" />}[https://codeclimate.com/github/beatrichartz/exchange]
2
2
 
3
- The Exchange Gem gives you easy access to currency functions directly on your Numbers. {It is tested against}[http://travis-ci.org/beatrichartz/exchange]: ruby 1.9, ruby 1.8.7, ree, rubinius (1.8 and 1.9 mode) and jruby
3
+ The Exchange Gem gives you easy access to currency functions directly on your Numbers. {It is tested against}[http://travis-ci.org/beatrichartz/exchange]: ruby 1.9, ruby 1.8, ree and rubinius (1.8 and 1.9 mode)
4
4
 
5
5
  You can use it with just plain ruby projects, in Rails 2 and 3, Sinatra or whatever Framework you like.
6
6
 
7
7
  == Installation
8
8
  === Bundler / Rails
9
9
  Add it to your Gemfile
10
- gem "exchange", ">=0.10.0"
10
+ gem "exchange", ">= 0.10.0"
11
11
  === Manually
12
12
  Just install it as a gem
13
13
  gem install exchange
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
21
21
  s.require_paths = ["lib"]
22
22
 
23
- s.add_dependency "json", ">= 1.0.0"
23
+ s.add_dependency "nokogiri", ">= 1.0.0"
24
24
  s.add_development_dependency "yard", ">= 0.7.4"
25
25
  s.add_development_dependency "bundler", ">= 1.0.0"
26
26
  end
@@ -2,7 +2,7 @@ module Exchange
2
2
 
3
3
  # The current version of the exchange gem
4
4
  #
5
- VERSION = '0.10.0'
5
+ VERSION = '0.10.1'
6
6
 
7
7
  # The root installation path of the gem
8
8
  # @version 0.5
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exchange
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -12,7 +12,7 @@ cert_chain: []
12
12
  date: 2012-10-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
- name: json
15
+ name: nokogiri
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
@@ -73,13 +73,11 @@ files:
73
73
  - .rspec
74
74
  - .travis.yml
75
75
  - Gemfile
76
- - Gemfile.lock
77
76
  - LICENSE.txt
78
77
  - README.rdoc
79
78
  - Rakefile
80
79
  - benchmark/benchmark.rb
81
80
  - changelog.rdoc
82
- - exchange-0.9.0.gem
83
81
  - exchange.gemspec
84
82
  - iso4217.yml
85
83
  - lib/exchange.rb
@@ -1,37 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- exchange (0.10.0)
5
- json (>= 1.0.0)
6
-
7
- GEM
8
- remote: http://rubygems.org/
9
- specs:
10
- dalli (2.3.0)
11
- diff-lcs (1.1.3)
12
- json (1.7.5)
13
- nokogiri (1.5.5)
14
- nokogiri (1.5.5-java)
15
- redis (3.0.2)
16
- rspec (2.11.0)
17
- rspec-core (~> 2.11.0)
18
- rspec-expectations (~> 2.11.0)
19
- rspec-mocks (~> 2.11.0)
20
- rspec-core (2.11.1)
21
- rspec-expectations (2.11.3)
22
- diff-lcs (~> 1.1.3)
23
- rspec-mocks (2.11.3)
24
- yard (0.8.3)
25
-
26
- PLATFORMS
27
- java
28
- ruby
29
-
30
- DEPENDENCIES
31
- bundler (>= 1.0.0)
32
- dalli (>= 2.0.0)
33
- exchange!
34
- nokogiri (>= 1.5.0)
35
- redis (>= 2.2.0)
36
- rspec
37
- yard (>= 0.7.4)
Binary file