https://github.com/aaronrenner/durango-coders-rubymotion-demo
Demo app created at the DurangoCoders RubyMotion presentation
https://github.com/aaronrenner/durango-coders-rubymotion-demo
Last synced: 11 months ago
JSON representation
Demo app created at the DurangoCoders RubyMotion presentation
- Host: GitHub
- URL: https://github.com/aaronrenner/durango-coders-rubymotion-demo
- Owner: aaronrenner
- Created: 2013-05-24T21:43:28.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-05-24T21:47:51.000Z (about 13 years ago)
- Last Synced: 2025-01-19T11:32:05.013Z (over 1 year ago)
- Language: Ruby
- Size: 332 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Durango Coders RubyMotion Demo
This app was developed during a live demo to the Durango Coders about RubyMotion. The goal of the talk
was to show how RubyMotion can integrate directly with ObjectiveC, but RubyMotion wrappers allow developers
to create the same app with much less code.
This app shows the Durango Coders membership list by using the Meetup.com API (http://www.meetup.com/meetup_api/docs/2/groups/).
The slides from the presentation are available here: http://aaronrenner.github.io/durango-coders-rubymotion-presentation/
## Running the app
1. Install rubymotion and XCode
2. Get your Meetup.com API Key (http://www.meetup.com/meetup_api/key/)
3. Run the app with the following commands
bundle #installs dependencies
bundle exec rake MEETUP_API_KEY=
Note: You can also create a .env file in the project root that contains your Meetup API Key
echo "MEETUP_API_KEY=" >> .env
bundle exec rake