Launch Site Chores Corp.
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 "GreenRuby"
Description
Chores Corp. helps you manage your house chore with your roommates or family members in a very fun way. You receive cool badges and corporate titles for completing chores!
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.
gem 'rails-apps-composer'
gem 'rails', '3.2.8'
gem 'sqlite3'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'font-awesome-sass-rails'
end
gem ...
gem 'rails-apps-composer'
gem 'rails', '3.2.8'
gem 'sqlite3'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'font-awesome-sass-rails'
end
gem 'jquery-rails'
gem "haml", ">= 3.1.7"
gem "haml-rails", ">= 0.3.5", :group => :development
gem "hpricot", ">= 0.8.6", :group => :development
gem "ruby_parser", ">= 2.3.1", :group => :development
gem "rspec-rails", ">= 2.11.0", :group => [:development, :test]
gem "email_spec", ">= 1.2.1", :group => :test
gem "factory_girl_rails", ">= 4.1.0", :group => [:development, :test]
gem "bootstrap-sass", ">= 2.1.0.0"
gem "omniauth", ">= 1.1.1"
gem "omniauth-facebook"
gem "cancan", ">= 1.6.8"
gem "rolify", ">= 3.2.0"
gem "simple_form", ">= 2.0.4"
gem "cocoon"
gem "quiet_assets", ">= 1.0.1", :group => :development
gem 'capistrano'
gem 'capistrano_colors'
gem "inherited_resources"
gem "country_select"
gem "geocoder"
gem "gmaps4rails"
gem "turbolinks"
gem 'jquery-turbolinks'
group :production do
gem 'mysql2' # If using mysql in development, this can be outside the production group.
gem 'therubyracer'
end
group :development do
# This is a set of gems that allows you to refresh once you save changes in your app folder
# automatically.
# You must donwload a plugin for your Chrome or Safari browser called 'livereload'
# Then you need to run your app using rails s or unicorn
# And run 'guard' in your terminal
gem "guard"
gem "guard-livereload"
gem "terminal-notifier-guard"
gem "pry"
end
2012