mls 0.5.12 → 0.6.0

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: b538f48580395c293b6db4787129c7e8f3ed33bc
4
- data.tar.gz: 45c71301f20ec1302b26ae4441d14abf60a5cfb8
3
+ metadata.gz: d948f83c31447ada55ca94e2a4f0d55e200cc077
4
+ data.tar.gz: 3a2ee2e0892793aa313e808b3727b06f18fe97f8
5
5
  SHA512:
6
- metadata.gz: 4f95e296d885454226caa908ffd695ce4bab523c7ce7f14d46c7bbb8305084cc72c3dadfbdb96675d8505dea1ff2a1ecf4e40a6c2a1fa274004047e652f6fccf
7
- data.tar.gz: 396bb5dd753bca200ea0116de20fe2dd4837ffa62605705852eaea462b3666e0dc7739b10ef1e56b58b71dfc815e9ad7726449e8820412f84947ef41ab92627e
6
+ metadata.gz: 6b44208810f0e08834ac2047edaaa5074eb35031b728f1dec7ed8050e28a7dd1b77ff578013dc3d6cd68b9a0b3e5bd7d674869a03e60c9165a3283a3ad882e8f
7
+ data.tar.gz: 8a0337a955755785b64d117f5c75e05505e0f65bde09d0e818993a3e745587e7aea6b8132692b32c22a4eeb5c9b1bb80bc5568b2483198108962d0d998ac4de1
@@ -27,7 +27,7 @@ class MLS::Listing < MLS::Resource
27
27
  property :space_type, String, :default => 'unit'
28
28
  property :unit, String
29
29
  property :floor, Fixnum
30
- property :comments, String
30
+ property :description, String
31
31
 
32
32
  property :size, Fixnum
33
33
  property :maximum_contiguous_size, Fixnum
@@ -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.5.12'
6
+ s.version = '0.6.0'
7
7
  s.authors = ["James R. Bracy", "Jon Bracy"]
8
8
  s.email = ["james@42floors.com"]
9
9
  s.homepage = "http://mls.42floors.com"
@@ -15,7 +15,7 @@ class TestListing < ::Test::Unit::TestCase
15
15
  assert listing.respond_to?(:space_type)
16
16
  assert listing.respond_to?(:unit)
17
17
  assert listing.respond_to?(:floor)
18
- assert listing.respond_to?(:comments)
18
+ assert listing.respond_to?(:description)
19
19
  assert listing.respond_to?(:size)
20
20
  assert listing.respond_to?(:maximum_contiguous_size)
21
21
  assert listing.respond_to?(:minimum_divisible_size)
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.5.12
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - James R. Bracy