auspost 0.8.5 → 0.8.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/History.txt +2 -3
  2. data/Rakefile +3 -4
  3. data/lib/auspost.rb +1 -1
  4. metadata +15 -7
  5. data/bin/auspost +0 -7
@@ -1,4 +1,3 @@
1
- == 1.0.0 / 2009-12-26
1
+ == 0.8.6 / 2010-01-03
2
2
 
3
- * 1 major enhancement
4
- * Birthday!
3
+ * Nokogiri now installed as a dependency
data/Rakefile CHANGED
@@ -7,15 +7,14 @@ end
7
7
  ensure_in_path 'lib'
8
8
  require 'auspost'
9
9
 
10
- task :default => 'test:run'
10
+ task :default => 'spec'
11
11
  task 'gem:release' => 'test:run'
12
-
13
12
  Bones {
14
13
  name 'auspost'
15
14
  authors 'Cameron Barrie'
16
15
  email 'camwritescode@gmail.com'
17
- dependencies ['nokogiri', "memcache-client"]
18
- url 'http://www.camwritescode.com/auspost'
16
+ depend_on 'nokogiri'
17
+ url 'http://wiki.github.com/whalec/auspost'
19
18
  version Auspost::VERSION
20
19
  }
21
20
 
@@ -1,7 +1,7 @@
1
1
  module Auspost
2
2
 
3
3
  # :stopdoc:
4
- VERSION = '0.8.5'
4
+ VERSION = '0.8.6'
5
5
  LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
6
6
  PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR
7
7
  # :startdoc:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: auspost
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.5
4
+ version: 0.8.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cameron Barrie
@@ -9,9 +9,19 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-01-02 00:00:00 +11:00
12
+ date: 2010-01-03 00:00:00 +11:00
13
13
  default_executable:
14
14
  dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: nokogiri
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 1.4.1
24
+ version:
15
25
  - !ruby/object:Gem::Dependency
16
26
  name: bones
17
27
  type: :development
@@ -26,20 +36,18 @@ description: |-
26
36
  Give you the ability to search the Australia Post Web site with either Suburb or Postcode, and return an array of Locations.
27
37
  Also add's validation methods to ActiveRecord Objects to allow you to validate that A Postcode + State + Suburb is correct
28
38
  email: camwritescode@gmail.com
29
- executables:
30
- - auspost
39
+ executables: []
40
+
31
41
  extensions: []
32
42
 
33
43
  extra_rdoc_files:
34
44
  - History.txt
35
45
  - README.txt
36
- - bin/auspost
37
46
  files:
38
47
  - .bnsignore
39
48
  - History.txt
40
49
  - README.txt
41
50
  - Rakefile
42
- - bin/auspost
43
51
  - lib/auspost.rb
44
52
  - lib/auspost/active_record.rb
45
53
  - lib/auspost/active_record/validations.rb
@@ -50,7 +58,7 @@ files:
50
58
  - spec/fixtures/postal_worker.rb
51
59
  - spec/spec_helper.rb
52
60
  has_rdoc: true
53
- homepage: http://www.camwritescode.com/auspost
61
+ homepage: http://wiki.github.com/whalec/auspost
54
62
  licenses: []
55
63
 
56
64
  post_install_message:
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require File.expand_path(
4
- File.join(File.dirname(__FILE__), %w[.. lib auspost]))
5
-
6
- # Put your code here
7
-