hasoffers 0.1.1 → 0.1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/CHANGELOG +3 -0
  2. data/README.rdoc +1 -1
  3. data/Rakefile +1 -1
  4. data/hasoffers.gemspec +1 -1
  5. metadata +3 -2
data/CHANGELOG CHANGED
@@ -1,5 +1,8 @@
1
1
  = HasOffers CHANGELOG
2
2
 
3
+ == Version 0.1.1.1
4
+ * Minor fix to README
5
+
3
6
  == Version 0.1.1
4
7
  * Changed REMOTE_TEST environment variable to HAS_OFFERS_LIVE
5
8
  * Added AffiliateBilling.find_all_invoices_by_ids
@@ -40,7 +40,7 @@ The tests can be ran in two modes:
40
40
  Does not make live API calls. Dummy responses are returned by the DummyResponse class which is also used in development mode to avoid live API calls.
41
41
 
42
42
  === Live mode
43
- * env REMOTE_TEST=1 rake test
43
+ * env HAS_OFFERS_LIVE=1 rake test
44
44
  Makes live api calls. Uses the HasOffer credentials in config/has_offers.yml which by default is set to the demo account credentials. HasOffers does not supply a test gateway so be careful to not run these tests against your live HasOffers account.
45
45
 
46
46
 
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('hasoffers', '0.1.1') do |p|
5
+ Echoe.new('hasoffers', '0.1.1.1') do |p|
6
6
  p.description = "Implementation of the HasOffers API for affiliate advertising."
7
7
  p.url = "http://github.com/ngin/hasoffers"
8
8
  p.author = "Luke Ludwig"
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{hasoffers}
5
- s.version = "0.1.1"
5
+ s.version = "0.1.1.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Luke Ludwig"]
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hasoffers
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 65
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
9
  - 1
10
- version: 0.1.1
10
+ - 1
11
+ version: 0.1.1.1
11
12
  platform: ruby
12
13
  authors:
13
14
  - Luke Ludwig