Skip to content
This repository has been archived by the owner on Mar 14, 2019. It is now read-only.

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
Empty Rails app with Sidekiq, created with Suspenders by Thoughtbot.
  • Loading branch information
mtthwhggns committed Mar 5, 2016
0 parents commit adf960f
Show file tree
Hide file tree
Showing 94 changed files with 1,834 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .ctags
@@ -0,0 +1,2 @@
--recurse=yes
--exclude=vendor
1 change: 1 addition & 0 deletions .foreman
@@ -0,0 +1 @@
port: 3000
39 changes: 39 additions & 0 deletions .gitignore
@@ -0,0 +1,39 @@
*.rbc
capybara-*.html
.rspec
/log
/tmp
/db/*.sqlite3
/db/*.sqlite3-journal
/public/system
/coverage/
/spec/tmp
**.orig
rerun.txt
pickle-email-*.html

# TODO Comment out these rules if you are OK with secrets being uploaded to the
# repo
config/initializers/secret_token.rb
config/secrets.yml

## Environment normalization:
/.bundle
/vendor/bundle

# these should all be checked in to normalize the environment:
# Gemfile.lock, .ruby-version, .ruby-gemset

# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
.rvmrc

# if using bower-rails ignore default bower_components path bower.json files
/vendor/assets/bower_components
*.bowerrc
bower.json

# Ignore pow environment settings
.powenv

# Ignore Byebug command history file.
.byebug_history
5 changes: 5 additions & 0 deletions .rubocop.yml
@@ -0,0 +1,5 @@
Rails:
Enabled: true

Style/StringLiterals:
EnforcedStyle: double_quotes
1 change: 1 addition & 0 deletions .ruby-version
@@ -0,0 +1 @@
2.3.0
10 changes: 10 additions & 0 deletions .sample.env
@@ -0,0 +1,10 @@
# http://ddollar.github.com/foreman/
ASSET_HOST=localhost:3000
APPLICATION_HOST=localhost:3000
RACK_ENV=development
SECRET_KEY_BASE=development_secret
EXECJS_RUNTIME=Node
SMTP_ADDRESS=smtp.example.com
SMTP_DOMAIN=example.com
SMTP_PASSWORD=password
SMTP_USERNAME=username
60 changes: 60 additions & 0 deletions Gemfile
@@ -0,0 +1,60 @@
source "https://rubygems.org"

ruby "2.3.0"

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

group :development do
gem "quiet_assets"
gem "refills"
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 "i18n-tasks"
gem "pry-rails"
gem "rspec-rails", "~> 3.3.0"
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 "rails_stdout_logging"
gem "rack-timeout"
end

0 comments on commit adf960f

Please sign in to comment.