frederick_api 0.1.3 → 0.1.4

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: ee366b5f2850705f2f10fe5109a9407da890a1f5
4
- data.tar.gz: e42fcbac6a892638da9fd39ffdeec4270ab7b752
3
+ metadata.gz: 168c1d398cb8a374ff0012cb491e0d902b6e1946
4
+ data.tar.gz: 8de93424f75ff7b42c636618a5a2c1b7c0ad87df
5
5
  SHA512:
6
- metadata.gz: f10057c5c901a53eea6a345b26268ed0eaa9031d53e430e4af172e2c6ccd0aade5e47c58b6a7848112d5c1a81848d1ed7e44c826600007fb9c7e83df6146ba6e
7
- data.tar.gz: 23f43c15957daa32d722c8f91a9b2c7c9fe3f49e80ad29eefcf5c4a978841b904b1ef2ccd15d8b00f40ae8e8ff536bbbe0871837ff80bdc35dd26ec41df04060
6
+ metadata.gz: 213760e836b093d66fdc8b3753c37b2884f76605ecb5b1795d575099fc5aab666875b8a3f3ca5db3301875f89acccfb360ab1ea6c33f2f6c17254793633fd0af
7
+ data.tar.gz: 3bc9291a3656f5883477db6f5dc50963f60ada8d56120294978b9b29d9c3649746773d4c482a613002dc956e932906a15cd25d767188c9be48da511f07420b9b
@@ -5,7 +5,7 @@ module FrederickAPI
5
5
  # /v2/locations/:location_id/contacts
6
6
  class Contact < Resource
7
7
  belongs_to :location
8
- self.read_only_attributes << :location_id
8
+ self.read_only_attributes += [:location_id]
9
9
  end
10
10
  end
11
11
  end
@@ -5,7 +5,7 @@ module FrederickAPI
5
5
  # /v2/locations/:location_id/contact_lists
6
6
  class ContactList < Resource
7
7
  belongs_to :location
8
- self.read_only_attributes << :location_id
8
+ self.read_only_attributes += [:location_id]
9
9
  end
10
10
  end
11
11
  end
@@ -5,7 +5,7 @@ module FrederickAPI
5
5
  # /v2/locations/:location_id/contact_properties
6
6
  class ContactProperty < Resource
7
7
  belongs_to :location
8
- self.read_only_attributes << :location_id
8
+ self.read_only_attributes += [:location_id]
9
9
  end
10
10
  end
11
11
  end
@@ -5,7 +5,7 @@ module FrederickAPI
5
5
  # /v2/locations/:location_id/contact_types
6
6
  class ContactType < Resource
7
7
  belongs_to :location
8
- self.read_only_attributes << :location_id
8
+ self.read_only_attributes += [:location_id]
9
9
  end
10
10
  end
11
11
  end
@@ -5,7 +5,7 @@ module FrederickAPI
5
5
  # /v2/locations/:location_id/interactions
6
6
  class Interaction < Resource
7
7
  belongs_to :location
8
- self.read_only_attributes << :location_id
8
+ self.read_only_attributes += [:location_id]
9
9
  end
10
10
  end
11
11
  end
@@ -2,5 +2,5 @@
2
2
 
3
3
  module FrederickAPI
4
4
  # Current gem version
5
- VERSION = '0.1.3'
5
+ VERSION = '0.1.4'
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: frederick_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Frederick Engineering
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-06-22 00:00:00.000000000 Z
11
+ date: 2017-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json_api_client