nextstop 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ README.rdoc
2
+ lib/**/*.rb
3
+ bin/*
4
+ features/**/*.feature
5
+ LICENSE
@@ -0,0 +1,21 @@
1
+ ## MAC OS
2
+ .DS_Store
3
+
4
+ ## TEXTMATE
5
+ *.tmproj
6
+ tmtags
7
+
8
+ ## EMACS
9
+ *~
10
+ \#*
11
+ .\#*
12
+
13
+ ## VIM
14
+ *.swp
15
+
16
+ ## PROJECT::GENERAL
17
+ coverage
18
+ rdoc
19
+ pkg
20
+
21
+ ## PROJECT::SPECIFIC
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 Wynn Netherland
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,18 @@
1
+ = nextstop
2
+
3
+ Description goes here.
4
+
5
+ == Note on Patches/Pull Requests
6
+
7
+ * Fork the project.
8
+ * Make your feature addition or bug fix.
9
+ * Add tests for it. This is important so I don't break it in a
10
+ future version unintentionally.
11
+ * Commit, do not mess with rakefile, version, or history.
12
+ (if you want to have your own version, that is fine but
13
+ bump version in a commit by itself I can ignore when I pull)
14
+ * Send me a pull request. Bonus points for topic branches.
15
+
16
+ == Copyright
17
+
18
+ Copyright (c) 2009 Wynn Netherland. See LICENSE for details.
@@ -0,0 +1,61 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+
4
+ begin
5
+ require 'jeweler'
6
+ Jeweler::Tasks.new do |gem|
7
+ gem.name = "nextstop"
8
+ gem.summary = %Q{Ruby wrapper for the nextstop API}
9
+ gem.description = %Q{Find cool places and destination guides with the nextstop API}
10
+ gem.email = "wynn.netherland@gmail.com"
11
+ gem.homepage = "http://github.com/pengwynn/nextstop"
12
+ gem.authors = ["Wynn Netherland"]
13
+
14
+ gem.add_dependency('hashie', '~> 0.1.3')
15
+ gem.add_dependency('httparty', '~> 0.4.3')
16
+ gem.add_dependency('activesupport', '~> 2.3.2')
17
+
18
+ gem.add_development_dependency('thoughtbot-shoulda', '>= 2.10.1')
19
+ gem.add_development_dependency('jnunemaker-matchy', '0.4.0')
20
+ gem.add_development_dependency('mocha', '0.9.4')
21
+ gem.add_development_dependency('fakeweb', '>= 1.2.5')
22
+ # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
23
+ end
24
+ Jeweler::GemcutterTasks.new
25
+ rescue LoadError
26
+ puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
27
+ end
28
+
29
+ require 'rake/testtask'
30
+ Rake::TestTask.new(:test) do |test|
31
+ test.libs << 'lib' << 'test'
32
+ test.pattern = 'test/**/test_*.rb'
33
+ test.verbose = true
34
+ end
35
+
36
+ begin
37
+ require 'rcov/rcovtask'
38
+ Rcov::RcovTask.new do |test|
39
+ test.libs << 'test'
40
+ test.pattern = 'test/**/test_*.rb'
41
+ test.verbose = true
42
+ end
43
+ rescue LoadError
44
+ task :rcov do
45
+ abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
46
+ end
47
+ end
48
+
49
+ task :test => :check_dependencies
50
+
51
+ task :default => :test
52
+
53
+ require 'rake/rdoctask'
54
+ Rake::RDocTask.new do |rdoc|
55
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
56
+
57
+ rdoc.rdoc_dir = 'rdoc'
58
+ rdoc.title = "nextstop #{version}"
59
+ rdoc.rdoc_files.include('README*')
60
+ rdoc.rdoc_files.include('lib/**/*.rb')
61
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
@@ -0,0 +1,57 @@
1
+ require 'rubygems'
2
+
3
+ gem 'hashie', '~> 0.1.3'
4
+ require 'hashie'
5
+
6
+ gem 'httparty', '~> 0.4.3'
7
+ require 'httparty'
8
+
9
+ gem 'activesupport', '~> 2.3.2'
10
+ require 'activesupport'
11
+
12
+ class Nextstop
13
+
14
+ include HTTParty
15
+ base_uri 'api.nextstop.com'
16
+ format :json
17
+
18
+ attr_accessor :api_key
19
+
20
+ def initialize(api_key)
21
+ self.api_key = api_key
22
+ end
23
+
24
+ def search(options={})
25
+ mashup(self.class.get("/search/", :query => default_options.merge(options)))
26
+ end
27
+
28
+ def search_guides(options={})
29
+ search options.merge({:result_type => 'guides'})
30
+ end
31
+
32
+ def search_places(options={})
33
+ search options.merge({:result_type => 'places'})
34
+ end
35
+
36
+ def place(place_id, options={})
37
+ mashup(self.class.get("/p/#{place_id}/", :query => default_options.merge(options)))
38
+ end
39
+
40
+ def guide(guide_id, options={})
41
+ mashup(self.class.get("/guide/#{guide_id}/", :query => default_options.merge(options)))
42
+ end
43
+
44
+ private
45
+ def default_options
46
+ {:key => self.api_key}
47
+ end
48
+
49
+ def mashup(response)
50
+ if response['status'].to_i == 200
51
+ Hashie::Mash.new(response['data'])
52
+ else
53
+ Hashie::Mash.new response
54
+ end
55
+ end
56
+
57
+ end
@@ -0,0 +1,352 @@
1
+ {
2
+ "status": 200,
3
+ "message": "",
4
+ "data": {
5
+ "guideCoverImageUrl": "http://www.nextstop.com/widget/i/minilisticon/nzp9KFPK4ok.png",
6
+ "permalink": "http://www.nextstop.com/guide/nzp9KFPK4ok/alicias-favorites-in-the-dfw-metroplex/",
7
+ "guideContent": {
8
+ "count": 8,
9
+ "places": [{
10
+ "website": "",
11
+ "locationName": "Dallas",
12
+ "permalink": "http://www.nextstop.com/p/uykb-HM6hSo/dallas-zoo/",
13
+ "name": "Dallas Zoo",
14
+ "category": "what-to-do",
15
+ "geoAccuracy": "point",
16
+ "apiEndpoint": "http://api.nextstop.com/p/uykb-HM6hSo/dallas-zoo/",
17
+ "phone": "(214) 670-5656",
18
+ "address": "621 E Clarendon Dr",
19
+ "lat": 32.739260000000002,
20
+ "lng": -96.815138000000005,
21
+ "locationUrl": "http://www.nextstop.com/loc/ulwu4bmQeFk/dallas/",
22
+ "recommendationsInfo": {
23
+ "count": 2,
24
+ "guideRecommendation": {
25
+ "cardImageUrl": "http://www.nextstop.com/widget/i/minicard/Z9FUOD_PfTo.png",
26
+ "permalink": "http://www.nextstop.com/p/uykb-HM6hSo/dallas-zoo/?card=Z9FUOD_PfTo&",
27
+ "name": "Dallas Zoo",
28
+ "authorInfo": {
29
+ "role": "owner",
30
+ "authorName": "AliciaLakey",
31
+ "authorPhotoUrl": "http://images.nextstop.com/profilepic_ikNKbK2gsXM_nearexpires_80sq",
32
+ "authorUrl": "http://www.nextstop.com/profile/ikNKbK2gsXM/"
33
+ },
34
+ "smallCachedImageUrl": "http://images.nextstop.com/5be2bc93-0755-4f20-8ab3-4d555980321c_150sq",
35
+ "largeCachedImageUrl": "http://images.nextstop.com/5be2bc93-0755-4f20-8ab3-4d555980321c_300sq",
36
+ "dateCreated": "2009-06-28 12:01:22",
37
+ "onGuide": {
38
+ "apiEndpoint": "http://api.nextstop.com/guide/nzp9KFPK4ok/alicias-favorites-in-the-dfw-metroplex/",
39
+ "permalink": "http://www.nextstop.com/guide/nzp9KFPK4ok/alicias-favorites-in-the-dfw-metroplex/",
40
+ "name": "Alicia's Favorites in the DFW Metroplex"
41
+ },
42
+ "originalImageSource": "http://www.planetware.com/picture/dallas-dallas-zoo-us-tx195.htm",
43
+ "originalImageUrl": "http://www.planetware.com/i/photo/dallas-zoo-dallas-tx195.jpg",
44
+ "shortText": "I love Zoos! This one's a good aerobic workout because it's built on rolling terrain.",
45
+ "fullText": "I love Zoos! This one's a good aerobic workout because it's built on rolling terrain."
46
+ }
47
+ }
48
+ },
49
+ {
50
+ "website": "",
51
+ "locationName": "Dallas",
52
+ "permalink": "http://www.nextstop.com/p/sDpHsNtgs4c/dallas-world-aquarium/",
53
+ "name": "Dallas World Aquarium",
54
+ "category": "what-to-do",
55
+ "geoAccuracy": "point",
56
+ "apiEndpoint": "http://api.nextstop.com/p/sDpHsNtgs4c/dallas-world-aquarium/",
57
+ "phone": "(214) 720-1801",
58
+ "address": "1801 N Griffin St",
59
+ "lat": 32.783295000000003,
60
+ "lng": -96.805195999999995,
61
+ "locationUrl": "http://www.nextstop.com/loc/ulwu4bmQeFk/dallas/",
62
+ "recommendationsInfo": {
63
+ "count": 6,
64
+ "guideRecommendation": {
65
+ "cardImageUrl": "http://www.nextstop.com/widget/i/minicard/eszrMyPPx_g.png",
66
+ "permalink": "http://www.nextstop.com/p/sDpHsNtgs4c/dallas-world-aquarium/?card=eszrMyPPx_g&",
67
+ "name": "Dallas World Aquarium",
68
+ "authorInfo": {
69
+ "role": "owner",
70
+ "authorName": "AliciaLakey",
71
+ "authorPhotoUrl": "http://images.nextstop.com/profilepic_ikNKbK2gsXM_nearexpires_80sq",
72
+ "authorUrl": "http://www.nextstop.com/profile/ikNKbK2gsXM/"
73
+ },
74
+ "smallCachedImageUrl": "http://images.nextstop.com/45f78fe0-d16b-40c4-90a6-2b4553520aaa_150sq",
75
+ "largeCachedImageUrl": "http://images.nextstop.com/45f78fe0-d16b-40c4-90a6-2b4553520aaa_300sq",
76
+ "dateCreated": "2009-06-28 12:04:37",
77
+ "onGuide": {
78
+ "apiEndpoint": "http://api.nextstop.com/guide/nzp9KFPK4ok/alicias-favorites-in-the-dfw-metroplex/",
79
+ "permalink": "http://www.nextstop.com/guide/nzp9KFPK4ok/alicias-favorites-in-the-dfw-metroplex/",
80
+ "name": "Alicia's Favorites in the DFW Metroplex"
81
+ },
82
+ "originalImageSource": "http://www.flickr.com/photos/branditressler/2623711888/",
83
+ "originalImageUrl": "http://farm4.static.flickr.com/3155/2623711888_44c1805b3b.jpg",
84
+ "shortText": "You walk in and hear many exotic bird calls. It feels like you're stepping into a rainforest, but it has all this amazing fauna & flora from around the world: p",
85
+ "fullText": "You walk in and hear many exotic bird calls. It feels like you're stepping into a rainforest, but it has all this amazing fauna & flora from around the world: penguins, sharks, seahorses, toucans, etc. The restaurant's cool too. You get to eat different foods from around the world. A lovely gem!"
86
+ }
87
+ }
88
+ },
89
+ {
90
+ "website": "",
91
+ "locationName": "Dallas",
92
+ "permalink": "http://www.nextstop.com/p/TWnmxJevzzQ/fair-park/",
93
+ "name": "Fair Park",
94
+ "category": "what-to-do",
95
+ "geoAccuracy": "point",
96
+ "apiEndpoint": "http://api.nextstop.com/p/TWnmxJevzzQ/fair-park/",
97
+ "phone": "(214) 670-8400",
98
+ "address": "1300 Robert B Cullum Blvd",
99
+ "lat": 32.776190999999997,
100
+ "lng": -96.764415999999997,
101
+ "locationUrl": "http://www.nextstop.com/loc/ulwu4bmQeFk/dallas/",
102
+ "recommendationsInfo": {
103
+ "count": 1,
104
+ "guideRecommendation": {
105
+ "cardImageUrl": "http://www.nextstop.com/widget/i/minicard/5dgeODGq9Ck.png",
106
+ "permalink": "http://www.nextstop.com/p/TWnmxJevzzQ/fair-park/?card=5dgeODGq9Ck&",
107
+ "name": "Fair Park",
108
+ "authorInfo": {
109
+ "role": "owner",
110
+ "authorName": "AliciaLakey",
111
+ "authorPhotoUrl": "http://images.nextstop.com/profilepic_ikNKbK2gsXM_nearexpires_80sq",
112
+ "authorUrl": "http://www.nextstop.com/profile/ikNKbK2gsXM/"
113
+ },
114
+ "smallCachedImageUrl": "http://images.nextstop.com/a239970c-e598-4e2d-9c85-653cf1313c64_150sq",
115
+ "largeCachedImageUrl": "http://images.nextstop.com/a239970c-e598-4e2d-9c85-653cf1313c64_300sq",
116
+ "dateCreated": "2009-06-28 12:09:05",
117
+ "onGuide": {
118
+ "apiEndpoint": "http://api.nextstop.com/guide/nzp9KFPK4ok/alicias-favorites-in-the-dfw-metroplex/",
119
+ "permalink": "http://www.nextstop.com/guide/nzp9KFPK4ok/alicias-favorites-in-the-dfw-metroplex/",
120
+ "name": "Alicia's Favorites in the DFW Metroplex"
121
+ },
122
+ "originalImageSource": "http://www.flickr.com/photos/stephl/265763848/",
123
+ "originalImageUrl": "http://farm1.static.flickr.com/97/265763848_9bd50f8394.jpg",
124
+ "shortText": "In addition to the annual State Fair, there are museums too! I just learned that this place has the largest collection of Art Deco period buildings in the USA!",
125
+ "fullText": "In addition to the annual State Fair, there are museums too! I just learned that this place has the largest collection of Art Deco period buildings in the USA!"
126
+ }
127
+ }
128
+ },
129
+ {
130
+ "website": "",
131
+ "locationName": "Dallas",
132
+ "permalink": "http://www.nextstop.com/p/iJyKp94Wm40/dallas-museum-of-art/",
133
+ "name": "Dallas Museum of Art",
134
+ "category": "what-to-do",
135
+ "geoAccuracy": "point",
136
+ "apiEndpoint": "http://api.nextstop.com/p/iJyKp94Wm40/dallas-museum-of-art/",
137
+ "phone": "(214) 922-1200",
138
+ "address": "1717 N. Harwood St.",
139
+ "lat": 32.787275000000001,
140
+ "lng": -96.800212000000002,
141
+ "locationUrl": "http://www.nextstop.com/loc/ulwu4bmQeFk/dallas/",
142
+ "recommendationsInfo": {
143
+ "count": 2,
144
+ "guideRecommendation": {
145
+ "cardImageUrl": "http://www.nextstop.com/widget/i/minicard/0uawuzGAKzc.png",
146
+ "permalink": "http://www.nextstop.com/p/iJyKp94Wm40/dallas-museum-of-art/?card=0uawuzGAKzc&",
147
+ "name": "Dallas Museum of Art",
148
+ "authorInfo": {
149
+ "role": "owner",
150
+ "authorName": "AliciaLakey",
151
+ "authorPhotoUrl": "http://images.nextstop.com/profilepic_ikNKbK2gsXM_nearexpires_80sq",
152
+ "authorUrl": "http://www.nextstop.com/profile/ikNKbK2gsXM/"
153
+ },
154
+ "smallCachedImageUrl": "http://images.nextstop.com/f9d89185-4918-44a3-b2fe-98dcdc6e1d64_150sq",
155
+ "largeCachedImageUrl": "http://images.nextstop.com/f9d89185-4918-44a3-b2fe-98dcdc6e1d64_300sq",
156
+ "dateCreated": "2009-06-28 12:13:17",
157
+ "onGuide": {
158
+ "apiEndpoint": "http://api.nextstop.com/guide/nzp9KFPK4ok/alicias-favorites-in-the-dfw-metroplex/",
159
+ "permalink": "http://www.nextstop.com/guide/nzp9KFPK4ok/alicias-favorites-in-the-dfw-metroplex/",
160
+ "name": "Alicia's Favorites in the DFW Metroplex"
161
+ },
162
+ "originalImageSource": "http://blog.newsok.com/bamsblog/2009/03/27/getting-artsy-in-dallas/",
163
+ "originalImageUrl": "http://blog.newsok.com/bamsblog/files/2009/03/dallas-museum-king-tut.jpg",
164
+ "shortText": "I love Museums! I also like the collections permanently housed here & the ever-changing galleries. I've seen some beautiful things here; most recently the King ",
165
+ "fullText": "I love Museums! I also like the collections permanently housed here & the ever-changing galleries. I've seen some beautiful things here; most recently the King Tut exhibit. It was awesome!"
166
+ }
167
+ }
168
+ },
169
+ {
170
+ "website": "",
171
+ "locationName": "Fort Worth",
172
+ "permalink": "http://www.nextstop.com/p/tk0WRmVo0uU/fort-worth-botanic-garden/",
173
+ "name": "Fort Worth Botanic Garden",
174
+ "category": "what-to-do",
175
+ "geoAccuracy": "point",
176
+ "apiEndpoint": "http://api.nextstop.com/p/tk0WRmVo0uU/fort-worth-botanic-garden/",
177
+ "phone": "(817) 871-7686",
178
+ "address": "3220 Botanic Garden Blvd",
179
+ "lat": 32.740473000000001,
180
+ "lng": -97.362658999999994,
181
+ "locationUrl": "http://www.nextstop.com/loc/jHy8gOZKLwg/fort-worth/",
182
+ "recommendationsInfo": {
183
+ "count": 8,
184
+ "guideRecommendation": {
185
+ "cardImageUrl": "http://www.nextstop.com/widget/i/minicard/zV1sqra558k.png",
186
+ "permalink": "http://www.nextstop.com/p/tk0WRmVo0uU/fort-worth-botanic-garden/?card=zV1sqra558k&",
187
+ "name": "Fort Worth Botanic Garden",
188
+ "authorInfo": {
189
+ "role": "owner",
190
+ "authorName": "AliciaLakey",
191
+ "authorPhotoUrl": "http://images.nextstop.com/profilepic_ikNKbK2gsXM_nearexpires_80sq",
192
+ "authorUrl": "http://www.nextstop.com/profile/ikNKbK2gsXM/"
193
+ },
194
+ "smallCachedImageUrl": "http://images.nextstop.com/861bed2e-8657-4838-8f3c-cbe593e3476f_150sq",
195
+ "largeCachedImageUrl": "http://images.nextstop.com/861bed2e-8657-4838-8f3c-cbe593e3476f_300sq",
196
+ "dateCreated": "2009-06-28 12:17:53",
197
+ "onGuide": {
198
+ "apiEndpoint": "http://api.nextstop.com/guide/nzp9KFPK4ok/alicias-favorites-in-the-dfw-metroplex/",
199
+ "permalink": "http://www.nextstop.com/guide/nzp9KFPK4ok/alicias-favorites-in-the-dfw-metroplex/",
200
+ "name": "Alicia's Favorites in the DFW Metroplex"
201
+ },
202
+ "originalImageSource": "http://flickr.com/photos/diorama_sky/78243288/",
203
+ "originalImageUrl": "http://farm1.static.flickr.com/43/78243288_09fac32e59.jpg?v=0",
204
+ "shortText": "Lovely garden grounds--world-class. There's seem to be a hint of an Asian theme throughout. In fact, one of my favorite sections is the Japanese Sand Garden. L",
205
+ "fullText": "Lovely garden grounds--world-class. There's seem to be a hint of an Asian theme throughout. In fact, one of my favorite sections is the Japanese Sand Garden. Lots of lovely Koi ponds too."
206
+ }
207
+ }
208
+ },
209
+ {
210
+ "website": "",
211
+ "locationName": "Fort Worth",
212
+ "permalink": "http://www.nextstop.com/p/LgEWkoyT04M/kimbell-art-museum/",
213
+ "name": "Kimbell Art Museum",
214
+ "category": "what-to-do",
215
+ "geoAccuracy": "point",
216
+ "apiEndpoint": "http://api.nextstop.com/p/LgEWkoyT04M/kimbell-art-museum/",
217
+ "phone": "(817) 332-8451",
218
+ "address": "3333 Camp Bowie Blvd",
219
+ "lat": 32.749675000000003,
220
+ "lng": -97.365029000000007,
221
+ "locationUrl": "http://www.nextstop.com/loc/jHy8gOZKLwg/fort-worth/",
222
+ "recommendationsInfo": {
223
+ "count": 5,
224
+ "guideRecommendation": {
225
+ "cardImageUrl": "http://www.nextstop.com/widget/i/minicard/ibPRnB2gXrY.png",
226
+ "permalink": "http://www.nextstop.com/p/LgEWkoyT04M/kimbell-art-museum/?card=ibPRnB2gXrY&",
227
+ "name": "Kimbell Art Museum",
228
+ "authorInfo": {
229
+ "role": "owner",
230
+ "authorName": "AliciaLakey",
231
+ "authorPhotoUrl": "http://images.nextstop.com/profilepic_ikNKbK2gsXM_nearexpires_80sq",
232
+ "authorUrl": "http://www.nextstop.com/profile/ikNKbK2gsXM/"
233
+ },
234
+ "smallCachedImageUrl": "http://images.nextstop.com/fdbbceaa-d2f9-4836-92d2-7fd34f39f35a_150sq",
235
+ "largeCachedImageUrl": "http://images.nextstop.com/fdbbceaa-d2f9-4836-92d2-7fd34f39f35a_300sq",
236
+ "dateCreated": "2009-06-28 12:21:16",
237
+ "onGuide": {
238
+ "apiEndpoint": "http://api.nextstop.com/guide/nzp9KFPK4ok/alicias-favorites-in-the-dfw-metroplex/",
239
+ "permalink": "http://www.nextstop.com/guide/nzp9KFPK4ok/alicias-favorites-in-the-dfw-metroplex/",
240
+ "name": "Alicia's Favorites in the DFW Metroplex"
241
+ },
242
+ "originalImageSource": "http://www.flickr.com/photos/25831000@N08/2431636895/",
243
+ "originalImageUrl": "http://farm3.static.flickr.com/2038/2431636895_a50b196b70.jpg",
244
+ "shortText": "The Museum itself is a work of art! World-Class! And then there are numerous & lovely collections that I enjoyed seeing. I had a great experience there & can't ",
245
+ "fullText": "The Museum itself is a work of art! World-Class! And then there are numerous & lovely collections that I enjoyed seeing. I had a great experience there & can't wait to revisit."
246
+ }
247
+ }
248
+ },
249
+ {
250
+ "website": "http://www.themodern.org/",
251
+ "locationName": "Fort Worth",
252
+ "permalink": "http://www.nextstop.com/p/JzPugIY2j-Y/modern-art-museum-fort-worth/",
253
+ "name": "Modern Art Museum-Fort Worth",
254
+ "category": "what-to-do",
255
+ "geoAccuracy": "point",
256
+ "apiEndpoint": "http://api.nextstop.com/p/JzPugIY2j-Y/modern-art-museum-fort-worth/",
257
+ "phone": "(817) 738-9215",
258
+ "address": "3200 Darnell St",
259
+ "lat": 32.749519999999997,
260
+ "lng": -97.363151999999999,
261
+ "locationUrl": "http://www.nextstop.com/loc/jHy8gOZKLwg/fort-worth/",
262
+ "recommendationsInfo": {
263
+ "count": 4,
264
+ "guideRecommendation": {
265
+ "cardImageUrl": "http://www.nextstop.com/widget/i/minicard/U-DalZTS-Xg.png",
266
+ "permalink": "http://www.nextstop.com/p/JzPugIY2j-Y/modern-art-museum-fort-worth/?card=U-DalZTS-Xg&",
267
+ "name": "Modern Art Museum-Fort Worth",
268
+ "authorInfo": {
269
+ "role": "owner",
270
+ "authorName": "AliciaLakey",
271
+ "authorPhotoUrl": "http://images.nextstop.com/profilepic_ikNKbK2gsXM_nearexpires_80sq",
272
+ "authorUrl": "http://www.nextstop.com/profile/ikNKbK2gsXM/"
273
+ },
274
+ "smallCachedImageUrl": "http://images.nextstop.com/9d231818-28c1-4fc4-b4d1-6bd46d13ead9_150sq",
275
+ "largeCachedImageUrl": "http://images.nextstop.com/9d231818-28c1-4fc4-b4d1-6bd46d13ead9_300sq",
276
+ "dateCreated": "2009-06-28 12:28:26",
277
+ "onGuide": {
278
+ "apiEndpoint": "http://api.nextstop.com/guide/nzp9KFPK4ok/alicias-favorites-in-the-dfw-metroplex/",
279
+ "permalink": "http://www.nextstop.com/guide/nzp9KFPK4ok/alicias-favorites-in-the-dfw-metroplex/",
280
+ "name": "Alicia's Favorites in the DFW Metroplex"
281
+ },
282
+ "originalImageSource": "http://www.myspace.com/headlightsforeyes",
283
+ "originalImageUrl": "http://i61.photobucket.com/albums/h65/brianb80/ModernArtMuseumofFortWorth1.jpg",
284
+ "shortText": "Across from the Kimball Museum; both Museums' collections are a treat for the eye and phantasmagorical.",
285
+ "fullText": "Across from the Kimball Museum; both Museums' collections are a treat for the eye and phantasmagorical."
286
+ }
287
+ }
288
+ },
289
+ {
290
+ "website": "",
291
+ "locationName": "Dallas",
292
+ "permalink": "http://www.nextstop.com/p/X6YBesgo6hg/south-dallas-cultural-center/",
293
+ "name": "South Dallas Cultural Center",
294
+ "category": "what-to-do",
295
+ "geoAccuracy": "point",
296
+ "apiEndpoint": "http://api.nextstop.com/p/X6YBesgo6hg/south-dallas-cultural-center/",
297
+ "phone": "(214) 939-2787",
298
+ "address": "3400 S Fitzhugh Ave",
299
+ "lat": 32.771473,
300
+ "lng": -96.757773,
301
+ "locationUrl": "http://www.nextstop.com/loc/ulwu4bmQeFk/dallas/",
302
+ "recommendationsInfo": {
303
+ "count": 1,
304
+ "guideRecommendation": {
305
+ "cardImageUrl": "http://www.nextstop.com/widget/i/minicard/1RMFMHV9syk.png",
306
+ "permalink": "http://www.nextstop.com/p/X6YBesgo6hg/south-dallas-cultural-center/?card=1RMFMHV9syk&",
307
+ "name": "South Dallas Cultural Center",
308
+ "authorInfo": {
309
+ "role": "owner",
310
+ "authorName": "AliciaLakey",
311
+ "authorPhotoUrl": "http://images.nextstop.com/profilepic_ikNKbK2gsXM_nearexpires_80sq",
312
+ "authorUrl": "http://www.nextstop.com/profile/ikNKbK2gsXM/"
313
+ },
314
+ "smallCachedImageUrl": "http://images.nextstop.com/de2499b5-875c-499e-8cff-68219234b1a4_150sq",
315
+ "largeCachedImageUrl": "http://images.nextstop.com/de2499b5-875c-499e-8cff-68219234b1a4_300sq",
316
+ "dateCreated": "2009-06-28 12:34:55",
317
+ "onGuide": {
318
+ "apiEndpoint": "http://api.nextstop.com/guide/nzp9KFPK4ok/alicias-favorites-in-the-dfw-metroplex/",
319
+ "permalink": "http://www.nextstop.com/guide/nzp9KFPK4ok/alicias-favorites-in-the-dfw-metroplex/",
320
+ "name": "Alicia's Favorites in the DFW Metroplex"
321
+ },
322
+ "originalImageSource": "http://www.soulofamerica.com/cultural-sites-us.phtml",
323
+ "originalImageUrl": "http://www.soulofamerica.com/phpwcms/picture/upload/Image/us_cities/Dal_SDCC_mural_night.jpg",
324
+ "shortText": "Unique place - part museum, library, art gallery; dance/music studio; poetry stage; movie theater; photo lab and mixed-media classrooms. A great heritage place ",
325
+ "fullText": "Unique place - part museum, library, art gallery; dance/music studio; poetry stage; movie theater; photo lab and mixed-media classrooms. A great heritage place for families to explore."
326
+ }
327
+ }
328
+ }]
329
+ },
330
+ "name": "Alicia's Favorites in the DFW Metroplex",
331
+ "authorInfo": {
332
+ "count": 1,
333
+ "authorList": [{
334
+ "role": "owner",
335
+ "authorName": "AliciaLakey",
336
+ "authorPhotoUrl": "http://images.nextstop.com/profilepic_ikNKbK2gsXM_nearexpires_80sq",
337
+ "authorUrl": "http://www.nextstop.com/profile/ikNKbK2gsXM/"
338
+ }],
339
+ "primaryAuthor": {
340
+ "role": "owner",
341
+ "authorName": "AliciaLakey",
342
+ "authorPhotoUrl": "http://images.nextstop.com/profilepic_ikNKbK2gsXM_nearexpires_80sq",
343
+ "authorUrl": "http://www.nextstop.com/profile/ikNKbK2gsXM/"
344
+ }
345
+ },
346
+ "lastUpdated": "2009-06-28 12:38:19",
347
+ "apiEndpoint": "http://api.nextstop.com/guide/nzp9KFPK4ok/alicias-favorites-in-the-dfw-metroplex/",
348
+ "locationUrl": "http://www.nextstop.com/loc/gMcze78yimc/texas/",
349
+ "locationName": "Texas",
350
+ "description": "I work in Dallas, but live in Garland. The DFW area is a huge spread of diversity w/ many gems to explore!"
351
+ }
352
+ }