Launch Site Meeple.me
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 "Fabulous Pandas"
Description
App to suggest boardgames you should buy based on your existing collection
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.
BoardGameGeek API to pull user collections
Flickr for creative commons images
Amazon affiliate API for affilate links
meeple.me domain name purchased from hover.com
source 'https://rubygems.org'
gem 'rails',...
BoardGameGeek API to pull user collections
Flickr for creative commons images
Amazon affiliate API for affilate links
meeple.me domain name purchased from hover.com
source 'https://rubygems.org'
gem 'rails', '3.2.8'
gem 'mysql2'
gem 'capistrano'
gem 'omniauth-twitter'
gem 'omniauth-facebook'
gem 'state_machine'
gem 'cancan'
gem 'simple_form'
gem 'redis'
gem 'resque'
gem 'activeadmin'
gem "meta_search", '>= 1.1.0.pre'
gem 'httparty'
gem 'xml-simple'
gem 'twitter-bootstrap-rails', :git => 'git://github.com/seyhunak/twitter-bootstrap-rails.git'
gem 'god'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
group :production do
gem 'therubyracer'
end
group :test do
gem 'minitest-rails'
gem 'mocha'
gem 'capybara'
gem 'debugger'
end
gem 'jquery-rails'
2012