Skip to content

Commit 45d344e

Browse files
committed
initial commit
0 parents  commit 45d344e

File tree

152 files changed

+6278
-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.

152 files changed

+6278
-0
lines changed

.gitignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-journal
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*.log
16+
/tmp
17+
.ruby-version
18+
.DS_Store
19+
.env

.rspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--color

.ruby-gemset

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
install-python

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
language: ruby
2+
rvm:
3+
- 2.3.1
4+
notifications:
5+
slack:
6+
secure: E77fRRA0ZyDPHi8keWKiIO2fGouqTeOcAWyFHyjsenxJ5VMJ4u/T5oLE59Nv+m3CgTBZ7N2npkTZzy7tcCZe1lbY/+DqW6aJxrH0+GvOqPrkVfDOa+FOtQgmmzBHCxcT9iysvCP792VzLhKNDOiTmjCUfVsDkrHlJ3uSSPT4PxU=

Gemfile

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
source 'https://rubygems.org'
2+
ruby "2.3.1"
3+
4+
gem 'rails', '4.2.0'
5+
6+
group :development do
7+
end
8+
9+
group :development, :test do
10+
gem "pry-rails"
11+
gem "better_errors"
12+
gem "binding_of_caller"
13+
gem 'rspec-rails', '~> 3.0.0.beta'
14+
gem 'factory_girl_rails'
15+
end
16+
17+
group :test do
18+
gem 'cucumber-rails', require: false
19+
end
20+
21+
group :production do
22+
gem 'rails_12factor'
23+
end
24+
25+
gem 'sass-rails'
26+
gem 'bootstrap-sass', '~> 3.1.1.0'
27+
gem "font-awesome-rails", '~> 3.2.1.2'
28+
gem 'uglifier', '>= 1.3.0'
29+
gem 'coffee-rails'
30+
gem 'jquery-rails'
31+
gem 'turbolinks'
32+
gem 'jbuilder', '~> 1.2'
33+
gem 'wicked', '~> 1.1.0'
34+
gem 'unicorn', require: false
35+
gem 'figaro'

Gemfile.lock

