Launch Site OMG! You Gotta See
This is an entry in the 2012 Rails Rumble. After checking it out, we encourage you
to leave feedback and then take a look at the hundreds of other amazing entries.
By "Imposing"
Description
TL;DR This site needs no introduction. Just start using it. You'll figure it out. :D
But! If you want to know more, "OMG! You Gotta See" is a site to keep track of movies and TV shows you and your friends haven't yet seen. The site is fully responsive, since most users will interact with it on their mobile devices. You don't want to wait to get back to your computer when you just learned that your friend hasn't seen Titanic (OMG! Really?!?).
Once you sign up, you'll also receive a weekly email reminding you of the movies and shows you haven't yet seen. The email will have Netflix and iTunes Store links (if available) so you can easily jump into remedying your cultural ignorance.
In summary, yeah... OMG! You Gotta See is something of a glorified todo list. But you don't add things you need to see, you add things your friends need to see. It's a problem we have, so we thought we'd share our solution with you. Have fun! :)
Built By
Built With
Interested in seeing what was used to build this application? Resources may include things like open source libraries, third party APIs, and icons.
We're using the Netflix API, Mandrill and Freebase.
Gemfile:
source 'https://rubygems.org'
gem 'rails', '3.2.8'
gem 'pg'
gem 'capistrano'
gem 'decent_exposure'
gem 'devise', '>= 2.1.2'
gem 'draper'
gem 'fo...
We're using the Netflix API, Mandrill and Freebase.
Gemfile:
source 'https://rubygems.org'
gem 'rails', '3.2.8'
gem 'pg'
gem 'capistrano'
gem 'decent_exposure'
gem 'devise', '>= 2.1.2'
gem 'draper'
gem 'formtastic'
gem 'gravatar_image_tag'
gem 'haml-rails'
gem 'jquery-rails'
gem 'kaminari'
gem 'netflix4r'
gem 'rvm-capistrano'
group :development, :test do
gem 'factory_girl_rails', '>= 4.0.0'
gem 'jazz_hands'
gem 'rspec-rails', '>= 2.11.0'
gem 'shoulda-matchers'
gem 'thin', '>= 1.4.1'
end
group :test do
gem 'capybara', '>= 1.1.2'
gem 'cucumber-rails', '>= 1.3.0', :require => false
gem 'database_cleaner', '>= 0.8.0'
gem 'email_spec', '>= 1.2.1'
gem 'launchy', '>= 2.1.2'
end
group :production do
gem 'unicorn', '>= 4.3.1'
end
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'compass-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
2012