ffmike-rshoeboxed 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -2,3 +2,9 @@
2
2
 
3
3
  * 1 major enhancement:
4
4
  * Initial release
5
+
6
+ ...
7
+
8
+ == 0.1.2 2009-07-28
9
+
10
+ * Added receipt#note
@@ -9,7 +9,7 @@ module RShoeboxed
9
9
  @@available_count
10
10
  end
11
11
  attr_accessor :id, :store, :image_url, :categories
12
- attr_reader :sell_date, :created_date, :modified_date, :total
12
+ attr_reader :sell_date, :created_date, :modified_date, :total, :note
13
13
 
14
14
  def self.parse(xml)
15
15
  document = REXML::Document.new(xml)
@@ -19,6 +19,7 @@ module RShoeboxed
19
19
  begin
20
20
  receipt.id = receipt_element.attributes["id"]
21
21
  receipt.store = receipt_element.attributes["store"]
22
+ receipt.note = receipt_element.attributes["note"]
22
23
  receipt.sell_date = receipt_element.attributes["selldate"]
23
24
  receipt.created_date = receipt_element.attributes["createdDate"]
24
25
  receipt.modified_date = receipt_element.attributes["modifiedDate"]
data/lib/rshoeboxed.rb CHANGED
@@ -10,5 +10,5 @@ require 'rshoeboxed/list_proxy'
10
10
  require 'rshoeboxed/parse_error'
11
11
 
12
12
  module RShoeboxed
13
- VERSION = '0.1.1'
13
+ VERSION = '0.1.2'
14
14
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ffmike-rshoeboxed
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Curren
@@ -101,6 +101,7 @@ files:
101
101
  - lib/rshoeboxed/business_card.rb
102
102
  has_rdoc: true
103
103
  homepage: http://github.com/bcurren/rshoeboxed
104
+ licenses:
104
105
  post_install_message:
105
106
  rdoc_options:
106
107
  - --main
@@ -122,7 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
122
123
  requirements: []
123
124
 
124
125
  rubyforge_project: rshoeboxed
125
- rubygems_version: 1.2.0
126
+ rubygems_version: 1.3.5
126
127
  signing_key:
127
128
  specification_version: 2
128
129
  summary: Ruby wrapper for the Shoeboxed API.