Skip to content

Commit 91537fb

Browse files
author
Jacques Crocker
committed
initial project setup and data model
0 parents  commit 91537fb

File tree

94 files changed

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

94 files changed

+2114
-0
lines changed

.gitignore

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# See https://help.github.com/articles/ignoring-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/*
16+
!/log/.keep
17+
/tmp
18+
.rspec
19+
config/settings.local.yml
20+
config/settings/*.local.yml
21+
config/environments/*.local.yml
22+
.byebug_history

.pryrc

Whitespace-only changes.

Gemfile

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
source 'https://rubygems.org'
2+
3+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
4+
gem 'rails', '4.2.5'
5+
6+
gem 'sqlite3'
7+
gem 'pg'
8+
9+
# Use SCSS for stylesheets
10+
gem 'sass-rails', '~> 5.0'
11+
12+
# Use Uglifier as compressor for JavaScript assets
13+
gem 'uglifier', '>= 1.3.0'
14+
15+
# See https://github.com/rails/execjs#readme for more supported runtimes (very slow install)
16+
# gem 'therubyracer', platforms: :ruby
17+
18+
gem 'sprockets', '>= 3.0.0'
19+
20+
gem "bourbon", "= 3.2.4" # old bourbon, will work with libsass
21+
22+
gem 'react-rails', '~> 1.5.0'
23+
24+
# Use jquery as the JavaScript library
25+
gem 'jquery-rails'
26+
27+
# use rails assets to pull assets from bower
28+
source 'https://rails-assets.org' do
29+
gem 'rails-assets-bootstrap'
30+
gem 'rails-assets-lodash'
31+
gem 'rails-assets-es5-shim'
32+
end
33+
34+
# Build JSON APIs
35+
gem 'jbuilder', '~> 2.0'
36+
gem 'active_model_serializers', "~> 0.9.3"
37+
38+
# bundle exec rake doc:rails generates the API under doc/api.
39+
gem 'sdoc', '~> 0.4.0', group: :doc
40+
41+
# Use ActiveModel has_secure_password
42+
gem 'bcrypt', '~> 3.1.7'
43+
44+
gem 'annotate'
45+
gem 'config'
46+
gem 'interactor-rails'
47+
gem 'active_attr'
48+
49+
# Use puma as the app server
50+
gem 'puma'
51+
52+
group :development, :test do
53+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
54+
gem 'byebug'
55+
56+
gem 'rspec-rails', '~> 3.0'
57+
gem 'factory_girl'
58+
gem 'database_cleaner'
59+
60+
gem "quiet_assets"
61+
62+
gem 'capybara'
63+
gem 'poltergeist'
64+
gem 'launchy'
65+
end
66+
67+
group :development do
68+
# Access an IRB console on exception pages or by using <%= console %> in views
69+
gem 'web-console', '~> 2.0'
70+
71+
gem 'pry-rails'
72+
73+
gem 'guard-rspec', require: false
74+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
75+
# gem 'spring'
76+
end

Gemfile.lock

+294
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,294 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
remote: https://rails-assets.org/
4+
specs:
5+
actionmailer (4.2.5)
6+
actionpack (= 4.2.5)
7+
actionview (= 4.2.5)
8+
activejob (= 4.2.5)
9+
mail (~> 2.5, >= 2.5.4)
10+
rails-dom-testing (~> 1.0, >= 1.0.5)
11+
actionpack (4.2.5)
12+
actionview (= 4.2.5)
13+
activesupport (= 4.2.5)
14+
rack (~> 1.6)
15+
rack-test (~> 0.6.2)
16+
rails-dom-testing (~> 1.0, >= 1.0.5)
17+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
18+
actionview (4.2.5)
19+
activesupport (= 4.2.5)
20+
builder (~> 3.1)
21+
erubis (~> 2.7.0)
22+
rails-dom-testing (~> 1.0, >= 1.0.5)
23+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
24+
active_attr (0.8.5)
25+
activemodel (>= 3.0.2, < 5.0)
26+
activesupport (>= 3.0.2, < 5.0)
27+
active_model_serializers (0.9.3)
28+
activemodel (>= 3.2)
29+
activejob (4.2.5)
30+
activesupport (= 4.2.5)
31+
globalid (>= 0.3.0)
32+
activemodel (4.2.5)
33+
activesupport (= 4.2.5)
34+
builder (~> 3.1)
35+
activerecord (4.2.5)
36+
activemodel (= 4.2.5)
37+
activesupport (= 4.2.5)
38+
arel (~> 6.0)
39+
activesupport (4.2.5)
40+
i18n (~> 0.7)
41+
json (~> 1.7, >= 1.7.7)
42+
minitest (~> 5.1)
43+
thread_safe (~> 0.3, >= 0.3.4)
44+
tzinfo (~> 1.1)
45+
addressable (2.3.8)
46+
annotate (2.6.10)
47+
activerecord (>= 3.2, <= 4.3)
48+
rake (~> 10.4)
49+
arel (6.0.3)
50+
babel-source (5.8.34)
51+
babel-transpiler (0.7.0)
52+
babel-source (>= 4.0, < 6)
53+
execjs (~> 2.0)
54+
bcrypt (3.1.10)
55+
binding_of_caller (0.7.2)
56+
debug_inspector (>= 0.0.1)
57+
bourbon (3.2.4)
58+
sass (~> 3.2)
59+
thor
60+
builder (3.2.2)
61+
byebug (8.2.1)
62+
capybara (2.4.4)
63+
mime-types (>= 1.16)
64+
nokogiri (>= 1.3.3)
65+
rack (>= 1.0.0)
66+
rack-test (>= 0.5.4)
67+
xpath (~> 2.0)
68+
cliver (0.3.2)
69+
coderay (1.1.0)
70+
coffee-script-source (1.10.0)
71+
concurrent-ruby (1.0.0)
72+
config (1.0.0)
73+
activesupport (>= 3.0)
74+
deep_merge (~> 1.0.0)
75+
connection_pool (2.2.0)
76+
database_cleaner (1.5.1)
77+
debug_inspector (0.0.2)
78+
deep_merge (1.0.1)
79+
diff-lcs (1.2.5)
80+
erubis (2.7.0)
81+
execjs (2.6.0)
82+
factory_girl (4.5.0)
83+
activesupport (>= 3.0.0)
84+
ffi (1.9.10)
85+
formatador (0.2.5)
86+
globalid (0.3.6)
87+
activesupport (>= 4.1.0)
88+
guard (2.13.0)
89+
formatador (>= 0.2.4)
90+
listen (>= 2.7, <= 4.0)
91+
lumberjack (~> 1.0)
92+
nenv (~> 0.1)
93+
notiffany (~> 0.0)
94+
pry (>= 0.9.12)
95+
shellany (~> 0.0)
96+
thor (>= 0.18.1)
97+
guard-compat (1.2.1)
98+
guard-rspec (4.6.4)
99+
guard (~> 2.1)
100+
guard-compat (~> 1.1)
101+
rspec (>= 2.99.0, < 4.0)
102+
i18n (0.7.0)
103+
interactor (3.1.0)
104+
interactor-rails (2.0.1)
105+
interactor (~> 3.0)
106+
rails (>= 3, < 5)
107+
jbuilder (2.3.2)
108+
activesupport (>= 3.0.0, < 5)
109+
multi_json (~> 1.2)
110+
jquery-rails (4.0.5)
111+
rails-dom-testing (~> 1.0)
112+
railties (>= 4.2.0)
113+
thor (>= 0.14, < 2.0)
114+
json (1.8.3)
115+
launchy (2.4.3)
116+
addressable (~> 2.3)
117+
listen (3.0.5)
118+
rb-fsevent (>= 0.9.3)
119+
rb-inotify (>= 0.9)
120+
loofah (2.0.3)
121+
nokogiri (>= 1.5.9)
122+
lumberjack (1.0.9)
123+
mail (2.6.3)
124+
mime-types (>= 1.16, < 3)
125+
method_source (0.8.2)
126+
mime-types (2.99)
127+
mini_portile2 (2.0.0)
128+
minitest (5.8.3)
129+
multi_json (1.11.2)
130+
nenv (0.2.0)
131+
nokogiri (1.6.7)
132+
mini_portile2 (~> 2.0.0.rc2)
133+
notiffany (0.0.8)
134+
nenv (~> 0.1)
135+
shellany (~> 0.0)
136+
pg (0.18.4)
137+
poltergeist (1.8.1)
138+
capybara (~> 2.1)
139+
cliver (~> 0.3.1)
140+
multi_json (~> 1.0)
141+
websocket-driver (>= 0.2.0)
142+
pry (0.10.3)
143+
coderay (~> 1.1.0)
144+
method_source (~> 0.8.1)
145+
slop (~> 3.4)
146+
pry-rails (0.3.4)
147+
pry (>= 0.9.10)
148+
puma (2.15.3)
149+
quiet_assets (1.1.0)
150+
railties (>= 3.1, < 5.0)
151+
rack (1.6.4)
152+
rack-test (0.6.3)
153+
rack (>= 1.0)
154+
rails (4.2.5)
155+
actionmailer (= 4.2.5)
156+
actionpack (= 4.2.5)
157+
actionview (= 4.2.5)
158+
activejob (= 4.2.5)
159+
activemodel (= 4.2.5)
160+
activerecord (= 4.2.5)
161+
activesupport (= 4.2.5)
162+
bundler (>= 1.3.0, < 2.0)
163+
railties (= 4.2.5)
164+
sprockets-rails
165+
rails-assets-bootstrap (3.3.6)
166+
rails-assets-jquery (>= 1.9.1, < 3)
167+
rails-assets-es5-shim (4.3.1)
168+
rails-assets-jquery (2.1.4)
169+
rails-assets-lodash (3.10.1)
170+
rails-deprecated_sanitizer (1.0.3)
171+
activesupport (>= 4.2.0.alpha)
172+
rails-dom-testing (1.0.7)
173+
activesupport (>= 4.2.0.beta, < 5.0)
174+
nokogiri (~> 1.6.0)
175+
rails-deprecated_sanitizer (>= 1.0.1)
176+
rails-html-sanitizer (1.0.2)
177+
loofah (~> 2.0)
178+
railties (4.2.5)
179+
actionpack (= 4.2.5)
180+
activesupport (= 4.2.5)
181+
rake (>= 0.8.7)
182+
thor (>= 0.18.1, < 2.0)
183+
rake (10.4.2)
184+
rb-fsevent (0.9.6)
185+
rb-inotify (0.9.5)
186+
ffi (>= 0.5.0)
187+
rdoc (4.2.0)
188+
json (~> 1.4)
189+
react-rails (1.5.0)
190+
babel-transpiler (>= 0.7.0)
191+
coffee-script-source (~> 1.8)
192+
connection_pool
193+
execjs
194+
rails (>= 3.2)
195+
tilt
196+
rspec (3.4.0)
197+
rspec-core (~> 3.4.0)
198+
rspec-expectations (~> 3.4.0)
199+
rspec-mocks (~> 3.4.0)
200+
rspec-core (3.4.1)
201+
rspec-support (~> 3.4.0)
202+
rspec-expectations (3.4.0)
203+
diff-lcs (>= 1.2.0, < 2.0)
204+
rspec-support (~> 3.4.0)
205+
rspec-mocks (3.4.0)
206+
diff-lcs (>= 1.2.0, < 2.0)
207+
rspec-support (~> 3.4.0)
208+
rspec-rails (3.4.0)
209+
actionpack (>= 3.0, < 4.3)
210+
activesupport (>= 3.0, < 4.3)
211+
railties (>= 3.0, < 4.3)
212+
rspec-core (~> 3.4.0)
213+
rspec-expectations (~> 3.4.0)
214+
rspec-mocks (~> 3.4.0)
215+
rspec-support (~> 3.4.0)
216+
rspec-support (3.4.1)
217+
sass (3.4.19)
218+
sass-rails (5.0.4)
219+
railties (>= 4.0.0, < 5.0)
220+
sass (~> 3.1)
221+
sprockets (>= 2.8, < 4.0)
222+
sprockets-rails (>= 2.0, < 4.0)
223+
tilt (>= 1.1, < 3)
224+
sdoc (0.4.1)
225+
json (~> 1.7, >= 1.7.7)
226+
rdoc (~> 4.0)
227+
shellany (0.0.1)
228+
slop (3.6.0)
229+
sprockets (3.5.2)
230+
concurrent-ruby (~> 1.0)
231+
rack (> 1, < 3)
232+
sprockets-rails (2.3.3)
233+
actionpack (>= 3.0)
234+
activesupport (>= 3.0)
235+
sprockets (>= 2.8, < 4.0)
236+
sqlite3 (1.3.11)
237+
thor (0.19.1)
238+
thread_safe (0.3.5)
239+
tilt (2.0.1)
240+
tzinfo (1.2.2)
241+
thread_safe (~> 0.1)
242+
uglifier (2.7.2)
243+
execjs (>= 0.3.0)
244+
json (>= 1.8.0)
245+
web-console (2.2.1)
246+
activemodel (>= 4.0)
247+
binding_of_caller (>= 0.7.2)
248+
railties (>= 4.0)
249+
sprockets-rails (>= 2.0, < 4.0)
250+
websocket-driver (0.6.3)
251+
websocket-extensions (>= 0.1.0)
252+
websocket-extensions (0.1.2)
253+
xpath (2.0.0)
254+
nokogiri (~> 1.3)
255+
256+
PLATFORMS
257+
ruby
258+
259+
DEPENDENCIES
260+
active_attr
261+
active_model_serializers (~> 0.9.3)
262+
annotate
263+
bcrypt (~> 3.1.7)
264+
bourbon (= 3.2.4)
265+
byebug
266+
capybara
267+
config
268+
database_cleaner
269+
factory_girl
270+
guard-rspec
271+
interactor-rails
272+
jbuilder (~> 2.0)
273+
jquery-rails
274+
launchy
275+
pg
276+
poltergeist
277+
pry-rails
278+
puma
279+
quiet_assets
280+
rails (= 4.2.5)
281+
rails-assets-bootstrap!
282+
rails-assets-es5-shim!
283+
rails-assets-lodash!
284+
react-rails (~> 1.5.0)
285+
rspec-rails (~> 3.0)
286+
sass-rails (~> 5.0)
287+
sdoc (~> 0.4.0)
288+
sprockets (>= 3.0.0)
289+
sqlite3
290+
uglifier (>= 1.3.0)
291+
web-console (~> 2.0)
292+
293+
BUNDLED WITH
294+
1.10.6

0 commit comments

Comments
 (0)