Skip to content

Commit 85d498c

Browse files
committed
initial commit
0 parents  commit 85d498c

File tree

122 files changed

+2089
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+2089
-0
lines changed

.ctags

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--recurse=yes
2+
--exclude=vendor

.env

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# https://github.com/ddollar/forego
2+
ASSET_HOST=localhost:3000
3+
APPLICATION_HOST=localhost:3000
4+
PORT=3000
5+
RACK_ENV=development
6+
RACK_MINI_PROFILER=0
7+
SECRET_KEY_BASE=development_secret
8+
EXECJS_RUNTIME=Node
9+
SMTP_ADDRESS=smtp.example.com
10+
SMTP_DOMAIN=example.com
11+
SMTP_PASSWORD=password
12+
SMTP_USERNAME=username
13+
WEB_CONCURRENCY=1

.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
!.keep
2+
*.DS_Store
3+
*.swo
4+
*.swp
5+
/.bundle
6+
/.env.local
7+
/coverage/*
8+
/db/*.sqlite3
9+
/log/*
10+
/public/system
11+
/public/assets
12+
/tags
13+
/tmp/*

.hound.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# See https://houndci.com/configuration for help.
2+
haml:
3+
# config_file: .haml-style.yml
4+
enabled: true
5+
javascript:
6+
# config_file: .javascript-style.json
7+
enabled: true
8+
# ignore_file: .javascript_ignore
9+
ruby:
10+
# config_file: .ruby-style.yml
11+
enabled: true
12+
scss:
13+
# config_file: .scss-style.yml
14+
enabled: true

.rspec

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--color
2+
--require spec_helper

.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.4.0

Gemfile

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
source "https://rubygems.org"
2+
3+
ruby "2.4.0"
4+
5+
gem "autoprefixer-rails"
6+
gem "delayed_job_active_record"
7+
gem "flutie"
8+
gem "honeybadger"
9+
gem "jquery-rails"
10+
gem "normalize-rails", "~> 3.0.0"
11+
gem "pg"
12+
gem "puma"
13+
gem "rack-canonical-host"
14+
gem "rails", "~> 5.0.0"
15+
gem "recipient_interceptor"
16+
gem "sass-rails", "~> 5.0"
17+
gem "simple_form"
18+
gem "skylight"
19+
gem "sprockets", ">= 3.0.0"
20+
gem "suspenders"
21+
gem "title"
22+
gem "uglifier"
23+
24+
group :development do
25+
gem "listen"
26+
gem "spring"
27+
gem "spring-commands-rspec"
28+
gem "web-console"
29+
end
30+
31+
group :development, :test do
32+
gem "awesome_print"
33+
gem "bullet"
34+
gem "bundler-audit", ">= 0.5.0", require: false
35+
gem "dotenv-rails"
36+
gem "factory_girl_rails"
37+
gem "pry-byebug"
38+
gem "pry-rails"
39+
gem "rspec-rails", "~> 3.5"
40+
end
41+
42+
group :development, :staging do
43+
gem "rack-mini-profiler", require: false
44+
end
45+
46+
group :test do
47+
gem "capybara-webkit"
48+
gem "database_cleaner"
49+
gem "formulaic"
50+
gem "launchy"
51+
gem "shoulda-matchers"
52+
gem "simplecov", require: false
53+
gem "timecop"
54+
gem "webmock"
55+
end
56+
57+
group :staging, :production do
58+
gem "rack-timeout"
59+
end
60+
61+
gem 'high_voltage'
62+
gem 'bourbon', '~> 5.0.0.beta.7'
63+
gem 'neat', '~> 2.0.0.beta.1'
64+
gem 'refills', group: [:development, :test]

0 commit comments

Comments
 (0)