auspost-drc 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -33,10 +33,9 @@ task :default => :test
33
33
 
34
34
  require 'rake/rdoctask'
35
35
  Rake::RDocTask.new do |rdoc|
36
- version = File.exist?('VERSION') ? File.read('VERSION') : ""
37
-
36
+ version = AusPost::DRC::VERSION
38
37
  rdoc.rdoc_dir = 'rdoc'
39
- rdoc.title = "auspost_drc #{version}"
38
+ rdoc.title = "austpost-drc #{version}"
40
39
  rdoc.rdoc_files.include('README*')
41
40
  rdoc.rdoc_files.include('lib/**/*.rb')
42
41
  end
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{auspost-drc}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Darcy Laycock"]
@@ -23,6 +23,7 @@ Gem::Specification.new do |s|
23
23
  "README.md",
24
24
  "Rakefile",
25
25
  "auspost-drc.gemspec",
26
+ "lib/aus_post/auspost-drc.rb",
26
27
  "lib/aus_post/drc.rb",
27
28
  "lib/aus_post/drc/calculator.rb",
28
29
  "lib/aus_post/drc/parcel.rb",
@@ -0,0 +1 @@
1
+ require 'aus_post/drc'
@@ -1,7 +1,7 @@
1
1
  module AusPost
2
2
  module DRC
3
3
 
4
- VERSION = "0.1.0".freeze
4
+ VERSION = "0.1.1".freeze
5
5
  Error = Class.new(StandardError)
6
6
 
7
7
  autoload :Parcel, 'aus_post/drc/parcel'
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Darcy Laycock
@@ -45,6 +45,7 @@ files:
45
45
  - README.md
46
46
  - Rakefile
47
47
  - auspost-drc.gemspec
48
+ - lib/aus_post/auspost-drc.rb
48
49
  - lib/aus_post/drc.rb
49
50
  - lib/aus_post/drc/calculator.rb
50
51
  - lib/aus_post/drc/parcel.rb