mls 0.2.14 → 0.2.15

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,7 +11,6 @@ class MLS::Listing < MLS::Resource
11
11
 
12
12
  property :id, Fixnum, :serialize => :false
13
13
  property :address_id, Fixnum, :serialize => :false
14
- property :use_id, Fixnum
15
14
  property :use, String, :serialize => :if_present
16
15
  property :account_id, Fixnum
17
16
  property :private, Boolean, :default => false, :serialize => false
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "mls"
6
- s.version = '0.2.14'
6
+ s.version = '0.2.15'
7
7
  s.authors = ["James R. Bracy"]
8
8
  s.email = ["james@42floors.com"]
9
9
  s.homepage = "http://mls.42floors.com"
@@ -7,7 +7,6 @@ class TestListing < ::Test::Unit::TestCase
7
7
 
8
8
  assert listing.respond_to?(:id)
9
9
  assert listing.respond_to?(:address_id)
10
- assert listing.respond_to?(:use_id)
11
10
  assert listing.respond_to?(:use)
12
11
  assert listing.respond_to?(:account_id)
13
12
  assert listing.respond_to?(:hidden)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mls
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.14
4
+ version: 0.2.15
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-08 00:00:00.000000000 Z
12
+ date: 2013-01-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -209,7 +209,6 @@ files:
209
209
  - lib/mls/models/photo.rb
210
210
  - lib/mls/models/region.rb
211
211
  - lib/mls/models/tour_request.rb
212
- - lib/mls/models/use.rb
213
212
  - lib/mls/models/video.rb
214
213
  - lib/mls/parser.rb
215
214
  - lib/mls/properties/boolean.rb
@@ -1,3 +0,0 @@
1
- class MLS::Use < MLS::Resource
2
-
3
- end