gecko-ruby 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f5a72c752ffb93973673bb468edefc53182db33e
4
- data.tar.gz: 9eecc80222f8842d62945247c6c88412d70df18e
3
+ metadata.gz: c2bd2a2393ff6dd9e993c46f1e8db2154403a5f2
4
+ data.tar.gz: 92d6089553b46d1357821c96aed81e7870c878d7
5
5
  SHA512:
6
- metadata.gz: 2482e0803f14054319768bfafbe09aa7a046110e916707bfd189bdf7a22a2b6dd7af342a321dde807dc54cf4d5d893400e87c4cf89918db25b4c6294b4819ad4
7
- data.tar.gz: 484661956bedd45377d15a000ca3fdfcbeea63211a119f4a99dfb8b1ba43095055a1d8ba66cac0f6daae7500876a84e490abcb5882a0b44d275d34139146066c
6
+ metadata.gz: 0d2dd5309f536cd463a540464f3e886801155ba5c35c001cd454ad589f3cfb3418bb4b9e996260ce15358cd6ec40a72409db3b9e75a32cb3fa00f4cb76b06766
7
+ data.tar.gz: 134aebb58b9487d85a260c5f5be00d9a38c464018f4adcaed83bb5efaa79d861b911252cef2558ea37174d0047226a487fc11a16288f067d59e00db9313dd6ab
data/CHANGELOG.md CHANGED
@@ -1,7 +1,10 @@
1
+ ## 0.0.10 (2015-10-21)
2
+ - Add first_name/last_name to addresses
3
+
1
4
  ## 0.0.9 (2015-10-02)
2
5
  - Add tags to order
3
6
 
4
- ## 0.0.8 (2015-04-28)
7
+ ## 0.0.8 (2015-09-10)
5
8
  - Fetch VariantLocation#committed_stock as committed
6
9
  - Make image uploading work
7
10
 
@@ -5,10 +5,10 @@ module Gecko
5
5
  class Address < Base
6
6
  belongs_to :company
7
7
 
8
- attribute :phone_number, String
9
- attribute :email, String
10
-
11
8
  attribute :label, String
9
+
10
+ attribute :first_name, String
11
+ attribute :last_name, String
12
12
  attribute :company_name, String
13
13
  attribute :address1, String
14
14
  attribute :address2, String
@@ -18,6 +18,9 @@ module Gecko
18
18
  attribute :country, String
19
19
  attribute :zip_code, String
20
20
 
21
+ attribute :phone_number, String
22
+ attribute :email, String
23
+
21
24
  attribute :status, String, readonly: true
22
25
 
23
26
  alias_method :country_code, :country
data/lib/gecko/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Gecko
2
- VERSION = '0.0.9'
2
+ VERSION = '0.0.10'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gecko-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bradley Priest
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-02 00:00:00.000000000 Z
11
+ date: 2015-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler