rMeetup 1.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +21 -0
  3. data/README.md +65 -0
  4. data/Rakefile +6 -12
  5. data/lib/core_ext/string.rb +11 -0
  6. data/lib/rmeetup.rb +2 -63
  7. data/lib/rmeetup/client.rb +77 -0
  8. data/lib/rmeetup/errors.rb +15 -0
  9. data/lib/rmeetup/fetcher.rb +20 -33
  10. data/lib/rmeetup/fetcher/base.rb +66 -55
  11. data/lib/rmeetup/fetcher/open_events.rb +14 -0
  12. data/lib/rmeetup/fetcher/venues.rb +14 -0
  13. data/lib/rmeetup/poster.rb +17 -0
  14. data/lib/rmeetup/poster/base.rb +81 -0
  15. data/lib/rmeetup/{fetcher/comments.rb → poster/event_comment.rb} +5 -5
  16. data/lib/rmeetup/type.rb +2 -1
  17. data/lib/rmeetup/type/event.rb +21 -18
  18. data/lib/rmeetup/type/event_comment.rb +42 -0
  19. data/lib/rmeetup/type/rsvp.rb +9 -5
  20. data/lib/rmeetup/type/venue.rb +63 -0
  21. data/lib/rmeetup/version.rb +14 -0
  22. data/rmeetup.gemspec +34 -0
  23. data/spec/client_spec.rb +77 -29
  24. data/spec/fetcher_spec.rb +4 -4
  25. data/spec/fixtures/vcr_cassettes/fetching_cities.yml +358 -0
  26. data/spec/fixtures/vcr_cassettes/fetching_events.yml +54 -0
  27. data/spec/fixtures/vcr_cassettes/fetching_groups.yml +8627 -0
  28. data/spec/fixtures/vcr_cassettes/fetching_members.yml +3984 -0
  29. data/spec/fixtures/vcr_cassettes/fetching_photos.yml +54 -0
  30. data/spec/fixtures/vcr_cassettes/fetching_rsvps.yml +54 -0
  31. data/spec/spec_helper.rb +11 -69
  32. metadata +140 -101
  33. data/Manifest +0 -45
  34. data/README.rdoc +0 -34
  35. data/lib/rmeetup/fetcher/topics.rb +0 -14
  36. data/rMeetup.gemspec +0 -29
  37. data/spec/fetchers/base_spec.rb +0 -58
  38. data/spec/fetchers/cities_spec.rb +0 -18
  39. data/spec/fetchers/comments_spec.rb +0 -14
  40. data/spec/fetchers/events_spec.rb +0 -14
  41. data/spec/fetchers/groups_spec.rb +0 -14
  42. data/spec/fetchers/members_spec.rb +0 -14
  43. data/spec/fetchers/photos_spec.rb +0 -14
  44. data/spec/fetchers/rsvps_spec.rb +0 -14
  45. data/spec/fetchers/topics_spec.rb +0 -14
  46. data/spec/responses/cities.json +0 -1
  47. data/spec/responses/comments.json +0 -1
  48. data/spec/responses/error.json +0 -1
  49. data/spec/responses/events.json +0 -1
  50. data/spec/responses/groups.json +0 -1
  51. data/spec/responses/members.json +0 -1
  52. data/spec/responses/photos.json +0 -1
  53. data/spec/responses/rsvps.json +0 -1
  54. data/spec/responses/topics.json +0 -1
data/Manifest DELETED
@@ -1,45 +0,0 @@
1
- Manifest
2
- README.rdoc
3
- Rakefile
4
- lib/rmeetup.rb
5
- lib/rmeetup/collection.rb
6
- lib/rmeetup/fetcher.rb
7
- lib/rmeetup/fetcher/base.rb
8
- lib/rmeetup/fetcher/cities.rb
9
- lib/rmeetup/fetcher/comments.rb
10
- lib/rmeetup/fetcher/events.rb
11
- lib/rmeetup/fetcher/groups.rb
12
- lib/rmeetup/fetcher/members.rb
13
- lib/rmeetup/fetcher/photos.rb
14
- lib/rmeetup/fetcher/rsvps.rb
15
- lib/rmeetup/fetcher/topics.rb
16
- lib/rmeetup/type.rb
17
- lib/rmeetup/type/city.rb
18
- lib/rmeetup/type/comment.rb
19
- lib/rmeetup/type/event.rb
20
- lib/rmeetup/type/group.rb
21
- lib/rmeetup/type/member.rb
22
- lib/rmeetup/type/photo.rb
23
- lib/rmeetup/type/rsvp.rb
24
- lib/rmeetup/type/topic.rb
25
- spec/client_spec.rb
26
- spec/fetcher_spec.rb
27
- spec/fetchers/base_spec.rb
28
- spec/fetchers/cities_spec.rb
29
- spec/fetchers/comments_spec.rb
30
- spec/fetchers/events_spec.rb
31
- spec/fetchers/groups_spec.rb
32
- spec/fetchers/members_spec.rb
33
- spec/fetchers/photos_spec.rb
34
- spec/fetchers/rsvps_spec.rb
35
- spec/fetchers/topics_spec.rb
36
- spec/responses/cities.json
37
- spec/responses/comments.json
38
- spec/responses/error.json
39
- spec/responses/events.json
40
- spec/responses/groups.json
41
- spec/responses/members.json
42
- spec/responses/photos.json
43
- spec/responses/rsvps.json
44
- spec/responses/topics.json
45
- spec/spec_helper.rb
@@ -1,34 +0,0 @@
1
- = rMeetup
2
-
3
- A simple Ruby gem to access the Meetup API.
4
-
5
- == Code Sample
6
-
7
- Sample code is worth a thousand words:
8
-
9
- RMeetup::Client.api_key = "API_KEY"
10
- results = RMeetup::Client.fetch(:events,{:zip => "ZIP_CODE"})
11
- results.each do |result|
12
- # Do something with the result
13
- end
14
-
15
- RMeetup::Client.fetch takes a data model type and set of options as arguments. Possible data models are:
16
-
17
- * :topics
18
- * :cities
19
- * :members
20
- * :rsvps
21
- * :events
22
- * :groups
23
- * :comments
24
- * :photos
25
-
26
- The options that may be passed can be found on the Meetup API documentation. Please see http://www.meetup.com/meetup_api/docs/ and look up the model that you are calling (i.e. for :events, look at the API call "GET /events" at http://www.meetup.com/meetup_api/docs/events/).
27
-
28
- == Installation
29
-
30
-
31
-
32
- == Credit
33
-
34
- Credit goes to Jared Pace for building the initial iteration of this gem. I just forked it, expanded and documented it a but.
@@ -1,14 +0,0 @@
1
- module RMeetup
2
- module Fetcher
3
- class Topics < Base
4
- def initialize
5
- @type = :topics
6
- end
7
-
8
- # Turn the result hash into a Topic Class
9
- def format_result(result)
10
- RMeetup::Type::Topic.new(result)
11
- end
12
- end
13
- end
14
- end
@@ -1,29 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
-
3
- Gem::Specification.new do |s|
4
- s.name = %q{rMeetup}
5
- s.version = "1.0"
6
-
7
- s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
- s.authors = ["Jason Berlinsky"]
9
- s.date = %q{2011-01-21}
10
- s.description = %q{A simple Ruby gem, providing access to the Meetup API}
11
- s.email = %q{jason@jasonberlinsky.com}
12
- s.extra_rdoc_files = ["README.rdoc", "lib/rmeetup.rb", "lib/rmeetup/collection.rb", "lib/rmeetup/fetcher.rb", "lib/rmeetup/fetcher/base.rb", "lib/rmeetup/fetcher/cities.rb", "lib/rmeetup/fetcher/comments.rb", "lib/rmeetup/fetcher/events.rb", "lib/rmeetup/fetcher/groups.rb", "lib/rmeetup/fetcher/members.rb", "lib/rmeetup/fetcher/photos.rb", "lib/rmeetup/fetcher/rsvps.rb", "lib/rmeetup/fetcher/topics.rb", "lib/rmeetup/type.rb", "lib/rmeetup/type/city.rb", "lib/rmeetup/type/comment.rb", "lib/rmeetup/type/event.rb", "lib/rmeetup/type/group.rb", "lib/rmeetup/type/member.rb", "lib/rmeetup/type/photo.rb", "lib/rmeetup/type/rsvp.rb", "lib/rmeetup/type/topic.rb"]
13
- s.files = ["Manifest", "README.rdoc", "Rakefile", "lib/rmeetup.rb", "lib/rmeetup/collection.rb", "lib/rmeetup/fetcher.rb", "lib/rmeetup/fetcher/base.rb", "lib/rmeetup/fetcher/cities.rb", "lib/rmeetup/fetcher/comments.rb", "lib/rmeetup/fetcher/events.rb", "lib/rmeetup/fetcher/groups.rb", "lib/rmeetup/fetcher/members.rb", "lib/rmeetup/fetcher/photos.rb", "lib/rmeetup/fetcher/rsvps.rb", "lib/rmeetup/fetcher/topics.rb", "lib/rmeetup/type.rb", "lib/rmeetup/type/city.rb", "lib/rmeetup/type/comment.rb", "lib/rmeetup/type/event.rb", "lib/rmeetup/type/group.rb", "lib/rmeetup/type/member.rb", "lib/rmeetup/type/photo.rb", "lib/rmeetup/type/rsvp.rb", "lib/rmeetup/type/topic.rb", "spec/client_spec.rb", "spec/fetcher_spec.rb", "spec/fetchers/base_spec.rb", "spec/fetchers/cities_spec.rb", "spec/fetchers/comments_spec.rb", "spec/fetchers/events_spec.rb", "spec/fetchers/groups_spec.rb", "spec/fetchers/members_spec.rb", "spec/fetchers/photos_spec.rb", "spec/fetchers/rsvps_spec.rb", "spec/fetchers/topics_spec.rb", "spec/responses/cities.json", "spec/responses/comments.json", "spec/responses/error.json", "spec/responses/events.json", "spec/responses/groups.json", "spec/responses/members.json", "spec/responses/photos.json", "spec/responses/rsvps.json", "spec/responses/topics.json", "spec/spec_helper.rb", "rMeetup.gemspec"]
14
- s.homepage = %q{https://github.com/Jberlinsky/rmeetup}
15
- s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "rMeetup", "--main", "README.rdoc"]
16
- s.require_paths = ["lib"]
17
- s.rubyforge_project = %q{rmeetup}
18
- s.rubygems_version = %q{1.4.2}
19
- s.summary = %q{A simple Ruby gem, providing access to the Meetup API}
20
-
21
- if s.respond_to? :specification_version then
22
- s.specification_version = 3
23
-
24
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
25
- else
26
- end
27
- else
28
- end
29
- end
@@ -1,58 +0,0 @@
1
- require File.join(File.dirname(__FILE__), '..', 'spec_helper')
2
-
3
- describe RMeetup::Fetcher::Base, 'building an api url' do
4
- before do
5
- @fetcher = RMeetup::Fetcher::Base.new
6
- @options = {:key => 'seekret_api_key'}
7
- end
8
-
9
- it 'should build a correct to call.' do
10
- @options['search'] = 'ruby search'
11
- url = @fetcher.send(:build_url,@options)
12
- url.should eql("http://api.meetup.com/.json/?search=ruby%20search&key=seekret_api_key")
13
- end
14
-
15
- it 'should generate a correct base url' do
16
- @fetcher.send(:base_url).should eql('http://api.meetup.com/.json/')
17
- end
18
-
19
- it 'should uri encode options' do
20
- @options['with_spaces'] = 'i haz spaces'
21
- encoded = @fetcher.send(:encode_options, @options)
22
- encoded['with_spaces'].should eql('i%20haz%20spaces')
23
- end
24
-
25
- it 'should build a correct query string' do
26
- @options[:search] = 'ruby'
27
- params = @fetcher.send(:params_for, @options)
28
- params.should eql('?search=ruby&key=seekret_api_key')
29
- end
30
- end
31
-
32
- describe RMeetup::Fetcher::Base, 'getting an error back' do
33
- before do
34
- @fetcher = RMeetup::Fetcher::Base.new
35
- @fetcher.extend(RMeetup::FakeResponse::Error)
36
- end
37
-
38
- it 'should raise a detailed API error' do
39
- lambda {
40
- @fetcher.fetch
41
- }.should raise_error(RMeetup::Fetcher::ApiError,/Perhaps you're missing a required parameter/)
42
- end
43
- end
44
-
45
- describe RMeetup::Fetcher::Base, 'getting a collection back' do
46
- before do
47
- @fetcher = RMeetup::Fetcher::Base.new
48
- @fetcher.extend(RMeetup::FakeResponse::Topics)
49
- end
50
-
51
- it 'should get back a RMeetup::Collection' do
52
- @fetcher.fetch.should be_kind_of(RMeetup::Collection)
53
- end
54
-
55
- it 'should get a collection with all the response results' do
56
- @fetcher.fetch.size.should eql(29)
57
- end
58
- end
@@ -1,18 +0,0 @@
1
- require File.join(File.dirname(__FILE__), '..', 'spec_helper')
2
-
3
- describe RMeetup::Fetcher::Cities, 'fetching some Cities' do
4
- before do
5
- @fetcher = RMeetup::Fetcher::Cities.new
6
- @fetcher.extend(RMeetup::FakeResponse::Cities)
7
- end
8
-
9
- it 'should return a collection of Cities' do
10
- @fetcher.fetch.each do |result|
11
- result.should be_kind_of(RMeetup::Type::City)
12
- end
13
- end
14
-
15
- it 'should parse a correct zip code' do
16
- @fetcher.fetch.first.zip.should eql('10001')
17
- end
18
- end
@@ -1,14 +0,0 @@
1
- require File.join(File.dirname(__FILE__), '..', 'spec_helper')
2
-
3
- describe RMeetup::Fetcher::Comments, 'fetching some Comments' do
4
- before do
5
- @fetcher = RMeetup::Fetcher::Comments.new
6
- @fetcher.extend(RMeetup::FakeResponse::Comments)
7
- end
8
-
9
- it 'should return a collection of Comments' do
10
- @fetcher.fetch.each do |result|
11
- result.should be_kind_of(RMeetup::Type::Comment)
12
- end
13
- end
14
- end
@@ -1,14 +0,0 @@
1
- require File.join(File.dirname(__FILE__), '..', 'spec_helper')
2
-
3
- describe RMeetup::Fetcher::Events, 'fetching some Events' do
4
- before do
5
- @fetcher = RMeetup::Fetcher::Events.new
6
- @fetcher.extend(RMeetup::FakeResponse::Events)
7
- end
8
-
9
- it 'should return a collection of Events' do
10
- @fetcher.fetch.each do |result|
11
- result.should be_kind_of(RMeetup::Type::Event)
12
- end
13
- end
14
- end
@@ -1,14 +0,0 @@
1
- require File.join(File.dirname(__FILE__), '..', 'spec_helper')
2
-
3
- describe RMeetup::Fetcher::Groups, 'fetching some Groups' do
4
- before do
5
- @fetcher = RMeetup::Fetcher::Groups.new
6
- @fetcher.extend(RMeetup::FakeResponse::Groups)
7
- end
8
-
9
- it 'should return a collection of Groups' do
10
- @fetcher.fetch.each do |result|
11
- result.should be_kind_of(RMeetup::Type::Group)
12
- end
13
- end
14
- end
@@ -1,14 +0,0 @@
1
- require File.join(File.dirname(__FILE__), '..', 'spec_helper')
2
-
3
- describe RMeetup::Fetcher::Members, 'fetching some Members' do
4
- before do
5
- @fetcher = RMeetup::Fetcher::Members.new
6
- @fetcher.extend(RMeetup::FakeResponse::Members)
7
- end
8
-
9
- it 'should return a collection of Members' do
10
- @fetcher.fetch.each do |result|
11
- result.should be_kind_of(RMeetup::Type::Member)
12
- end
13
- end
14
- end
@@ -1,14 +0,0 @@
1
- require File.join(File.dirname(__FILE__), '..', 'spec_helper')
2
-
3
- describe RMeetup::Fetcher::Photos, 'fetching some Photos' do
4
- before do
5
- @fetcher = RMeetup::Fetcher::Photos.new
6
- @fetcher.extend(RMeetup::FakeResponse::Photos)
7
- end
8
-
9
- it 'should return a collection of Photos' do
10
- @fetcher.fetch.each do |result|
11
- result.should be_kind_of(RMeetup::Type::Photo)
12
- end
13
- end
14
- end
@@ -1,14 +0,0 @@
1
- require File.join(File.dirname(__FILE__), '..', 'spec_helper')
2
-
3
- describe RMeetup::Fetcher::Rsvps, 'fetching some Rsvps' do
4
- before do
5
- @fetcher = RMeetup::Fetcher::Rsvps.new
6
- @fetcher.extend(RMeetup::FakeResponse::Rsvps)
7
- end
8
-
9
- it 'should return a collection of Rsvps' do
10
- @fetcher.fetch.each do |result|
11
- result.should be_kind_of(RMeetup::Type::Rsvp)
12
- end
13
- end
14
- end
@@ -1,14 +0,0 @@
1
- require File.join(File.dirname(__FILE__), '..', 'spec_helper')
2
-
3
- describe RMeetup::Fetcher::Topics, 'fetching some Topics' do
4
- before do
5
- @fetcher = RMeetup::Fetcher::Topics.new
6
- @fetcher.extend(RMeetup::FakeResponse::Topics)
7
- end
8
-
9
- it 'should return a collection of Topics' do
10
- @fetcher.fetch.each do |result|
11
- result.should be_kind_of(RMeetup::Type::Topic)
12
- end
13
- end
14
- end
@@ -1 +0,0 @@
1
- {"results":[{"zip":"10001","lon":"-73.98999786376953","state":"NY","members":"130330","lat":"40.75","country":"us","city":"New York"},{"zip":"60601","lon":"-87.62999725341797","state":"IL","members":"53857","lat":"41.88999938964844","country":"us","city":"Chicago"},{"zip":"","lon":"-0.10000000149011612","state":"","members":"49984","lat":"51.52000045776367","country":"gb","city":"London"},{"zip":"20001","lon":"-77.0199966430664","state":"DC","members":"40749","lat":"38.90999984741211","country":"us","city":"Washington"},{"zip":"92101","lon":"-117.16999816894531","state":"CA","members":"40202","lat":"32.720001220703125","country":"us","city":"San Diego"},{"zip":"77001","lon":"-95.22000122070312","state":"TX","members":"37815","lat":"29.719999313354492","country":"us","city":"Houston"},{"zip":"M3H 6A7","lon":"-79.44000244140625","state":"ON","members":"36789","lat":"43.7599983215332","country":"ca","city":"Toronto"},{"zip":"19101","lon":"-75.13999938964844","state":"PA","members":"36594","lat":"40.0","country":"us","city":"Philadelphia"},{"zip":"30301","lon":"-84.4000015258789","state":"GA","members":"35223","lat":"33.86000061035156","country":"us","city":"Atlanta"},{"zip":"98101","lon":"-122.33000183105469","state":"WA","members":"34781","lat":"47.61000061035156","country":"us","city":"Seattle"}],"meta":{"lon":"","count":10,"next":"http:\/\/api.meetup.com\/cities\/?order=members&key=4824d125e1c13f6253694f65383d33&page=10&format=json&offset=1","link":"http:\/\/api.meetup.com\/cities\/","total_count":82705,"url":"http:\/\/api.meetup.com\/cities\/?order=members&key=4824d125e1c13f6253694f65383d33&page=10&format=json&offset=0","id":"","title":"Meetup Cities","updated":"2008-10-21 09:10:41 EDT","description":"API method for accessing meetup cities","method":"Cities","lat":""}}
@@ -1 +0,0 @@
1
- {"results":[{"zip":"28270","lon":"-80.76000213623047","created":"Thu Oct 02 22:30:13 EDT 2008","link":"http:\/\/www.meetup.com\/members\/3170722","name":"Brian Blanton","state":"NC","rating":"4","comment":"","lat":"35.119998931884766","city":"Charlotte","country":"us"},{"zip":"28078","lon":"-80.8499984741211","created":"Thu Oct 02 08:04:12 EDT 2008","link":"http:\/\/www.meetup.com\/members\/69074","name":"Larry Staton Jr.","state":"NC","rating":"5","comment":"","lat":"35.40999984741211","city":"Huntersville","country":"us"},{"zip":"28278","lon":"-81.0199966430664","created":"Mon Aug 18 23:24:26 EDT 2008","link":"http:\/\/www.meetup.com\/members\/5363982","name":"Robert Hall","state":"NC","rating":"4","comment":"Ruby is an up and coming language that needs supporters to get the word out. I would encourage all skill levels of people to attend, don't be scared off by not knowing ruby, that's why we're here.","lat":"35.099998474121094","city":"Charlotte","country":"us"},{"zip":"28277","lon":"-80.80999755859375","created":"Mon Aug 18 23:23:26 EDT 2008","link":"http:\/\/www.meetup.com\/members\/2643089","name":"Scott","state":"NC","rating":"4","comment":"","lat":"35.060001373291016","city":"Charlotte","country":"us"}],"meta":{"lon":"","count":4,"next":"","link":"http:\/\/api.meetup.com\/comments\/","total_count":4,"url":"http:\/\/api.meetup.com\/comments\/?order=ctime&topic=ruby&key=4824d125e1c13f6253694f65383d33&groupnum=136&page=10&format=json&offset=0","id":"","title":"Meetup Group Comments","updated":"2008-10-02 22:30:13 EDT","description":"API method for accessing meetup group comments","method":"Comments","lat":""}}
@@ -1 +0,0 @@
1
- {"problem":"The API request is malformed","details":"Perhaps you're missing a required parameter. You can find full documentation of the api here: http://www.meetup.com/meetup_api/docs/"}
@@ -1 +0,0 @@
1
- {"results":[{"group_name":"The Vancouver Ruby\/Rails\/Merb Meetup Group","lon":"-123.12000274658203","rsvpcount":"11","venue_name":"","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/9\/0\/3\/global_3410307.jpeg","questions":[],"feecurrency":"USD","attendee_count":"0","venue_lon":"","id":"8912342","fee":"0.0","time":"Mon Nov 03 19:00:00 PDT 2008","feedesc":"","ismeetup":"1","updated":"Fri Oct 17 21:16:57 EDT 2008","event_url":"http:\/\/ruby.meetup.com\/112\/calendar\/8912342","description":"The meetup is now at WorkSpace (Suite 400, 21 Water Street).\r\n\r\n[b]I don't have a speaker yet! If you want to talk, please email a talk title, a 1-paragraph talk description and a speaker bio to peter@ruboss.com.\r\n[\/b]\r\n\r\nIf I can't find a speaker with a Ruby topic, I have the following proposal for an open discussion. It's not Ruby-specific, but many of us are doing startups so it may be interesting:\r\n\r\nPaul Graham (http:\/\/www.paulgraham.com\/badeconomy.html)\r\n\r\nvs.\r\n\r\nSequoia Capital (http:\/\/www.techcrunch.com\/2008\/10\/10\/sequoia-capitals-56-slide-powerpoint-presentation-of-doom\/)\r\n\r\nWho's right? Or can both be right?\r\n\r\nAfter their meetup, some of us may head over to Irish Heather or Chill Winston for beer afterward.","name":"The Vancouver Ruby\/Rails November Meetup","venue_lat":"","lat":"49.279998779296875"},{"group_name":"The Michigan Ruby Users Group (Grand Rapids)","lon":"-85.66000366210938","rsvpcount":"2","venue_name":"","photo_url":"","questions":[],"feecurrency":"USD","attendee_count":"0","venue_lon":"","id":"8918080","fee":"0.0","time":"Tue Nov 04 18:00:00 EDT 2008","feedesc":"","ismeetup":"1","updated":"Tue Oct 07 19:06:49 EDT 2008","event_url":"http:\/\/ruby.meetup.com\/46\/calendar\/8918080","description":"","name":"The Michigan Ruby Users Group (Grand Rapids) November Meetup","venue_lat":"","lat":"42.869998931884766"},{"group_name":"srq.rb","lon":"-82.4800033569336","rsvpcount":"1","venue_name":"Cock & Bull Pub","photo_url":"","questions":[],"feecurrency":"USD","attendee_count":"0","venue_lon":"-82.451380","id":"8876657","fee":"0.0","time":"Wed Nov 05 19:00:00 EDT 2008","feedesc":"","ismeetup":"1","updated":"Wed Oct 01 20:10:22 EDT 2008","event_url":"http:\/\/ruby.meetup.com\/135\/calendar\/8876657","description":"We'll drink beer and lament the downfall of American hegemony and talk a little tech.","name":"srq.rb November Meetup","venue_lat":"27.325770","lat":"27.31999969482422"},{"group_name":"The Raleigh-area Ruby Brigade (raleigh.rb)","lon":"-78.62999725341797","rsvpcount":"0","venue_name":"","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/3\/a\/c\/global_4488940.jpeg","questions":[],"feecurrency":"USD","attendee_count":"0","venue_lon":"","id":"8639251","fee":"0.0","time":"Thu Nov 06 24:00:00 EDT 2008","feedesc":"","ismeetup":"0","updated":"Thu Aug 28 08:53:11 EDT 2008","event_url":"http:\/\/ruby.meetup.com\/3\/calendar\/8639251","description":"http:\/\/rubyconf.org\/","name":"RubyConf 2008","venue_lat":"","lat":"35.939998626708984"},{"group_name":"ChicagoRuby.org - Chicago Ruby on Rails","lon":"-87.94000244140625","rsvpcount":"0","venue_name":"","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/6\/8\/0\/global_4273664.jpeg","questions":[],"feecurrency":"USD","attendee_count":"0","venue_lon":"","id":"8852946","fee":"0.0","time":"Thu Nov 06 24:00:00 CDT 2008","feedesc":"","ismeetup":"0","updated":"Sun Sep 28 19:48:54 EDT 2008","event_url":"http:\/\/ruby.meetup.com\/77\/calendar\/8852946","description":"RubyConf 2008 in Orlando, FL\r\nhttp:\/\/rubyconf.org\/","name":"RubyConf 2008 in Orlando, FL","venue_lat":"","lat":"41.88999938964844"},{"group_name":"The Raleigh-area Ruby Brigade (raleigh.rb)","lon":"-78.62999725341797","rsvpcount":"8","venue_name":"","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/3\/a\/c\/global_4488940.jpeg","questions":[],"feecurrency":"","attendee_count":"0","venue_lon":"","id":"8639263","fee":"0.0","time":"Thu Nov 06 18:00:00 EDT 2008","feedesc":"","ismeetup":"1","updated":"Thu Aug 28 08:54:51 EDT 2008","event_url":"http:\/\/ruby.meetup.com\/3\/calendar\/8639263","description":"This is a completely open, free-form, \"just show up with a laptop (or a friend with a laptop) and hack on some Ruby\" meeting. There's no agenda, and there's sure to be a great mix of coding and shooting the breeze about all things geeky, including our favorite language. Nathaniel will be showing up around 6 to grab something to eat and start hacking, and we'll do quick introductions around 6:30, but feel free to drop in whenever you can.\r\n\r\nSee you there!","name":"Hack Night","venue_lat":"","lat":"35.939998626708984"},{"group_name":"The Raleigh-area Ruby Brigade (raleigh.rb)","lon":"-78.62999725341797","rsvpcount":"0","venue_name":"","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/3\/a\/c\/global_4488940.jpeg","questions":[],"feecurrency":"USD","attendee_count":"0","venue_lon":"","id":"8639253","fee":"0.0","time":"Fri Nov 07 24:00:00 EDT 2008","feedesc":"","ismeetup":"0","updated":"Thu Aug 28 08:53:42 EDT 2008","event_url":"http:\/\/ruby.meetup.com\/3\/calendar\/8639253","description":"http:\/\/rubyconf.org\/","name":"RubyConf 2008","venue_lat":"","lat":"35.939998626708984"},{"group_name":"ChicagoRuby.org - Chicago Ruby on Rails","lon":"-87.94000244140625","rsvpcount":"0","venue_name":"","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/6\/8\/0\/global_4273664.jpeg","questions":[],"feecurrency":"USD","attendee_count":"0","venue_lon":"","id":"8852966","fee":"0.0","time":"Fri Nov 07 24:00:00 CDT 2008","feedesc":"","ismeetup":"0","updated":"Sun Sep 28 19:52:53 EDT 2008","event_url":"http:\/\/ruby.meetup.com\/77\/calendar\/8852966","description":"RubyConf 2008 in Orlando, FL\r\nhttp:\/\/rubyconf.org\/","name":"RubyConf 2008 in Orlando, FL","venue_lat":"","lat":"41.88999938964844"},{"group_name":"The Raleigh-area Ruby Brigade (raleigh.rb)","lon":"-78.62999725341797","rsvpcount":"0","venue_name":"","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/3\/a\/c\/global_4488940.jpeg","questions":[],"feecurrency":"USD","attendee_count":"0","venue_lon":"","id":"8639255","fee":"0.0","time":"Sat Nov 08 24:00:00 EDT 2008","feedesc":"","ismeetup":"0","updated":"Thu Aug 28 08:53:53 EDT 2008","event_url":"http:\/\/ruby.meetup.com\/3\/calendar\/8639255","description":"http:\/\/rubyconf.org\/","name":"RubyConf 2008","venue_lat":"","lat":"35.939998626708984"},{"group_name":"ChicagoRuby.org - Chicago Ruby on Rails","lon":"-87.94000244140625","rsvpcount":"0","venue_name":"","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/6\/8\/0\/global_4273664.jpeg","questions":[],"feecurrency":"USD","attendee_count":"0","venue_lon":"","id":"8852970","fee":"0.0","time":"Sat Nov 08 24:00:00 CDT 2008","feedesc":"","ismeetup":"0","updated":"Sun Sep 28 19:53:10 EDT 2008","event_url":"http:\/\/ruby.meetup.com\/77\/calendar\/8852970","description":"RubyConf 2008 in Orlando, FL\r\nhttp:\/\/rubyconf.org\/","name":"RubyConf 2008 in Orlando, FL","venue_lat":"","lat":"41.88999938964844"}],"meta":{"lon":"","count":10,"next":"http:\/\/api.meetup.com\/events\/?order=time&radius=25&topic=ruby&key=4824d125e1c13f6253694f65383d33&page=10&format=json&offset=1","link":"http:\/\/api.meetup.com\/events\/","total_count":45,"url":"http:\/\/api.meetup.com\/events\/?order=time&radius=25&topic=ruby&key=4824d125e1c13f6253694f65383d33&page=10&format=json&offset=0","id":"","title":"Meetup Events","updated":"2008-10-31 12:35:57 EDT","description":"API method for accessing meetup events","method":"Events","lat":""}}
@@ -1 +0,0 @@
1
- {"results":[{"zip":"20861","lon":"-76.98999786376953","photo_url":"","link":"http:\/\/www.meetup.com\/Ashton-Ruby-Group\/","state":"MD","city":"Ashton","country":"us","id":"1307778","organizerProfileURL":"http:\/\/www.meetup.com\/members\/1176597\/","updated":"Mon Oct 27 17:53:56 EDT 2008","created":"Fri Oct 24 12:25:59 EDT 2008","description":"To meet regularly and learn from each other's experiences and goals using Ruby in many application contexts.","name":"Ashton Ruby Group","daysleft":"","members":"3","lat":"39.15999984741211"},{"zip":"92009","lon":"-117.2699966430664","photo_url":"","link":"http:\/\/ruby.meetup.com\/140\/","state":"CA","city":"Carlsbad","country":"us","id":"1285509","organizerProfileURL":"http:\/\/www.meetup.com\/members\/8063944\/","updated":"Tue Oct 21 14:39:00 EDT 2008","created":"Fri Sep 19 13:49:56 EDT 2008","description":"A gathering of like minded web developers, focusing primarily on Ruby, but open to other languages as well.","name":"North County Ruby Brigade","daysleft":"","members":"3","lat":"33.099998474121094"},{"zip":"","lon":"19.079999923706055","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/1\/0\/9\/4\/global_5350244.jpeg","link":"http:\/\/www.meetup.com\/budapest-rb\/","state":"","city":"Budapest","country":"hu","id":"1271139","organizerProfileURL":"http:\/\/www.meetup.com\/members\/3928337\/","updated":"Thu Oct 30 07:05:39 EDT 2008","created":"Thu Aug 28 10:38:38 EDT 2008","description":"A budapest.rb Ruby fejleszto\"k és a technológiával ismerkedo\"k érdekében jött létre. A találkozók során a megismerhetjük a többi magyar Ruby fejleszto\"t, tanulhatunk egymástól, és megoszthatjuk saját tapasztalatainkat.\r\n\r\nA találkozókat havonta egy alkalommal rendezzük. Ilyenkor van 3 rövidebb (5-10 perc hosszú Lightning Talk) és egy picit hosszabb elo\"adás (fél óra). A rövid elo\"adások szélesítik a látókört és ízelíto\"t adnak, a hosszabb pedig mélyebb betekintést nyújt egy témába. Az elo\"adások után leheto\"ség van a keveredésre, beszélgetésre egymással és az elo\"adókkal. Ez a rész opcionális, de ero\"sen javasolt program.\r\n\r\nVárható témakörök: tervezési minták, hasznos gemek, minden ami Rails és más keretrendszerek, JRuby és más alternatív interpreterek, és amit még ti akartok.","name":"budapest.rb","daysleft":"","members":"83","lat":"47.5099983215332"},{"zip":"72701","lon":"-94.13999938964844","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/1\/4\/9\/7\/global_5153271.jpeg","link":"http:\/\/www.meetup.com\/naruby\/","state":"AR","city":"Fayetteville","country":"us","id":"1256819","organizerProfileURL":"http:\/\/www.meetup.com\/members\/6145312\/","updated":"Sat Oct 25 19:41:04 EDT 2008","created":"Thu Aug 14 11:10:20 EDT 2008","description":"Meet other local Ruby programmers.","name":"Northwest Arkansas Ruby Brigade","daysleft":"","members":"7","lat":"36.04999923706055"},{"zip":"","lon":"2.3399999141693115","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/7\/c\/1\/global_5113985.jpeg","link":"http:\/\/www.meetup.com\/ruby-137\/","state":"","city":"Paris","country":"fr","id":"1252905","organizerProfileURL":"http:\/\/www.meetup.com\/members\/1280136\/","updated":"Wed Oct 29 15:16:48 EDT 2008","created":"Sun Aug 10 23:47:57 EDT 2008","description":"Are you going to be in Paris? Are you interested in Ruby and\/or Python? Do you have a project you want to hack on?\r\n\r\nThe best way to learn is to share with others. Getting a bunch of Ruby\/Python programmers in the same room is a great way to learn new tips and tricks, and all about the latest in the world of Ruby, Python, and beyond.\r\n\r\nI'm one of the organizers of the San Jose Ruby Hackfest and I've moved to Paris. All are welcome! Please make suggestions on topics of discussion and places to meet. All you need is a laptop and something to hack on...","name":"Paris Ruby & Python Hackfest","daysleft":"","members":"19","lat":"48.86000061035156"},{"zip":"28226","lon":"-80.80999755859375","photo_url":"","link":"http:\/\/ruby.meetup.com\/136\/","state":"NC","city":"Charlotte","country":"us","id":"1229892","organizerProfileURL":"http:\/\/www.meetup.com\/members\/7686667\/","updated":"Fri Oct 03 19:11:50 EDT 2008","created":"Mon Jul 21 14:28:16 EDT 2008","description":"Meet other local Ruby programmers.","name":"Charlotte Ruby Meetup Group","daysleft":"","members":"23","lat":"35.11000061035156"},{"zip":"34232","lon":"-82.4800033569336","photo_url":"","link":"http:\/\/ruby.meetup.com\/135\/","state":"FL","city":"Sarasota","country":"us","id":"1222529","organizerProfileURL":"http:\/\/www.meetup.com\/members\/870301\/","updated":"Fri Oct 03 19:11:45 EDT 2008","created":"Mon Jul 14 11:10:00 EDT 2008","description":"Meet other local programmers interested in Ruby, Erlang, emerging web technologies, and stuff.","name":"srq.rb","daysleft":"","members":"29","lat":"27.31999969482422"},{"zip":"95825","lon":"-121.4000015258789","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/1\/6\/3\/e\/global_4049694.jpeg","link":"http:\/\/ruby.meetup.com\/132\/","state":"CA","city":"Sacramento","country":"us","id":"1138715","organizerProfileURL":"http:\/\/www.meetup.com\/members\/2840665\/","updated":"Wed Oct 22 20:46:24 EDT 2008","created":"Tue May 06 19:27:43 EDT 2008","description":"Meet other local Ruby programmers.","name":"The Sacramento Ruby Meetup","daysleft":"","members":"31","lat":"38.59000015258789"},{"zip":"10026","lon":"-73.94999694824219","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/1\/6\/a\/global_3744362.jpeg","link":"http:\/\/ruby.meetup.com\/131\/","state":"NY","city":"New York","country":"us","id":"1080699","organizerProfileURL":"http:\/\/www.meetup.com\/members\/3112717\/","updated":"Thu Oct 30 15:24:41 EDT 2008","created":"Wed Mar 26 10:39:44 EDT 2008","description":"Meet other local Ruby programmers.","name":"The New York Ruby Meetup","daysleft":"","members":"132","lat":"40.79999923706055"},{"zip":"23510","lon":"-76.29000091552734","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/1\/7\/1\/7\/global_3557911.jpeg","link":"http:\/\/ruby.meetup.com\/130\/","state":"VA","city":"Norfolk","country":"us","id":"1068870","organizerProfileURL":"http:\/\/www.meetup.com\/members\/3695330\/","updated":"Fri Oct 31 12:27:57 EDT 2008","created":"Tue Mar 18 11:50:21 EDT 2008","description":"Welcome to the Hampton Roads Ruby Users Group (757.rb). An advocacy group for promoting the awareness\/use of the Ruby programming language and the Rails framework. Serving Hampton Roads (Norfolk, Virginia Beach, Chesapeake, Portsmouth, Suffolk, Hampton, Newport News, Yorktown and Williamsburg).\r\n\r\n* Homepage: http:\/\/757rb.org\/\r\n* Google Group: http:\/\/groups.google.com\/group\/757rb\r\n* Google Group Email: 757rb@googlegroups.com","name":"Hampton Roads Ruby Users Group (757.rb)","daysleft":"","members":"22","lat":"36.849998474121094"}],"meta":{"lon":"","count":10,"next":"http:\/\/api.meetup.com\/groups\/?order=ctime&radius=25&topic=ruby&key=4824d125e1c13f6253694f65383d33&page=10&format=json&offset=1","link":"http:\/\/api.meetup.com\/groups\/","total_count":52,"url":"http:\/\/api.meetup.com\/groups\/?order=ctime&radius=25&topic=ruby&key=4824d125e1c13f6253694f65383d33&page=10&format=json&offset=0","id":"","title":"Meetup Groups","updated":"2008-10-31 18:31:20 EDT","description":"API method for accessing meetup groups","method":"Groups","lat":""}}
@@ -1 +0,0 @@
1
- {"results":[{"zip":"28270","lon":"-80.76000213623047","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/member\/1\/3\/3\/3\/member_2272915.jpeg","link":"http:\/\/www.meetup.com\/members\/4649231","state":"NC","city":"Charlotte","country":"us","visited":"Sat Sep 27 01:17:06 EDT 2008","id":"4649231","joined":"Thu Jul 24 22:13:10 EDT 2008","bio":"","name":"August","lat":"35.119998931884766"},{"zip":"28270","lon":"-80.76000213623047","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/member\/c\/b\/f\/member_993263.jpeg","link":"http:\/\/www.meetup.com\/members\/3170722","state":"NC","city":"Charlotte","country":"us","visited":"Fri Oct 17 13:26:08 EDT 2008","id":"3170722","joined":"Tue Sep 30 08:42:38 EDT 2008","bio":"","name":"Brian Blanton","lat":"35.119998931884766"},{"zip":"28104","lon":"-80.72000122070312","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/member\/8\/7\/a\/member_4670170.jpeg","link":"http:\/\/www.meetup.com\/members\/7976804","state":"NC","city":"Matthews","country":"us","visited":"Thu Sep 04 15:00:34 EDT 2008","id":"7976804","joined":"Thu Sep 04 15:00:34 EDT 2008","bio":"I am one of the few full time RoR developers in the area, and am always looking to spread the word on Ruby and Rails as well as meet others with the same appreciation for them that I have.","name":"Chris Beck","lat":"35.119998931884766"},{"zip":"28277","lon":"-80.80999755859375","photo_url":"","link":"http:\/\/www.meetup.com\/members\/6591797","state":"NC","city":"Charlotte","country":"us","visited":"Thu Jul 24 09:37:52 EDT 2008","id":"6591797","joined":"Thu Jul 24 09:37:52 EDT 2008","bio":"","name":"David Sheehan","lat":"35.060001373291016"},{"zip":"27516","lon":"-79.12000274658203","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/member\/7\/4\/d\/member_3385869.jpeg","link":"http:\/\/www.meetup.com\/members\/6498229","state":"NC","city":"Chapel Hill","country":"us","visited":"Tue Jul 29 20:35:45 EDT 2008","id":"6498229","joined":"Mon Jul 21 22:41:36 EDT 2008","bio":"","name":"derick","lat":"35.91999816894531"},{"zip":"27514","lon":"-79.04000091552734","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/member\/6\/8\/4\/member_4369668.jpeg","link":"http:\/\/www.meetup.com\/members\/7690053","state":"NC","city":"Chapel Hill","country":"us","visited":"Tue Aug 19 16:07:07 EDT 2008","id":"7690053","joined":"Mon Jul 21 22:46:02 EDT 2008","bio":"","name":"Dustin","lat":"35.93000030517578"},{"zip":"28269","lon":"-80.80999755859375","photo_url":"","link":"http:\/\/www.meetup.com\/members\/7828844","state":"NC","city":"Charlotte","country":"us","visited":"Sun Oct 05 20:01:53 EDT 2008","id":"7828844","joined":"Mon Aug 11 14:58:55 EDT 2008","bio":"","name":"Eddy","lat":"35.310001373291016"},{"zip":"28025","lon":"-80.58000183105469","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/member\/d\/5\/e\/member_3747422.jpeg","link":"http:\/\/www.meetup.com\/members\/7022074","state":"NC","city":"Concord","country":"us","visited":"Thu Sep 18 14:41:31 EDT 2008","id":"7022074","joined":"Thu Jul 24 19:41:34 EDT 2008","bio":"","name":"James Schorr","lat":"35.400001525878906"},{"zip":"28115","lon":"-80.81999969482422","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/member\/1\/3\/f\/6\/member_4445110.jpeg","link":"http:\/\/www.meetup.com\/members\/7780724","state":"NC","city":"Mooresville","country":"us","visited":"Fri Oct 31 18:58:09 EDT 2008","id":"7780724","joined":"Mon Aug 04 12:26:12 EDT 2008","bio":"","name":"Jared Pace","lat":"35.58000183105469"},{"zip":"29730","lon":"-81.0199966430664","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/member\/8\/7\/e\/member_4676174.jpeg","link":"http:\/\/www.meetup.com\/members\/7980875","state":"SC","city":"Rock Hill","country":"us","visited":"Thu Sep 11 10:01:19 EDT 2008","id":"7980875","joined":"Fri Sep 05 08:52:56 EDT 2008","bio":"Just looking into Ruby and wanting some info since there really isn't much out there.","name":"Jay Ward","lat":"34.93000030517578"}],"meta":{"lon":"","count":10,"link":"http:\/\/api.meetup.com\/members\/","next":"http:\/\/api.meetup.com\/members\/?order=name&topic=ruby&key=4824d125e1c13f6253694f65383d33&groupnum=136&page=10&format=json&offset=1","total_count":23,"url":"http:\/\/api.meetup.com\/members\/?order=name&topic=ruby&key=4824d125e1c13f6253694f65383d33&groupnum=136&page=10&format=json&offset=0","id":"","title":"Meetup Members","updated":"2008-10-01 06:36:21 EDT","description":"API method for accessing members of Meetup Groups","method":"Members","lat":""}}
@@ -1 +0,0 @@
1
- {"results":[{"member_url":"http:\/\/www.meetup.com\/members\/3845915","albumtitle":"Meetup Group Photo Album","created":"Thu Oct 30 07:00:24 EDT 2008","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/e\/9\/e\/global_6099742.jpeg","link":"http:\/\/www.meetup.com\/erloungerdu\/\/photos\/470662\/","descr":""},{"member_url":"http:\/\/www.meetup.com\/members\/7636957","albumtitle":"Joint Meetup with Japan's Ruby Business Commons","created":"Thu Sep 25 02:34:39 EDT 2008","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/4\/8\/7\/global_5641159.jpeg","link":"http:\/\/www.meetup.com\/silicon-valley-ruby\/\/photos\/445175\/","descr":"Chisako's presentation"},{"member_url":"http:\/\/www.meetup.com\/members\/4013131","albumtitle":"The Seacoast NH Ruby and Rails September Meetup","created":"Thu Sep 18 20:29:03 EDT 2008","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/a\/2\/e\/global_5558606.jpeg","link":"http:\/\/www.meetup.com\/nhruby\/\/photos\/440535\/","descr":"NH Ruby-- Rails Rumble"},{"member_url":"http:\/\/www.meetup.com\/members\/3928337","albumtitle":"budapest.rb begins","created":"Thu Sep 18 12:31:25 EDT 2008","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/1\/3\/0\/3\/global_5554867.jpeg","link":"http:\/\/www.meetup.com\/budapest-rb\/\/photos\/440279\/","descr":""},{"member_url":"http:\/\/www.meetup.com\/members\/3928337","albumtitle":"Meetup Group Photo Album","created":"Sun Aug 31 16:49:46 EDT 2008","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/1\/0\/9\/4\/global_5350244.jpeg","link":"http:\/\/www.meetup.com\/budapest-rb\/\/photos\/426597\/","descr":""},{"member_url":"http:\/\/www.meetup.com\/members\/1280136","albumtitle":"Meetup Group Photo Album","created":"Mon Aug 11 00:13:01 EDT 2008","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/7\/c\/1\/global_5113985.jpeg","link":"http:\/\/www.meetup.com\/ruby-137\/\/photos\/414874\/","descr":""},{"member_url":"http:\/\/www.meetup.com\/members\/5749908","albumtitle":"Ruby on Rails Class @ Marakana","created":"Sat Aug 09 16:12:38 EDT 2008","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/1\/7\/1\/8\/global_5087912.jpeg","link":"http:\/\/www.meetup.com\/sfruby\/\/photos\/413582\/","descr":"Great Ruby on Rails class taught by Matt Knox of RubyU. Thanks for everything Matt. Classroom space generously provided by Marko of Marakana (www.marakana.com)."},{"member_url":"http:\/\/www.meetup.com\/members\/4362464","albumtitle":"Meetup Group Photo Album","created":"Wed Jul 16 10:24:41 EDT 2008","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/1\/6\/6\/7\/global_4811735.jpeg","link":"http:\/\/www.meetup.com\/state-college-ruby\/\/photos\/397500\/","descr":""},{"member_url":"http:\/\/www.meetup.com\/members\/4362464","albumtitle":"An Informal Introduction to Ruby on Rails","created":"Wed Jul 16 10:20:42 EDT 2008","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/1\/6\/3\/8\/global_4811688.jpeg","link":"http:\/\/www.meetup.com\/state-college-ruby\/\/photos\/397496\/","descr":"The door at 234 E College Ave to go upstairs to the Blue Line"},{"member_url":"http:\/\/www.meetup.com\/members\/4236512","albumtitle":"Meetup Group Photo Album","created":"Sun Jun 29 22:23:31 EDT 2008","photo_url":"http:\/\/photos1.meetupstatic.com\/photos\/event\/d\/1\/a\/global_4629354.jpeg","link":"http:\/\/ruby.meetup.com\/113\/\/photos\/386661\/","descr":""}],"meta":{"lon":"","count":10,"next":"http:\/\/api.meetup.com\/photos\/?order=photo_album_id&topic=ruby&key=4824d125e1c13f6253694f65383d33&page=10&format=json&offset=1","link":"http:\/\/api.meetup.com\/photos\/","total_count":58,"url":"http:\/\/api.meetup.com\/photos\/?order=photo_album_id&topic=ruby&key=4824d125e1c13f6253694f65383d33&page=10&format=json&offset=0","id":"","title":"Meetup Photos","updated":"2008-10-30 07:00:25 EDT","description":"API method for accessing meetup photos","method":"Photos","lat":""}}
@@ -1 +0,0 @@
1
- {"results":[{"zip":"28270","lon":"-80.76000213623047","link":"http:\/\/www.meetup.com\/members\/3170722","guests":"0","answers":[],"state":"NC","city":"Charlotte","country":"us","coord":"35.119998931884766","response":"yes","updated":"Thu Oct 02 22:27:22 EDT 2008","created":"Thu Oct 02 22:27:22 EDT 2008","name":"Brian Blanton","comment":""},{"zip":"28115","lon":"-80.81999969482422","link":"http:\/\/www.meetup.com\/members\/7780724","guests":"0","answers":[],"state":"NC","city":"Mooresville","country":"us","coord":"35.58000183105469","response":"yes","updated":"Thu Oct 09 23:00:04 EDT 2008","created":"Thu Oct 09 23:00:04 EDT 2008","name":"Jared Pace","comment":""},{"zip":"28270","lon":"-80.76000213623047","link":"http:\/\/www.meetup.com\/members\/5032281","guests":"0","answers":[],"state":"NC","city":"Charlotte","country":"us","coord":"35.119998931884766","response":"yes","updated":"Fri Oct 31 18:24:43 EDT 2008","created":"Fri Oct 31 18:24:43 EDT 2008","name":"Jim Van Fleet","comment":""},{"zip":"28078","lon":"-80.8499984741211","link":"http:\/\/www.meetup.com\/members\/69074","guests":"0","answers":[],"state":"NC","city":"Huntersville","country":"us","coord":"35.40999984741211","response":"yes","updated":"Thu Oct 30 16:01:14 EDT 2008","created":"Thu Oct 30 16:01:14 EDT 2008","name":"Larry Staton Jr.","comment":""}],"meta":{"lon":"","count":4,"link":"http:\/\/api.meetup.com\/rsvps\/","next":"","total_count":4,"url":"http:\/\/api.meetup.com\/rsvps\/?order=name&key=4824d125e1c13f6253694f65383d33&event_id=8876699&page=10&format=json&offset=0","id":"","title":"Rsvps for meetups","updated":"2008-10-31 18:24:43 EDT","description":"API method for accessing meetup rsvps","method":"Rsvps","lat":""}}
@@ -1 +0,0 @@
1
- {"results":[{"id":"10209","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet others interested in all aspects of Web Technology. Gather to discuss Development, Standards, Networks, Marketing, New Web Technology, Graphic Design, Databases, Corporate Web, Webmasters, Contract Development, Promotion and Business. Open to anyone interested in learning more about web technology!","name":"Web Technology","link":"http:\/\/web.meetup.com\/","urlkey":"web","members":"80227"},{"id":"9696","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet with local people to discuss and show-and-tell new technology.","name":"New Technology","link":"http:\/\/newtech.meetup.com\/","urlkey":"newtech","members":"47900"},{"id":"10102","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet other locals who earn their living from the Internet. A place\r\nfor people of all disciplines to get together and discuss new and emerging trends in our field. What's the Next New Thing going to be? Which innovation will spawn the next billion dollar IPO? Which innovation will change the way we view the world? Gather to discuss how the Internet will continue to impact our work, play, lives, and society.","name":"Internet Professionals","link":"http:\/\/internetpro.meetup.com\/","urlkey":"internetpro","members":"27624"},{"id":"429","updated":"Tue Aug 05 09:21:54 EDT 2008","description":"Meet other futurists and talk about the accelerating change in technology, science, society, business.","name":"Future","link":"http:\/\/future.meetup.com\/","urlkey":"future","members":"9362"},{"id":"189","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet other local Java developers to talk about code, architecture, and innovation. Both beginners and pros are welcome!","name":"Java","link":"http:\/\/java.meetup.com\/","urlkey":"java","members":"6008"},{"id":"10110","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet other locals interested in Interaction Design, the professional discipline that defines how interactive products communicate their functionality to users and how users can interact with them. For more infromation, check out www.ixdg.org. Professionals and non-professionals alike are Welcome!","name":"Interaction Design","link":"http:\/\/ixd.meetup.com\/","urlkey":"ixd","members":"5754"},{"id":"188","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet other local Linux enthusiasts to talk about the latest news and software.","name":"Linux","link":"http:\/\/linux.meetup.com\/","urlkey":"linux","members":"4704"},{"id":"9710","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet with other local IT Professionals, contractors, and all those with an interest in the field. Gather to network, swap tips, and make new friends!","name":"IT Professional","link":"http:\/\/itpro.meetup.com\/","urlkey":"itpro","members":"3055"},{"id":"10043","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Come meet with other Scrum Users. Gather and discuss how the Scrum process can be used to to manage and control development work.","name":"Scrum","link":"http:\/\/scrum.meetup.com\/","urlkey":"scrum","members":"2399"},{"id":"7203","updated":"Tue Aug 05 09:21:55 EDT 2008","description":"Meet other local people who are interested in a discussion on the issue of Education & Technology. Gather and trade ideas on how to bring the latest technology into our schools and businesses.","name":"Education & Technology","link":"http:\/\/edtech.meetup.com\/","urlkey":"edtech","members":"2150"},{"id":"4036","updated":"Tue Aug 05 09:21:54 EDT 2008","description":"Meet other local Biotechnology Enthusiasts. Discuss healthcare, medical devices, cell biology, life science research, pharmaceuticals, and drug discovery start-ups that would be beneficial to society and the development of new technologies.","name":"Biotech","link":"http:\/\/biotech.meetup.com\/","urlkey":"biotech","members":"2141"},{"id":"7860","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet other local Technical Writers and Communicators to discuss issues, share information, and newtork.","name":"Technical Writers","link":"http:\/\/techwriter.meetup.com\/","urlkey":"techwriter","members":"1556"},{"id":"682","updated":"Tue Aug 05 09:21:54 EDT 2008","description":"Meet other local Robotics Enthusiasts to discuss ideas, building techniques, and have fun!","name":"Robotics","link":"http:\/\/robotics.meetup.com\/","urlkey":"robotics","members":"1034"},{"id":"201","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet other local Wi-Fi Users to talk about the latest developments in wireless technology.","name":"Wi-Fi","link":"http:\/\/wifi.meetup.com\/","urlkey":"wifi","members":"927"},{"id":"10215","updated":"Tue Aug 05 09:21:55 EDT 2008","description":"Meet other locals to give or receive instruction using a computer. Gather to learn more about softwares, programming, operating systems, the internet, and more! Also meet other tutors to share ideas.","name":"Computer Tutoring","link":"http:\/\/comptutor.meetup.com\/","urlkey":"comptutor","members":"804"},{"id":"10248","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet other local who use Plone, a powerful open source content management system that makes it easy to build websites. It adheres to all the web standards, is cross-platform and has a friendly, worldwide community of developers and users. Gather to to share knowledge about Plone, demonstrate Plone products and network with like-minded individuals.","name":"Plone","link":"http:\/\/plone.meetup.com\/","urlkey":"plone","members":"413"},{"id":"6768","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet other local Red Hat users to discuss Linux, Open Source and Free Software.","name":"Red Hat","link":"http:\/\/redhat.meetup.com\/","urlkey":"redhat","members":"359"},{"id":"10053","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet with other local WiMax Users to discuss the future of Wireless Technology.","name":"WiMax","link":"http:\/\/wimax.meetup.com\/","urlkey":"wimax","members":"287"},{"id":"1296","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet other local fans of Tech TV! Hook up and talk about your favorite tech shows. Stop with the posts to the message boards and Leoville and get chatting in real life! A TechTV host may just pop up in your area!","name":"TechTV","link":"http:\/\/techtv.meetup.com\/","urlkey":"techtv","members":"219"},{"id":"10166","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet other locals interested in Debian, a widely used distribution of free software developed through the collaboration of volunteers from around the world. Since its inception, the released system, Debian GNU\/Linux, has been based on the Linux kernel with many basic tools of the operating system from the GNU project.","name":"Debian","link":"http:\/\/debian.meetup.com\/","urlkey":"debian","members":"177"},{"id":"10386","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet others in your local area interested in Home Automation. Discuss this integration of intelligence into a home -- a.k.a. \"smart homes.\" Learn to create a home which is aware of its surroundings and can communicate with the homeowner or other entities, as well as control its own lighting, HVAC, irrigation, etc.","name":"Home Automation","link":"http:\/\/homeautomation.meetup.com\/","urlkey":"homeautomation","members":"156"},{"id":"478","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet other local Technical Support Reps. Share horror stories and coping methods. We help others all day long. It's time to help ourselves.","name":"Tech Support Rep","link":"http:\/\/techsup.meetup.com\/","urlkey":"techsup","members":"41"},{"id":"2876","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet other local Automotive Technicians. A local forum to network and spread information on products and services that affect our industry. Both hobbiests and career auto technicians are welcome.","name":"Auto Technicians","link":"http:\/\/autotech.meetup.com\/","urlkey":"autotech","members":"41"},{"id":"2216","updated":"Tue Aug 12 09:16:02 EDT 2008","description":"Meet other health and information technology professionals to talk about CyberMedicine and how the internet and technology are shaping medicine's future. Pioneer and explore!","name":"CyberMedicine","link":"http:\/\/cybermedicine.meetup.com\/","urlkey":"cybermedicine","members":"31"},{"id":"545","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet other local Emergency Medical Technicians. Gather and discuss this profession. Those in training are also welcome!","name":"Emergency Medical Technicians","link":"http:\/\/emts.meetup.com\/","urlkey":"emts","members":"24"},{"id":"187","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet with other local Mozilla developers and users to talk about the latest releases.","name":"Mozilla","link":"http:\/\/mozilla.meetup.com\/","urlkey":"mozilla","members":"20"},{"id":"2481","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet other local members of the informal organization for technical women in computing.Check out Systers","name":"Systers","link":"http:\/\/systers.meetup.com\/","urlkey":"systers","members":"0"},{"id":"6524","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet with fellow comrades of the Unscrewed Army to talk about the show.","name":"Unscrewed","link":"http:\/\/unscrewed.meetup.com\/","urlkey":"unscrewed","members":"0"},{"id":"6747","updated":"Tue Aug 05 09:21:53 EDT 2008","description":"Meet other local people who love new technolgy and electronic toys. Discuss all the latest computers, PDAs, plasma & LCD TVs, bluetooth wireless, etc.) Anything new and advanced is open for discussion!","name":"Tech Toys","link":"http:\/\/techtoys.meetup.com\/","urlkey":"techtoys","members":"0"}],"meta":{"lon":"","count":29,"link":"http:\/\/api.meetup.com\/topics\/","next":"","total_count":29,"url":"http:\/\/api.meetup.com\/topics\/?order=members&search=tech&key=4824d125e1c13f6253694f65383d33&page=200&format=json&offset=0","id":"","title":"Meetup Topics","updated":"2008-08-12 09:16:02 EDT","description":"API method for accessing meetup topics","method":"Topics","lat":""}}