Skip to content

Commit 58992b2

Browse files
committedOct 4, 2016
app
1 parent f0363ef commit 58992b2

File tree

181 files changed

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

181 files changed

+14519
-0
lines changed
 

‎Gemfile

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'activerecord-session_store'
4+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
5+
gem 'rails', '4.2.6'
6+
# Use postgresql as the database for Active Record
7+
gem 'pg', '~> 0.15'
8+
# Use SCSS for stylesheets
9+
gem 'sass-rails', '~> 5.0'
10+
# Use Uglifier as compressor for JavaScript assets
11+
gem 'uglifier', '>= 1.3.0'
12+
# Use CoffeeScript for .coffee assets and views
13+
gem 'coffee-rails', '~> 4.1.0'
14+
# See https://github.com/rails/execjs#readme for more supported runtimes
15+
# gem 'therubyracer', platforms: :ruby
16+
gem 'bcrypt', '3.1.7'
17+
# Use jquery as the JavaScript library
18+
gem 'jquery-rails'
19+
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
20+
gem 'turbolinks'
21+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
22+
gem 'jbuilder', '~> 2.0'
23+
# bundle exec rake doc:rails generates the API under doc/api.
24+
gem 'sdoc', '~> 0.4.0', group: :doc
25+
26+
# Use ActiveModel has_secure_password
27+
# gem 'bcrypt', '~> 3.1.7'
28+
29+
# Use Unicorn as the app server
30+
# gem 'unicorn'
31+
32+
# Use Capistrano for deployment
33+
# gem 'capistrano-rails', group: :development
34+
35+
group :development, :test do
36+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
37+
gem 'byebug'
38+
gem 'rspec-rails', '~> 3.5'
39+
end
40+
41+
group :development do
42+
# Access an IRB console on exception pages or by using <%= console %> in views
43+
gem 'web-console', '~> 2.0'
44+
45+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
46+
gem 'spring'
47+
end
48+

‎Gemfile.lock

+191
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,191 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (4.2.6)
5+
actionpack (= 4.2.6)
6+
actionview (= 4.2.6)
7+
activejob (= 4.2.6)
8+
mail (~> 2.5, >= 2.5.4)
9+
rails-dom-testing (~> 1.0, >= 1.0.5)
10+
actionpack (4.2.6)
11+
actionview (= 4.2.6)
12+
activesupport (= 4.2.6)
13+
rack (~> 1.6)
14+
rack-test (~> 0.6.2)
15+
rails-dom-testing (~> 1.0, >= 1.0.5)
16+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
17+
actionview (4.2.6)
18+
activesupport (= 4.2.6)
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.2)
23+
activejob (4.2.6)
24+
activesupport (= 4.2.6)
25+
globalid (>= 0.3.0)
26+
activemodel (4.2.6)
27+
activesupport (= 4.2.6)
28+
builder (~> 3.1)
29+
activerecord (4.2.6)
30+
activemodel (= 4.2.6)
31+
activesupport (= 4.2.6)
32+
arel (~> 6.0)
33+
activerecord-session_store (1.0.0)
34+
actionpack (>= 4.0, < 5.1)
35+
activerecord (>= 4.0, < 5.1)
36+
multi_json (~> 1.11, >= 1.11.2)
37+
rack (>= 1.5.2, < 3)
38+
railties (>= 4.0, < 5.1)
39+
activesupport (4.2.6)
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+
arel (6.0.3)
46+
bcrypt (3.1.7)
47+
binding_of_caller (0.7.2)
48+
debug_inspector (>= 0.0.1)
49+
builder (3.2.2)
50+
byebug (9.0.5)
51+
coffee-rails (4.1.1)
52+
coffee-script (>= 2.2.0)
53+
railties (>= 4.0.0, < 5.1.x)
54+
coffee-script (2.4.1)
55+
coffee-script-source
56+
execjs
57+
coffee-script-source (1.10.0)
58+
concurrent-ruby (1.0.2)
59+
debug_inspector (0.0.2)
60+
diff-lcs (1.2.5)
61+
erubis (2.7.0)
62+
execjs (2.7.0)
63+
globalid (0.3.7)
64+
activesupport (>= 4.1.0)
65+
i18n (0.7.0)
66+
jbuilder (2.6.0)
67+
activesupport (>= 3.0.0, < 5.1)
68+
multi_json (~> 1.2)
69+
jquery-rails (4.2.1)
70+
rails-dom-testing (>= 1, < 3)
71+
railties (>= 4.2.0)
72+
thor (>= 0.14, < 2.0)
73+
json (1.8.3)
74+
loofah (2.0.3)
75+
nokogiri (>= 1.5.9)
76+
mail (2.6.4)
77+
mime-types (>= 1.16, < 4)
78+
mime-types (3.1)
79+
mime-types-data (~> 3.2015)
80+
mime-types-data (3.2016.0521)
81+
mini_portile2 (2.1.0)
82+
minitest (5.9.0)
83+
multi_json (1.12.1)
84+
nokogiri (1.6.8)
85+
mini_portile2 (~> 2.1.0)
86+
pkg-config (~> 1.1.7)
87+
pg (0.18.4)
88+
pkg-config (1.1.7)
89+
rack (1.6.4)
90+
rack-test (0.6.3)
91+
rack (>= 1.0)
92+
rails (4.2.6)
93+
actionmailer (= 4.2.6)
94+
actionpack (= 4.2.6)
95+
actionview (= 4.2.6)
96+
activejob (= 4.2.6)
97+
activemodel (= 4.2.6)
98+
activerecord (= 4.2.6)
99+
activesupport (= 4.2.6)
100+
bundler (>= 1.3.0, < 2.0)
101+
railties (= 4.2.6)
102+
sprockets-rails
103+
rails-deprecated_sanitizer (1.0.3)
104+
activesupport (>= 4.2.0.alpha)
105+
rails-dom-testing (1.0.7)
106+
activesupport (>= 4.2.0.beta, < 5.0)
107+
nokogiri (~> 1.6.0)
108+
rails-deprecated_sanitizer (>= 1.0.1)
109+
rails-html-sanitizer (1.0.3)
110+
loofah (~> 2.0)
111+
railties (4.2.6)
112+
actionpack (= 4.2.6)
113+
activesupport (= 4.2.6)
114+
rake (>= 0.8.7)
115+
thor (>= 0.18.1, < 2.0)
116+
rake (11.3.0)
117+
rdoc (4.2.2)
118+
json (~> 1.4)
119+
rspec-core (3.5.3)
120+
rspec-support (~> 3.5.0)
121+
rspec-expectations (3.5.0)
122+
diff-lcs (>= 1.2.0, < 2.0)
123+
rspec-support (~> 3.5.0)
124+
rspec-mocks (3.5.0)
125+
diff-lcs (>= 1.2.0, < 2.0)
126+
rspec-support (~> 3.5.0)
127+
rspec-rails (3.5.2)
128+
actionpack (>= 3.0)
129+
activesupport (>= 3.0)
130+
railties (>= 3.0)
131+
rspec-core (~> 3.5.0)
132+
rspec-expectations (~> 3.5.0)
133+
rspec-mocks (~> 3.5.0)
134+
rspec-support (~> 3.5.0)
135+
rspec-support (3.5.0)
136+
sass (3.4.22)
137+
sass-rails (5.0.6)
138+
railties (>= 4.0.0, < 6)
139+
sass (~> 3.1)
140+
sprockets (>= 2.8, < 4.0)
141+
sprockets-rails (>= 2.0, < 4.0)
142+
tilt (>= 1.1, < 3)
143+
sdoc (0.4.1)
144+
json (~> 1.7, >= 1.7.7)
145+
rdoc (~> 4.0)
146+
spring (1.7.2)
147+
sprockets (3.7.0)
148+
concurrent-ruby (~> 1.0)
149+
rack (> 1, < 3)
150+
sprockets-rails (3.2.0)
151+
actionpack (>= 4.0)
152+
activesupport (>= 4.0)
153+
sprockets (>= 3.0.0)
154+
thor (0.19.1)
155+
thread_safe (0.3.5)
156+
tilt (2.0.5)
157+
turbolinks (5.0.1)
158+
turbolinks-source (~> 5)
159+
turbolinks-source (5.0.0)
160+
tzinfo (1.2.2)
161+
thread_safe (~> 0.1)
162+
uglifier (3.0.2)
163+
execjs (>= 0.3.0, < 3)
164+
web-console (2.3.0)
165+
activemodel (>= 4.0)
166+
binding_of_caller (>= 0.7.2)
167+
railties (>= 4.0)
168+
sprockets-rails (>= 2.0, < 4.0)
169+
170+
PLATFORMS
171+
ruby
172+
173+
DEPENDENCIES
174+
activerecord-session_store
175+
bcrypt (= 3.1.7)
176+
byebug
177+
coffee-rails (~> 4.1.0)
178+
jbuilder (~> 2.0)
179+
jquery-rails
180+
pg (~> 0.15)
181+
rails (= 4.2.6)
182+
rspec-rails (~> 3.5)
183+
sass-rails (~> 5.0)
184+
sdoc (~> 0.4.0)
185+
spring
186+
turbolinks
187+
uglifier (>= 1.3.0)
188+
web-console (~> 2.0)
189+
190+
BUNDLED WITH
191+
1.12.5

0 commit comments

Comments
 (0)