lc-api 0.9.5 → 0.9.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
module LcApi
|
|
2
2
|
class Location < Resource
|
|
3
|
-
ATTRIBUTES = %w[id slug facebook_id street_1 street_2 city state zip latitude longitude phone email date_founded]
|
|
3
|
+
ATTRIBUTES = %w[id slug facebook_id street_1 street_2 city state zip latitude longitude phone email date_founded staff]
|
|
4
4
|
define_attribute_methods(ATTRIBUTES)
|
|
5
5
|
end
|
|
6
6
|
end
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
module LcApi
|
|
2
2
|
class Message < Resource
|
|
3
|
-
ATTRIBUTES = %w[id title part length series_id speaker_id resource_url youversionlive_id date_released formats]
|
|
3
|
+
ATTRIBUTES = %w[id title part length series_id speaker_id resource_url youversionlive_id date_released formats series speaker]
|
|
4
4
|
define_attribute_methods(ATTRIBUTES)
|
|
5
5
|
end
|
|
6
6
|
end
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
module LcApi
|
|
2
2
|
class Series < Resource
|
|
3
|
-
ATTRIBUTES = %w[id title description hashtag slug parts promo viewable start_date end_date]
|
|
3
|
+
ATTRIBUTES = %w[id title description hashtag slug parts promo viewable start_date end_date messages]
|
|
4
4
|
define_attribute_methods(ATTRIBUTES)
|
|
5
5
|
end
|
|
6
6
|
end
|