Skip to content

Commit

Permalink
Initial commit. Suspenders app
Browse files Browse the repository at this point in the history
  • Loading branch information
c-lliope committed Sep 9, 2016
0 parents commit 87e114a
Show file tree
Hide file tree
Showing 130 changed files with 2,097 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .ctags
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--recurse=yes
--exclude=vendor
13 changes: 13 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# https://github.com/ddollar/forego
ASSET_HOST=localhost:3000
APPLICATION_HOST=localhost:3000
PORT=3000
RACK_ENV=development
RACK_MINI_PROFILER=0
SECRET_KEY_BASE=development_secret
EXECJS_RUNTIME=Node
SMTP_ADDRESS=smtp.example.com
SMTP_DOMAIN=example.com
SMTP_PASSWORD=password
SMTP_USERNAME=username
WEB_CONCURRENCY=1
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
!.keep
*.DS_Store
*.swo
*.swp
/.bundle
/.env.local
/coverage/*
/db/*.sqlite3
/log/*
/public/system
/public/assets
/tags
/tmp/*
14 changes: 14 additions & 0 deletions .hound.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# See https://houndci.com/configuration for help.
haml:
# config_file: .haml-style.yml
enabled: true
javascript:
# config_file: .javascript-style.json
enabled: true
# ignore_file: .javascript_ignore
ruby:
# config_file: .ruby-style.yml
enabled: true
scss:
# config_file: .scss-style.yml
enabled: true
2 changes: 2 additions & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--color
--require spec_helper
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.3.1
66 changes: 66 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
source "https://rubygems.org"

ruby "2.3.1"

gem "autoprefixer-rails"
gem "delayed_job_active_record"
gem "flutie"
gem "honeybadger"
gem "jquery-rails"
gem "normalize-rails", "~> 3.0.0"
gem "pg"
gem "puma"
gem "rack-canonical-host"
gem "rails", "~> 5.0.0"
gem "recipient_interceptor"
gem "sass-rails", "~> 5.0"
gem "simple_form"
gem "skylight"
gem "sprockets", ">= 3.0.0"
gem "sprockets-es6"
gem "suspenders"
gem "title"
gem "uglifier"

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

group :development, :test do
gem "awesome_print"
gem "bullet"
gem "bundler-audit", ">= 0.5.0", require: false
gem "dotenv-rails"
gem "factory_girl_rails"
gem "pry-byebug"
gem "pry-rails"
gem "rspec-rails", "~> 3.5.0.beta4"
end

group :development, :staging do
gem "rack-mini-profiler", require: false
end

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

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

gem 'high_voltage'
gem 'bourbon', '5.0.0.beta.6'
gem 'neat', '~> 1.8.0'
gem 'refills', group: [:development, :test]
Loading

0 comments on commit 87e114a

Please sign in to comment.