Lines changed: 242 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,242 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (4.2.0)
5+
actionpack (= 4.2.0)
6+
actionview (= 4.2.0)
7+
activejob (= 4.2.0)
8+
mail (~> 2.5, >= 2.5.4)
9+
rails-dom-testing (~> 1.0, >= 1.0.5)
10+
actionpack (4.2.0)
11+
actionview (= 4.2.0)
12+
activesupport (= 4.2.0)
13+
rack (~> 1.6.0)
14+
rack-test (~> 0.6.2)
15+
rails-dom-testing (~> 1.0, >= 1.0.5)
16+
rails-html-sanitizer (~> 1.0, >= 1.0.1)
17+
actionview (4.2.0)
18+
activesupport (= 4.2.0)
19+
builder (~> 3.1)
20+
erubis (~> 2.7.0)
21+
rails-dom-testing (~> 1.0, >= 1.0.5)
22+
rails-html-sanitizer (~> 1.0, >= 1.0.1)
23+
activejob (4.2.0)
24+
activesupport (= 4.2.0)
25+
globalid (>= 0.3.0)
26+
activemodel (4.2.0)
27+
activesupport (= 4.2.0)
28+
builder (~> 3.1)
29+
activerecord (4.2.0)
30+
activemodel (= 4.2.0)
31+
activesupport (= 4.2.0)
32+
arel (~> 6.0)
33+
activesupport (4.2.0)
34+
i18n (~> 0.7)
35+
json (~> 1.7, >= 1.7.7)
36+
minitest (~> 5.1)
37+
thread_safe (~> 0.3, >= 0.3.4)
38+
tzinfo (~> 1.1)
39+
addressable (2.4.0)
40+
arel (6.0.3)
41+
better_errors (2.1.1)
42+
coderay (>= 1.0.0)
43+
erubis (>= 2.6.6)
44+
rack (>= 0.9.0)
45+
binding_of_caller (0.7.2)
46+
debug_inspector (>= 0.0.1)
47+
bootstrap-sass (3.1.1.1)
48+
sass (~> 3.2)
49+
builder (3.2.2)
50+
capybara (2.7.1)
51+
addressable
52+
mime-types (>= 1.16)
53+
nokogiri (>= 1.3.3)
54+
rack (>= 1.0.0)
55+
rack-test (>= 0.5.4)
56+
xpath (~> 2.0)
57+
coderay (1.1.1)
58+
coffee-rails (4.2.1)
59+
coffee-script (>= 2.2.0)
60+
railties (>= 4.0.0, < 5.2.x)
61+
coffee-script (2.4.1)
62+
coffee-script-source
63+
execjs
64+
coffee-script-source (1.10.0)
65+
concurrent-ruby (1.0.2)
66+
cucumber (2.4.0)
67+
builder (>= 2.1.2)
68+
cucumber-core (~> 1.5.0)
69+
cucumber-wire (~> 0.0.1)
70+
diff-lcs (>= 1.1.3)
71+
gherkin (~> 4.0)
72+
multi_json (>= 1.7.5, < 2.0)
73+
multi_test (>= 0.1.2)
74+
cucumber-core (1.5.0)
75+
gherkin (~> 4.0)
76+
cucumber-rails (1.4.3)
77+
capybara (>= 1.1.2, < 3)
78+
cucumber (>= 1.3.8, < 3)
79+
mime-types (>= 1.16, < 4)
80+
nokogiri (~> 1.5)
81+
railties (>= 3, < 5)
82+
cucumber-wire (0.0.1)
83+
debug_inspector (0.0.2)
84+
diff-lcs (1.2.5)
85+
erubis (2.7.0)
86+
execjs (2.7.0)
87+
factory_girl (4.7.0)
88+
activesupport (>= 3.0.0)
89+
factory_girl_rails (4.7.0)
90+
factory_girl (~> 4.7.0)
91+
railties (>= 3.0.0)
92+
figaro (1.1.1)
93+
thor (~> 0.14)
94+
font-awesome-rails (3.2.1.3)
95+
railties (>= 3.2, < 5.0)
96+
gherkin (4.0.0)
97+
globalid (0.3.7)
98+
activesupport (>= 4.1.0)
99+
i18n (0.7.0)
100+
jbuilder (1.5.3)
101+
activesupport (>= 3.0.0)
102+
multi_json (>= 1.2.0)
103+
jquery-rails (4.1.1)
104+
rails-dom-testing (>= 1, < 3)
105+
railties (>= 4.2.0)
106+
thor (>= 0.14, < 2.0)
107+
json (1.8.3)
108+
kgio (2.10.0)
109+
loofah (2.0.3)
110+
nokogiri (>= 1.5.9)
111+
mail (2.6.4)
112+
mime-types (>= 1.16, < 4)
113+
method_source (0.8.2)
114+
mime-types (3.1)
115+
mime-types-data (~> 3.2015)
116+
mime-types-data (3.2016.0521)
117+
mini_portile2 (2.1.0)
118+
minitest (5.9.0)
119+
multi_json (1.12.1)
120+
multi_test (0.1.2)
121+
nokogiri (1.6.8)
122+
mini_portile2 (~> 2.1.0)
123+
pkg-config (~> 1.1.7)
124+
pkg-config (1.1.7)
125+
pry (0.10.4)
126+
coderay (~> 1.1.0)
127+
method_source (~> 0.8.1)
128+
slop (~> 3.4)
129+
pry-rails (0.3.4)
130+
pry (>= 0.9.10)
131+
rack (1.6.4)
132+
rack-test (0.6.3)
133+
rack (>= 1.0)
134+
rails (4.2.0)
135+
actionmailer (= 4.2.0)
136+
actionpack (= 4.2.0)
137+
actionview (= 4.2.0)
138+
activejob (= 4.2.0)
139+
activemodel (= 4.2.0)
140+
activerecord (= 4.2.0)
141+
activesupport (= 4.2.0)
142+
bundler (>= 1.3.0, < 2.0)
143+
railties (= 4.2.0)
144+
sprockets-rails
145+
rails-deprecated_sanitizer (1.0.3)
146+
activesupport (>= 4.2.0.alpha)
147+
rails-dom-testing (1.0.7)
148+
activesupport (>= 4.2.0.beta, < 5.0)
149+
nokogiri (~> 1.6.0)
150+
rails-deprecated_sanitizer (>= 1.0.1)
151+
rails-html-sanitizer (1.0.3)
152+
loofah (~> 2.0)
153+
rails_12factor (0.0.3)
154+
rails_serve_static_assets
155+
rails_stdout_logging
156+
rails_serve_static_assets (0.0.5)
157+
rails_stdout_logging (0.0.5)
158+
railties (4.2.0)
159+
actionpack (= 4.2.0)
160+
activesupport (= 4.2.0)
161+
rake (>= 0.8.7)
162+
thor (>= 0.18.1, < 2.0)
163+
raindrops (0.16.0)
164+
rake (11.2.2)
165+
rspec-core (3.0.4)
166+
rspec-support (~> 3.0.0)
167+
rspec-expectations (3.0.4)
168+
diff-lcs (>= 1.2.0, < 2.0)
169+
rspec-support (~> 3.0.0)
170+
rspec-mocks (3.0.4)
171+
rspec-support (~> 3.0.0)
172+
rspec-rails (3.0.2)
173+
actionpack (>= 3.0)
174+
activesupport (>= 3.0)
175+
railties (>= 3.0)
176+
rspec-core (~> 3.0.0)
177+
rspec-expectations (~> 3.0.0)
178+
rspec-mocks (~> 3.0.0)
179+
rspec-support (~> 3.0.0)
180+
rspec-support (3.0.4)
181+
sass (3.4.22)
182+
sass-rails (5.0.6)
183+
railties (>= 4.0.0, < 6)
184+
sass (~> 3.1)
185+
sprockets (>= 2.8, < 4.0)
186+
sprockets-rails (>= 2.0, < 4.0)
187+
tilt (>= 1.1, < 3)
188+
slop (3.6.0)
189+
sprockets (3.7.0)
190+
concurrent-ruby (~> 1.0)
191+
rack (> 1, < 3)
192+
sprockets-rails (3.1.1)
193+
actionpack (>= 4.0)
194+
activesupport (>= 4.0)
195+
sprockets (>= 3.0.0)
196+
thor (0.19.1)
197+
thread_safe (0.3.5)
198+
tilt (2.0.5)
199+
turbolinks (5.0.0)
200+
turbolinks-source (~> 5)
201+
turbolinks-source (5.0.0)
202+
tzinfo (1.2.2)
203+
thread_safe (~> 0.1)
204+
uglifier (3.0.0)
205+
execjs (>= 0.3.0, < 3)
206+
unicorn (5.1.0)
207+
kgio (~> 2.6)
208+
raindrops (~> 0.7)
209+
wicked (1.1.1)
210+
rails (>= 3.0.7)
211+
xpath (2.0.0)
212+
nokogiri (~> 1.3)
213+
214+
PLATFORMS
215+
ruby
216+
217+
DEPENDENCIES
218+
better_errors
219+
binding_of_caller
220+
bootstrap-sass (~> 3.1.1.0)
221+
coffee-rails
222+
cucumber-rails
223+
factory_girl_rails
224+
figaro
225+
font-awesome-rails (~> 3.2.1.2)
226+
jbuilder (~> 1.2)
227+
jquery-rails
228+
pry-rails
229+
rails (= 4.2.0)
230+
rails_12factor
231+
rspec-rails (~> 3.0.0.beta)
232+
sass-rails
233+
turbolinks
234+
uglifier (>= 1.3.0)
235+
unicorn
236+
wicked (~> 1.1.0)
237+
238+
RUBY VERSION
239+
ruby 2.3.1p112
240+
241+
BUNDLED WITH
242+
1.12.5

Procfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: bundle exec unicorn -p $PORT -E $RACK_ENV

README.md

Lines changed: 21 additions & 0 deletions

Rakefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Add your own tasks in files placed in lib/tasks ending in .rake,
2+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3+
4+
require File.expand_path('../config/application', __FILE__)
5+
6+
InstallRails::Application.load_tasks

app/assets/images/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)