Skip to content

Commit 2c0366a

Browse files
committed
First commit
0 parents  commit 2c0366a

Some content is hidden

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

87 files changed

+1528
-0
lines changed

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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 all logfiles and tempfiles.
11+
/log/*
12+
/tmp/*
13+
!/log/.keep
14+
!/tmp/.keep
15+
16+
# Ignore Byebug command history file.
17+
.byebug_history
18+
.idea/

Gemfile

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
source 'https://rubygems.org'
2+
3+
4+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
5+
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
6+
# Use mysql as the database for Active Record
7+
gem 'mysql2', '>= 0.3.18', '< 0.5'
8+
# Use Puma as the app server
9+
gem 'puma', '~> 3.0'
10+
# Use SCSS for stylesheets
11+
gem 'sass-rails', '~> 5.0'
12+
# Use Uglifier as compressor for JavaScript assets
13+
gem 'uglifier', '>= 1.3.0'
14+
# Use CoffeeScript for .coffee assets and views
15+
gem 'coffee-rails', '~> 4.2'
16+
# See https://github.com/rails/execjs#readme for more supported runtimes
17+
# gem 'therubyracer', platforms: :ruby
18+
19+
# Use jquery as the JavaScript library
20+
gem 'jquery-rails'
21+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
22+
gem 'turbolinks', '~> 5'
23+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
24+
gem 'jbuilder', '~> 2.5'
25+
# Use Redis adapter to run Action Cable in production
26+
# gem 'redis', '~> 3.0'
27+
# Use ActiveModel has_secure_password
28+
# gem 'bcrypt', '~> 3.1.7'
29+
30+
# Use Capistrano for deployment
31+
# gem 'capistrano-rails', group: :development
32+
33+
group :development, :test do
34+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
35+
gem 'byebug', platform: :mri
36+
end
37+
38+
group :development do
39+
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
40+
gem 'web-console'
41+
gem 'listen', '~> 3.0.5'
42+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
43+
gem 'spring'
44+
gem 'spring-watcher-listen', '~> 2.0.0'
45+
end
46+
47+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
48+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Gemfile.lock

Lines changed: 174 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,174 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (5.0.0.1)
5+
actionpack (= 5.0.0.1)
6+
nio4r (~> 1.2)
7+
websocket-driver (~> 0.6.1)
8+
actionmailer (5.0.0.1)
9+
actionpack (= 5.0.0.1)
10+
actionview (= 5.0.0.1)
11+
activejob (= 5.0.0.1)
12+
mail (~> 2.5, >= 2.5.4)
13+
rails-dom-testing (~> 2.0)
14+
actionpack (5.0.0.1)
15+
actionview (= 5.0.0.1)
16+
activesupport (= 5.0.0.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.0.0.1)
22+
activesupport (= 5.0.0.1)
23+
builder (~> 3.1)
24+
erubis (~> 2.7.0)
25+
rails-dom-testing (~> 2.0)
26+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
27+
activejob (5.0.0.1)
28+
activesupport (= 5.0.0.1)
29+
globalid (>= 0.3.6)
30+
activemodel (5.0.0.1)
31+
activesupport (= 5.0.0.1)
32+
activerecord (5.0.0.1)
33+
activemodel (= 5.0.0.1)
34+
activesupport (= 5.0.0.1)
35+
arel (~> 7.0)
36+
activesupport (5.0.0.1)
37+
concurrent-ruby (~> 1.0, >= 1.0.2)
38+
i18n (~> 0.7)
39+
minitest (~> 5.1)
40+
tzinfo (~> 1.1)
41+
arel (7.1.4)
42+
builder (3.2.2)
43+
byebug (9.0.6)
44+
coffee-rails (4.2.1)
45+
coffee-script (>= 2.2.0)
46+
railties (>= 4.0.0, < 5.2.x)
47+
coffee-script (2.4.1)
48+
coffee-script-source
49+
execjs
50+
coffee-script-source (1.10.0)
51+
concurrent-ruby (1.0.2)
52+
debug_inspector (0.0.2)
53+
erubis (2.7.0)
54+
execjs (2.7.0)
55+
ffi (1.9.14)
56+
globalid (0.3.7)
57+
activesupport (>= 4.1.0)
58+
i18n (0.7.0)
59+
jbuilder (2.6.0)
60+
activesupport (>= 3.0.0, < 5.1)
61+
multi_json (~> 1.2)
62+
jquery-rails (4.2.1)
63+
rails-dom-testing (>= 1, < 3)
64+
railties (>= 4.2.0)
65+
thor (>= 0.14, < 2.0)
66+
listen (3.0.8)
67+
rb-fsevent (~> 0.9, >= 0.9.4)
68+
rb-inotify (~> 0.9, >= 0.9.7)
69+
loofah (2.0.3)
70+
nokogiri (>= 1.5.9)
71+
mail (2.6.4)
72+
mime-types (>= 1.16, < 4)
73+
method_source (0.8.2)
74+
mime-types (3.1)
75+
mime-types-data (~> 3.2015)
76+
mime-types-data (3.2016.0521)
77+
mini_portile2 (2.1.0)
78+
minitest (5.9.1)
79+
multi_json (1.12.1)
80+
mysql2 (0.4.4)
81+
nio4r (1.2.1)
82+
nokogiri (1.6.8.1)
83+
mini_portile2 (~> 2.1.0)
84+
puma (3.6.0)
85+
rack (2.0.1)
86+
rack-test (0.6.3)
87+
rack (>= 1.0)
88+
rails (5.0.0.1)
89+
actioncable (= 5.0.0.1)
90+
actionmailer (= 5.0.0.1)
91+
actionpack (= 5.0.0.1)
92+
actionview (= 5.0.0.1)
93+
activejob (= 5.0.0.1)
94+
activemodel (= 5.0.0.1)
95+
activerecord (= 5.0.0.1)
96+
activesupport (= 5.0.0.1)
97+
bundler (>= 1.3.0, < 2.0)
98+
railties (= 5.0.0.1)
99+
sprockets-rails (>= 2.0.0)
100+
rails-dom-testing (2.0.1)
101+
activesupport (>= 4.2.0, < 6.0)
102+
nokogiri (~> 1.6.0)
103+
rails-html-sanitizer (1.0.3)
104+
loofah (~> 2.0)
105+
railties (5.0.0.1)
106+
actionpack (= 5.0.0.1)
107+
activesupport (= 5.0.0.1)
108+
method_source
109+
rake (>= 0.8.7)
110+
thor (>= 0.18.1, < 2.0)
111+
rake (11.3.0)
112+
rb-fsevent (0.9.7)
113+
rb-inotify (0.9.7)
114+
ffi (>= 0.5.0)
115+
sass (3.4.22)
116+
sass-rails (5.0.6)
117+
railties (>= 4.0.0, < 6)
118+
sass (~> 3.1)
119+
sprockets (>= 2.8, < 4.0)
120+
sprockets-rails (>= 2.0, < 4.0)
121+
tilt (>= 1.1, < 3)
122+
spring (2.0.0)
123+
activesupport (>= 4.2)
124+
spring-watcher-listen (2.0.1)
125+
listen (>= 2.7, < 4.0)
126+
spring (>= 1.2, < 3.0)
127+
sprockets (3.7.0)
128+
concurrent-ruby (~> 1.0)
129+
rack (> 1, < 3)
130+
sprockets-rails (3.2.0)
131+
actionpack (>= 4.0)
132+
activesupport (>= 4.0)
133+
sprockets (>= 3.0.0)
134+
thor (0.19.1)
135+
thread_safe (0.3.5)
136+
tilt (2.0.5)
137+
turbolinks (5.0.1)
138+
turbolinks-source (~> 5)
139+
turbolinks-source (5.0.0)
140+
tzinfo (1.2.2)
141+
thread_safe (~> 0.1)
142+
uglifier (3.0.2)
143+
execjs (>= 0.3.0, < 3)
144+
web-console (3.3.1)
145+
actionview (>= 5.0)
146+
activemodel (>= 5.0)
147+
debug_inspector
148+
railties (>= 5.0)
149+
websocket-driver (0.6.4)
150+
websocket-extensions (>= 0.1.0)
151+
websocket-extensions (0.1.2)
152+
153+
PLATFORMS
154+
ruby
155+
156+
DEPENDENCIES
157+
byebug
158+
coffee-rails (~> 4.2)
159+
jbuilder (~> 2.5)
160+
jquery-rails
161+
listen (~> 3.0.5)
162+
mysql2 (>= 0.3.18, < 0.5)
163+
puma (~> 3.0)
164+
rails (~> 5.0.0, >= 5.0.0.1)
165+
sass-rails (~> 5.0)
166+
spring
167+
spring-watcher-listen (~> 2.0.0)
168+
turbolinks (~> 5)
169+
tzinfo-data
170+
uglifier (>= 1.3.0)
171+
web-console
172+
173+
BUNDLED WITH
174+
1.13.3

0 commit comments

Comments
 (0)