Skip to content

Commit

Permalink
Initial commit with Suspenders
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalcora committed Jun 10, 2015
0 parents commit 5fe9a9f
Show file tree
Hide file tree
Showing 99 changed files with 2,022 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .gitignore
@@ -0,0 +1,14 @@
!.keep
*.DS_Store
*.swo
*.swp
/.bundle
/.env
/.foreman
/coverage/*
/db/*.sqlite3
/log/*
/public/system
/public/assets
/tags
/tmp/*
2 changes: 2 additions & 0 deletions .rspec
@@ -0,0 +1,2 @@
--color
--require spec_helper
1 change: 1 addition & 0 deletions .ruby-version
@@ -0,0 +1 @@
2.2.2
6 changes: 6 additions & 0 deletions .sample.env
@@ -0,0 +1,6 @@
# http://ddollar.github.com/foreman/
ASSET_HOST=localhost:3000
HOST=localhost:3000
RACK_ENV=development
SECRET_KEY_BASE=development_secret
EXECJS_RUNTIME=Node
21 changes: 21 additions & 0 deletions .travis.yml
@@ -0,0 +1,21 @@
before_install:
- "echo '--colour' > ~/.rspec"
- "echo 'gem: --no-document' > ~/.gemrc"
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
install:
- bin/setup
branches:
only:
- master
cache:
- bundler
language:
- ruby
notifications:
email: false
rvm:
- 2.2.2
addons:
postgresql: "9.3"
sudo: false
59 changes: 59 additions & 0 deletions Gemfile
@@ -0,0 +1,59 @@
source "https://rubygems.org"

ruby "2.2.2"

gem "airbrake"
gem "autoprefixer-rails"
gem "bourbon", "~> 4.2.0"
gem "coffee-rails", "~> 4.1.0"
gem "delayed_job_active_record"
gem "email_validator"
gem "flutie"
gem "high_voltage"
gem "i18n-tasks"
gem "jquery-rails"
gem "neat", "~> 1.7.0"
gem "newrelic_rpm", ">= 3.9.8"
gem "normalize-rails", "~> 3.0.0"
gem "pg"
gem "rack-canonical-host"
gem "rails", "4.2.1"
gem "recipient_interceptor"
gem "refills"
gem "sass-rails", "~> 5.0"
gem "simple_form"
gem "title"
gem "uglifier"
gem "unicorn"

group :development do
gem "spring"
gem "spring-commands-rspec"
gem "web-console"
end

group :development, :test do
gem "awesome_print"
gem "bundler-audit", require: false
gem "byebug"
gem "dotenv-rails"
gem "factory_girl_rails"
gem "pry-rails"
gem "rspec-rails", "~> 3.1.0"
end

group :test do
gem "capybara-webkit", ">= 1.2.0"
gem "database_cleaner"
gem "formulaic"
gem "launchy"
gem "shoulda-matchers", require: false
gem "simplecov", require: false
gem "timecop"
gem "webmock"
end

group :staging, :production do
gem "rails_stdout_logging"
gem "rack-timeout"
end

0 comments on commit 5fe9a9f

Please sign in to comment.