Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cesidio committed Sep 5, 2012
0 parents commit 833f703
Show file tree
Hide file tree
Showing 236 changed files with 9,368 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .gitignore
@@ -0,0 +1,39 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile ~/.gitignore_global

# Ignore bundler config
/.bundle

# Ignore Mac datastore files
.DS_Store

# Ignore chrome driver log
chromedriver.log

# Ignore simplecov reports
coverage

# Ignore rails_best_practices report
rails_best_practices_output.html

# Ignore brakeman report
brakeman.html

# Ignore the default SQLite database.
/db/*.sqlite3

# Ignore all logfiles and tempfiles.
/log/*.log
/tmp

# Ignore file uploads
/public/uploads

# Ignore sensitive data
/config/settings/local.rb

# Ignore Redis' dataset snapshot
dump.rdb
1 change: 1 addition & 0 deletions .rspec
@@ -0,0 +1 @@
--colour --drb
2 changes: 2 additions & 0 deletions .slugignore
@@ -0,0 +1,2 @@
features
spec
63 changes: 63 additions & 0 deletions Gemfile
@@ -0,0 +1,63 @@
source 'https://rubygems.org'

ruby '1.9.3'
gem 'rails', '3.2.7'

gem 'unicorn'

gem 'mongoid', '< 3.0.0.rc' # NOTE mongoind dependant gems are not ready for mongodb 3.0
gem 'mongoid_geospatial', git: 'git://github.com/kristianmandrup/mongoid_geospatial.git'
gem 'bson', '1.6.2'
gem 'bson_ext', '1.6.2'
gem 'thin'
gem 'haml'
gem 'therubyracer'
gem 'omniauth-facebook'
gem "koala"
gem 'validates_timeliness'
gem 'rest-client'
gem 'nokogiri'
gem 'http_accept_language'
gem 'jquery-rails'
gem 'client_side_validations'
#gem 'wicked'
gem 'resque', require: 'resque/server'
gem 'kaminari'
gem 'rabl'
gem 'simpleconfig'

group :development, :test do
gem "bullet"
gem 'debugger'
gem 'pry'
gem 'pry-rails'
gem 'factory_girl_rails'
gem 'faker'
gem 'delorean'
end

group :test do
gem 'rspec-rails', '~> 2.6'
gem "mongoid-rspec", '~> 1.4.5' # NOTE this gem was updated to mongdb 3.0 starting from version 1.4.6
gem 'cucumber-rails', require: false
gem 'email_spec'
gem 'action_mailer_cache_delivery'
gem 'spork', '~> 1.0rc'
gem 'database_cleaner'
gem 'launchy'
gem 'simplecov', require: false
gem 'webmock', require: false
end

# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'less-rails'
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'twitter-bootstrap-rails'
gem 'compass-rails'
gem 'haml_assets'
gem 'handlebars_assets'
end

0 comments on commit 833f703

Please sign in to comment.