Skip to content

Commit

Permalink
whole new app, entirely different
Browse files Browse the repository at this point in the history
  • Loading branch information
loganwatanabe committed Oct 13, 2014
1 parent 901c8e2 commit e55a5a1
Show file tree
Hide file tree
Showing 303 changed files with 28,682 additions and 302 deletions.
82 changes: 60 additions & 22 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,48 +1,86 @@
source 'https://rubygems.org'


# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.1.5'
gem 'rails', '4.0.3'

# Use sqlite3 as the database for Active Record
gem 'sqlite3'

gem 'pg'

gem 'mysql2'

gem 'ferry'
gem 'progressbar'

# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.3'
gem 'sass-rails', '~> 4.0.0'

# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'

# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'

# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# gem 'therubyracer', platforms: :ruby

# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'

# Turbolinks isn't playing nicely with foundation so for now remove it from standard rails
# gem 'turbolinks'

# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'jbuilder', '~> 1.2'

# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', group: :development
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end

# Use a gem for handling pagination
gem 'will_paginate'

# Use a gem for handling date validation
gem 'validates_timeliness'

# Use simple_form to clean up form views
gem 'simple_form'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Use unicorn as the app server
# gem 'unicorn'
# Use foundation for base CSS
gem 'foundation-rails'

# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
# Use geocoder to get latitude and longitude data
gem 'geocoder'

# Use debugger
# gem 'debugger', group: [:development, :test]
# Use carrierwave to upload instructor photos
gem 'carrierwave'

gem 'ferry'
# Use ActiveModel has_secure_password
gem 'bcrypt-ruby', '3.1.5'

# Additional gems that are very useful in Rails development
group :development do
gem 'quiet_assets'
gem 'thin'
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'wirble'
gem 'hirb'
gem 'faker'
end

# Gems used only in testing
group :test do
gem 'shoulda'
gem 'shoulda-matchers'
gem 'factory_girl_rails'
gem 'mocha', require: false
gem 'simplecov'
gem 'turn'
gem 'single_test'
gem 'cucumber-rails', require: false
gem 'database_cleaner'
gem 'launchy'
gem 'capybara'
end
Loading

0 comments on commit e55a5a1

Please sign in to comment.