Skip to content

Commit f3a34c7

Browse files
committed
Initital commit WIP with Camdram auth
0 parents  commit f3a34c7

File tree

95 files changed

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

95 files changed

+2202
-0
lines changed

.gitignore

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+
/tmp/*
17+
!/log/.keep
18+
!/tmp/.keep
19+
20+
# Ignore uploaded files in development
21+
/storage/*
22+
23+
/node_modules
24+
/yarn-error.log
25+
26+
/public/assets
27+
.byebug_history
28+
29+
# Ignore master key for decrypting credentials and more.
30+
/config/master.key

.ruby-version

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

Gemfile

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
source 'https://rubygems.org'
2+
3+
ruby '2.5.1'
4+
5+
gem 'rails', '~> 5.2.0'
6+
gem 'sqlite3'
7+
gem 'puma', '~> 3.11'
8+
gem 'sass-rails', '~> 5.0'
9+
gem 'uglifier', '>= 1.3.0'
10+
gem 'coffee-rails', '~> 4.2'
11+
gem 'jquery-rails'
12+
gem 'turbolinks', '~> 5'
13+
gem 'jbuilder', '~> 2.5'
14+
# Use Redis adapter to run Action Cable in production
15+
# gem 'redis', '~> 4.0'
16+
# Use ActiveModel has_secure_password
17+
# gem 'bcrypt', '~> 3.1.7'
18+
# Use ActiveStorage variant
19+
# gem 'mini_magick', '~> 4.8'
20+
gem 'bootstrap-sass'
21+
gem 'high_voltage'
22+
# OAuth login for Camdram
23+
gem 'omniauth'
24+
gem 'omniauth-camdram'
25+
26+
# Reduces boot times through caching; required in config/boot.rb
27+
gem 'bootsnap', '>= 1.1.0', require: false
28+
29+
group :development, :test do
30+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
31+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
32+
end
33+
34+
group :development do
35+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
36+
gem 'web-console', '>= 3.3.0'
37+
gem 'listen', '>= 3.0.5', '< 3.2'
38+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
39+
gem 'spring'
40+
gem 'spring-watcher-listen', '~> 2.0.0'
41+
end
42+
43+
group :test do
44+
# Adds support for Capybara system testing and selenium driver
45+
gem 'capybara', '>= 2.15', '< 4.0'
46+
gem 'selenium-webdriver'
47+
# Easy installation and use of chromedriver to run system tests with Chrome
48+
gem 'chromedriver-helper'
49+
end
50+
51+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
52+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Gemfile.lock

+254
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,254 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (5.2.0)
5+
actionpack (= 5.2.0)
6+
nio4r (~> 2.0)
7+
websocket-driver (>= 0.6.1)
8+
actionmailer (5.2.0)
9+
actionpack (= 5.2.0)
10+
actionview (= 5.2.0)
11+
activejob (= 5.2.0)
12+
mail (~> 2.5, >= 2.5.4)
13+
rails-dom-testing (~> 2.0)
14+
actionpack (5.2.0)
15+
actionview (= 5.2.0)
16+
activesupport (= 5.2.0)
17+
rack (~> 2.0)
18+
rack-test (>= 0.6.3)
19+
rails-dom-testing (~> 2.0)
20+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
21+
actionview (5.2.0)
22+
activesupport (= 5.2.0)
23+
builder (~> 3.1)
24+
erubi (~> 1.4)
25+
rails-dom-testing (~> 2.0)
26+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
27+
activejob (5.2.0)
28+
activesupport (= 5.2.0)
29+
globalid (>= 0.3.6)
30+
activemodel (5.2.0)
31+
activesupport (= 5.2.0)
32+
activerecord (5.2.0)
33+
activemodel (= 5.2.0)
34+
activesupport (= 5.2.0)
35+
arel (>= 9.0)
36+
activestorage (5.2.0)
37+
actionpack (= 5.2.0)
38+
activerecord (= 5.2.0)
39+
marcel (~> 0.3.1)
40+
activesupport (5.2.0)
41+
concurrent-ruby (~> 1.0, >= 1.0.2)
42+
i18n (>= 0.7, < 2)
43+
minitest (~> 5.1)
44+
tzinfo (~> 1.1)
45+
addressable (2.5.2)
46+
public_suffix (>= 2.0.2, < 4.0)
47+
archive-zip (0.11.0)
48+
io-like (~> 0.3.0)
49+
arel (9.0.0)
50+
autoprefixer-rails (8.6.2)
51+
execjs
52+
bindex (0.5.0)
53+
bootsnap (1.3.0)
54+
msgpack (~> 1.0)
55+
bootstrap-sass (3.3.7)
56+
autoprefixer-rails (>= 5.2.1)
57+
sass (>= 3.3.4)
58+
builder (3.2.3)
59+
byebug (10.0.2)
60+
capybara (3.2.1)
61+
addressable
62+
mini_mime (>= 0.1.3)
63+
nokogiri (~> 1.8)
64+
rack (>= 1.6.0)
65+
rack-test (>= 0.6.3)
66+
xpath (~> 3.1)
67+
childprocess (0.9.0)
68+
ffi (~> 1.0, >= 1.0.11)
69+
chromedriver-helper (1.2.0)
70+
archive-zip (~> 0.10)
71+
nokogiri (~> 1.8)
72+
coffee-rails (4.2.2)
73+
coffee-script (>= 2.2.0)
74+
railties (>= 4.0.0)
75+
coffee-script (2.4.1)
76+
coffee-script-source
77+
execjs
78+
coffee-script-source (1.12.2)
79+
concurrent-ruby (1.0.5)
80+
crass (1.0.4)
81+
erubi (1.7.1)
82+
execjs (2.7.0)
83+
faraday (0.12.2)
84+
multipart-post (>= 1.2, < 3)
85+
ffi (1.9.25)
86+
globalid (0.4.1)
87+
activesupport (>= 4.2.0)
88+
hashie (3.5.7)
89+
high_voltage (3.1.0)
90+
i18n (1.0.1)
91+
concurrent-ruby (~> 1.0)
92+
io-like (0.3.0)
93+
jbuilder (2.7.0)
94+
activesupport (>= 4.2.0)
95+
multi_json (>= 1.2)
96+
jquery-rails (4.3.3)
97+
rails-dom-testing (>= 1, < 3)
98+
railties (>= 4.2.0)
99+
thor (>= 0.14, < 2.0)
100+
jwt (1.5.6)
101+
listen (3.1.5)
102+
rb-fsevent (~> 0.9, >= 0.9.4)
103+
rb-inotify (~> 0.9, >= 0.9.7)
104+
ruby_dep (~> 1.2)
105+
loofah (2.2.2)
106+
crass (~> 1.0.2)
107+
nokogiri (>= 1.5.9)
108+
mail (2.7.0)
109+
mini_mime (>= 0.1.1)
110+
marcel (0.3.2)
111+
mimemagic (~> 0.3.2)
112+
method_source (0.9.0)
113+
mimemagic (0.3.2)
114+
mini_mime (1.0.0)
115+
mini_portile2 (2.3.0)
116+
minitest (5.11.3)
117+
msgpack (1.2.4)
118+
multi_json (1.13.1)
119+
multi_xml (0.6.0)
120+
multipart-post (2.0.0)
121+
nio4r (2.3.1)
122+
nokogiri (1.8.2)
123+
mini_portile2 (~> 2.3.0)
124+
oauth2 (1.4.0)
125+
faraday (>= 0.8, < 0.13)
126+
jwt (~> 1.0)
127+
multi_json (~> 1.3)
128+
multi_xml (~> 0.5)
129+
rack (>= 1.2, < 3)
130+
omniauth (1.8.1)
131+
hashie (>= 3.4.6, < 3.6.0)
132+
rack (>= 1.6.2, < 3)
133+
omniauth-camdram (1.0.0)
134+
omniauth (~> 1.0)
135+
omniauth-oauth2 (~> 1.0)
136+
omniauth-oauth2 (1.5.0)
137+
oauth2 (~> 1.1)
138+
omniauth (~> 1.2)
139+
public_suffix (3.0.2)
140+
puma (3.11.4)
141+
rack (2.0.5)
142+
rack-test (1.0.0)
143+
rack (>= 1.0, < 3)
144+
rails (5.2.0)
145+
actioncable (= 5.2.0)
146+
actionmailer (= 5.2.0)
147+
actionpack (= 5.2.0)
148+
actionview (= 5.2.0)
149+
activejob (= 5.2.0)
150+
activemodel (= 5.2.0)
151+
activerecord (= 5.2.0)
152+
activestorage (= 5.2.0)
153+
activesupport (= 5.2.0)
154+
bundler (>= 1.3.0)
155+
railties (= 5.2.0)
156+
sprockets-rails (>= 2.0.0)
157+
rails-dom-testing (2.0.3)
158+
activesupport (>= 4.2.0)
159+
nokogiri (>= 1.6)
160+
rails-html-sanitizer (1.0.4)
161+
loofah (~> 2.2, >= 2.2.2)
162+
railties (5.2.0)
163+
actionpack (= 5.2.0)
164+
activesupport (= 5.2.0)
165+
method_source
166+
rake (>= 0.8.7)
167+
thor (>= 0.18.1, < 2.0)
168+
rake (12.3.1)
169+
rb-fsevent (0.10.3)
170+
rb-inotify (0.9.10)
171+
ffi (>= 0.5.0, < 2)
172+
ruby_dep (1.5.0)
173+
rubyzip (1.2.1)
174+
sass (3.5.6)
175+
sass-listen (~> 4.0.0)
176+
sass-listen (4.0.0)
177+
rb-fsevent (~> 0.9, >= 0.9.4)
178+
rb-inotify (~> 0.9, >= 0.9.7)
179+
sass-rails (5.0.7)
180+
railties (>= 4.0.0, < 6)
181+
sass (~> 3.1)
182+
sprockets (>= 2.8, < 4.0)
183+
sprockets-rails (>= 2.0, < 4.0)
184+
tilt (>= 1.1, < 3)
185+
selenium-webdriver (3.12.0)
186+
childprocess (~> 0.5)
187+
rubyzip (~> 1.2)
188+
spring (2.0.2)
189+
activesupport (>= 4.2)
190+
spring-watcher-listen (2.0.1)
191+
listen (>= 2.7, < 4.0)
192+
spring (>= 1.2, < 3.0)
193+
sprockets (3.7.1)
194+
concurrent-ruby (~> 1.0)
195+
rack (> 1, < 3)
196+
sprockets-rails (3.2.1)
197+
actionpack (>= 4.0)
198+
activesupport (>= 4.0)
199+
sprockets (>= 3.0.0)
200+
sqlite3 (1.3.13)
201+
thor (0.20.0)
202+
thread_safe (0.3.6)
203+
tilt (2.0.8)
204+
turbolinks (5.1.1)
205+
turbolinks-source (~> 5.1)
206+
turbolinks-source (5.1.0)
207+
tzinfo (1.2.5)
208+
thread_safe (~> 0.1)
209+
uglifier (4.1.11)
210+
execjs (>= 0.3.0, < 3)
211+
web-console (3.6.2)
212+
actionview (>= 5.0)
213+
activemodel (>= 5.0)
214+
bindex (>= 0.4.0)
215+
railties (>= 5.0)
216+
websocket-driver (0.7.0)
217+
websocket-extensions (>= 0.1.0)
218+
websocket-extensions (0.1.3)
219+
xpath (3.1.0)
220+
nokogiri (~> 1.8)
221+
222+
PLATFORMS
223+
ruby
224+
225+
DEPENDENCIES
226+
bootsnap (>= 1.1.0)
227+
bootstrap-sass
228+
byebug
229+
capybara (>= 2.15, < 4.0)
230+
chromedriver-helper
231+
coffee-rails (~> 4.2)
232+
high_voltage
233+
jbuilder (~> 2.5)
234+
jquery-rails
235+
listen (>= 3.0.5, < 3.2)
236+
omniauth
237+
omniauth-camdram
238+
puma (~> 3.11)
239+
rails (~> 5.2.0)
240+
sass-rails (~> 5.0)
241+
selenium-webdriver
242+
spring
243+
spring-watcher-listen (~> 2.0.0)
244+
sqlite3
245+
turbolinks (~> 5)
246+
tzinfo-data
247+
uglifier (>= 1.3.0)
248+
web-console (>= 3.3.0)
249+
250+
RUBY VERSION
251+
ruby 2.5.1p57
252+
253+
BUNDLED WITH
254+
1.16.1

0 commit comments

Comments
 (0)