Skip to content
This repository was archived by the owner on May 14, 2018. It is now read-only.

Commit f7e28d1

Browse files
committed
Initial commit
0 parents  commit f7e28d1

Some content is hidden

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

56 files changed

+1029
-0
lines changed

.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
.byebug_history

Gemfile

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
source 'https://rubygems.org'
2+
3+
git_source(:github) do |repo_name|
4+
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
5+
"https://github.com/#{repo_name}.git"
6+
end
7+
8+
9+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
10+
gem 'rails', '~> 5.1.1'
11+
# Use sqlite3 as the database for Active Record
12+
gem 'sqlite3'
13+
# Use Puma as the app server
14+
gem 'puma', '~> 3.7'
15+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
16+
# gem 'jbuilder', '~> 2.5'
17+
# Use Redis adapter to run Action Cable in production
18+
# gem 'redis', '~> 3.0'
19+
# Use ActiveModel has_secure_password
20+
# gem 'bcrypt', '~> 3.1.7'
21+
22+
# Use Capistrano for deployment
23+
# gem 'capistrano-rails', group: :development
24+
25+
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
26+
# gem 'rack-cors'
27+
28+
group :development, :test do
29+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
30+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
31+
end
32+
33+
group :development do
34+
gem 'listen', '>= 3.0.5', '< 3.2'
35+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
36+
gem 'spring'
37+
gem 'spring-watcher-listen', '~> 2.0.0'
38+
end
39+
40+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
41+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Gemfile.lock

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (5.1.1)
5+
actionpack (= 5.1.1)
6+
nio4r (~> 2.0)
7+
websocket-driver (~> 0.6.1)
8+
actionmailer (5.1.1)
9+
actionpack (= 5.1.1)
10+
actionview (= 5.1.1)
11+
activejob (= 5.1.1)
12+
mail (~> 2.5, >= 2.5.4)
13+
rails-dom-testing (~> 2.0)
14+
actionpack (5.1.1)
15+
actionview (= 5.1.1)
16+
activesupport (= 5.1.1)
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.1.1)
22+
activesupport (= 5.1.1)
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.1.1)
28+
activesupport (= 5.1.1)
29+
globalid (>= 0.3.6)
30+
activemodel (5.1.1)
31+
activesupport (= 5.1.1)
32+
activerecord (5.1.1)
33+
activemodel (= 5.1.1)
34+
activesupport (= 5.1.1)
35+
arel (~> 8.0)
36+
activesupport (5.1.1)
37+
concurrent-ruby (~> 1.0, >= 1.0.2)
38+
i18n (~> 0.7)
39+
minitest (~> 5.1)
40+
tzinfo (~> 1.1)
41+
arel (8.0.0)
42+
builder (3.2.3)
43+
byebug (9.0.6)
44+
concurrent-ruby (1.0.5)
45+
erubi (1.6.0)
46+
ffi (1.9.18)
47+
globalid (0.4.0)
48+
activesupport (>= 4.2.0)
49+
i18n (0.8.1)
50+
listen (3.1.5)
51+
rb-fsevent (~> 0.9, >= 0.9.4)
52+
rb-inotify (~> 0.9, >= 0.9.7)
53+
ruby_dep (~> 1.2)
54+
loofah (2.0.3)
55+
nokogiri (>= 1.5.9)
56+
mail (2.6.5)
57+
mime-types (>= 1.16, < 4)
58+
method_source (0.8.2)
59+
mime-types (3.1)
60+
mime-types-data (~> 3.2015)
61+
mime-types-data (3.2016.0521)
62+
mini_portile2 (2.1.0)
63+
minitest (5.10.2)
64+
nio4r (2.0.0)
65+
nokogiri (1.7.2)
66+
mini_portile2 (~> 2.1.0)
67+
puma (3.8.2)
68+
rack (2.0.3)
69+
rack-test (0.6.3)
70+
rack (>= 1.0)
71+
rails (5.1.1)
72+
actioncable (= 5.1.1)
73+
actionmailer (= 5.1.1)
74+
actionpack (= 5.1.1)
75+
actionview (= 5.1.1)
76+
activejob (= 5.1.1)
77+
activemodel (= 5.1.1)
78+
activerecord (= 5.1.1)
79+
activesupport (= 5.1.1)
80+
bundler (>= 1.3.0, < 2.0)
81+
railties (= 5.1.1)
82+
sprockets-rails (>= 2.0.0)
83+
rails-dom-testing (2.0.3)
84+
activesupport (>= 4.2.0)
85+
nokogiri (>= 1.6)
86+
rails-html-sanitizer (1.0.3)
87+
loofah (~> 2.0)
88+
railties (5.1.1)
89+
actionpack (= 5.1.1)
90+
activesupport (= 5.1.1)
91+
method_source
92+
rake (>= 0.8.7)
93+
thor (>= 0.18.1, < 2.0)
94+
rake (12.0.0)
95+
rb-fsevent (0.9.8)
96+
rb-inotify (0.9.8)
97+
ffi (>= 0.5.0)
98+
ruby_dep (1.5.0)
99+
spring (2.0.1)
100+
activesupport (>= 4.2)
101+
spring-watcher-listen (2.0.1)
102+
listen (>= 2.7, < 4.0)
103+
spring (>= 1.2, < 3.0)
104+
sprockets (3.7.1)
105+
concurrent-ruby (~> 1.0)
106+
rack (> 1, < 3)
107+
sprockets-rails (3.2.0)
108+
actionpack (>= 4.0)
109+
activesupport (>= 4.0)
110+
sprockets (>= 3.0.0)
111+
sqlite3 (1.3.13)
112+
thor (0.19.4)
113+
thread_safe (0.3.6)
114+
tzinfo (1.2.3)
115+
thread_safe (~> 0.1)
116+
websocket-driver (0.6.5)
117+
websocket-extensions (>= 0.1.0)
118+
websocket-extensions (0.1.2)
119+
120+
PLATFORMS
121+
ruby
122+
123+
DEPENDENCIES
124+
byebug
125+
listen (>= 3.0.5, < 3.2)
126+
puma (~> 3.7)
127+
rails (~> 5.1.1)
128+
spring
129+
spring-watcher-listen (~> 2.0.0)
130+
sqlite3
131+
tzinfo-data
132+
133+
BUNDLED WITH
134+
1.14.6

0 commit comments

Comments
 (0)