Skip to content

Commit a812f4a

Browse files
committed
Add rails version of project to master
1 parent d6b4a89 commit a812f4a

File tree

99 files changed

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

99 files changed

+34274
-0
lines changed

Gemfile

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
source 'https://rubygems.org'
2+
gem 'rails', '4.2.1'
3+
gem 'pg'
4+
gem 'sass-rails', '~> 5.0'
5+
gem 'uglifier', '>= 1.3.0'
6+
gem 'coffee-rails', '~> 4.1.0'
7+
gem 'jquery-rails'
8+
gem 'jbuilder', '~> 2.0'
9+
gem 'sdoc', '~> 0.4.0', group: :doc
10+
11+
gem 'bcrypt', '~> 3.1.7'
12+
gem 'unicorn'
13+
14+
gem 'capistrano-rails', group: :development
15+
16+
group :development, :test do
17+
gem 'byebug'
18+
gem 'web-console', '~> 2.0'
19+
gem 'spring'
20+
gem 'rspec-rails'
21+
gem 'faker'
22+
gem 'factory_girl_rails'
23+
gem 'capybara'
24+
end
25+

Gemfile.lock

+218
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,218 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (4.2.1)
5+
actionpack (= 4.2.1)
6+
actionview (= 4.2.1)
7+
activejob (= 4.2.1)
8+
mail (~> 2.5, >= 2.5.4)
9+
rails-dom-testing (~> 1.0, >= 1.0.5)
10+
actionpack (4.2.1)
11+
actionview (= 4.2.1)
12+
activesupport (= 4.2.1)
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.1)
17+
actionview (4.2.1)
18+
activesupport (= 4.2.1)
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.1)
23+
activejob (4.2.1)
24+
activesupport (= 4.2.1)
25+
globalid (>= 0.3.0)
26+
activemodel (4.2.1)
27+
activesupport (= 4.2.1)
28+
builder (~> 3.1)
29+
activerecord (4.2.1)
30+
activemodel (= 4.2.1)
31+
activesupport (= 4.2.1)
32+
arel (~> 6.0)
33+
activesupport (4.2.1)
34+
i18n (~> 0.7)
35+
json (~> 1.7, >= 1.7.7)
36+
minitest (~> 5.1)
37+
thread_safe (~> 0.3, >= 0.3.4)
38+
tzinfo (~> 1.1)
39+
arel (6.0.0)
40+
bcrypt (3.1.10)
41+
binding_of_caller (0.7.2)
42+
debug_inspector (>= 0.0.1)
43+
builder (3.2.2)
44+
byebug (5.0.0)
45+
columnize (= 0.9.0)
46+
capistrano (3.4.0)
47+
i18n
48+
rake (>= 10.0.0)
49+
sshkit (~> 1.3)
50+
capistrano-bundler (1.1.4)
51+
capistrano (~> 3.1)
52+
sshkit (~> 1.2)
53+
capistrano-rails (1.1.3)
54+
capistrano (~> 3.1)
55+
capistrano-bundler (~> 1.1)
56+
capybara (2.4.4)
57+
mime-types (>= 1.16)
58+
nokogiri (>= 1.3.3)
59+
rack (>= 1.0.0)
60+
rack-test (>= 0.5.4)
61+
xpath (~> 2.0)
62+
coffee-rails (4.1.0)
63+
coffee-script (>= 2.2.0)
64+
railties (>= 4.0.0, < 5.0)
65+
coffee-script (2.4.1)
66+
coffee-script-source
67+
execjs
68+
coffee-script-source (1.9.1.1)
69+
colorize (0.7.7)
70+
columnize (0.9.0)
71+
debug_inspector (0.0.2)
72+
diff-lcs (1.2.5)
73+
erubis (2.7.0)
74+
execjs (2.5.2)
75+
factory_girl (4.5.0)
76+
activesupport (>= 3.0.0)
77+
factory_girl_rails (4.5.0)
78+
factory_girl (~> 4.5.0)
79+
railties (>= 3.0.0)
80+
faker (1.4.3)
81+
i18n (~> 0.5)
82+
globalid (0.3.5)
83+
activesupport (>= 4.1.0)
84+
i18n (0.7.0)
85+
jbuilder (2.2.16)
86+
activesupport (>= 3.0.0, < 5)
87+
multi_json (~> 1.2)
88+
jquery-rails (4.0.3)
89+
rails-dom-testing (~> 1.0)
90+
railties (>= 4.2.0)
91+
thor (>= 0.14, < 2.0)
92+
json (1.8.2)
93+
kgio (2.9.3)
94+
loofah (2.0.2)
95+
nokogiri (>= 1.5.9)
96+
mail (2.6.3)
97+
mime-types (>= 1.16, < 3)
98+
mime-types (2.5)
99+
mini_portile (0.6.2)
100+
minitest (5.6.1)
101+
multi_json (1.11.0)
102+
net-scp (1.2.1)
103+
net-ssh (>= 2.6.5)
104+
net-ssh (2.9.2)
105+
nokogiri (1.6.6.2)
106+
mini_portile (~> 0.6.0)
107+
pg (0.18.2)
108+
rack (1.6.1)
109+
rack-test (0.6.3)
110+
rack (>= 1.0)
111+
rails (4.2.1)
112+
actionmailer (= 4.2.1)
113+
actionpack (= 4.2.1)
114+
actionview (= 4.2.1)
115+
activejob (= 4.2.1)
116+
activemodel (= 4.2.1)
117+
activerecord (= 4.2.1)
118+
activesupport (= 4.2.1)
119+
bundler (>= 1.3.0, < 2.0)
120+
railties (= 4.2.1)
121+
sprockets-rails
122+
rails-deprecated_sanitizer (1.0.3)
123+
activesupport (>= 4.2.0.alpha)
124+
rails-dom-testing (1.0.6)
125+
activesupport (>= 4.2.0.beta, < 5.0)
126+
nokogiri (~> 1.6.0)
127+
rails-deprecated_sanitizer (>= 1.0.1)
128+
rails-html-sanitizer (1.0.2)
129+
loofah (~> 2.0)
130+
railties (4.2.1)
131+
actionpack (= 4.2.1)
132+
activesupport (= 4.2.1)
133+
rake (>= 0.8.7)
134+
thor (>= 0.18.1, < 2.0)
135+
raindrops (0.13.0)
136+
rake (10.4.2)
137+
rdoc (4.2.0)
138+
json (~> 1.4)
139+
rspec-core (3.2.3)
140+
rspec-support (~> 3.2.0)
141+
rspec-expectations (3.2.1)
142+
diff-lcs (>= 1.2.0, < 2.0)
143+
rspec-support (~> 3.2.0)
144+
rspec-mocks (3.2.1)
145+
diff-lcs (>= 1.2.0, < 2.0)
146+
rspec-support (~> 3.2.0)
147+
rspec-rails (3.2.1)
148+
actionpack (>= 3.0, < 4.3)
149+
activesupport (>= 3.0, < 4.3)
150+
railties (>= 3.0, < 4.3)
151+
rspec-core (~> 3.2.0)
152+
rspec-expectations (~> 3.2.0)
153+
rspec-mocks (~> 3.2.0)
154+
rspec-support (~> 3.2.0)
155+
rspec-support (3.2.2)
156+
sass (3.4.13)
157+
sass-rails (5.0.3)
158+
railties (>= 4.0.0, < 5.0)
159+
sass (~> 3.1)
160+
sprockets (>= 2.8, < 4.0)
161+
sprockets-rails (>= 2.0, < 4.0)
162+
tilt (~> 1.1)
163+
sdoc (0.4.1)
164+
json (~> 1.7, >= 1.7.7)
165+
rdoc (~> 4.0)
166+
spring (1.3.6)
167+
sprockets (3.1.0)
168+
rack (~> 1.0)
169+
sprockets-rails (2.3.1)
170+
actionpack (>= 3.0)
171+
activesupport (>= 3.0)
172+
sprockets (>= 2.8, < 4.0)
173+
sshkit (1.7.1)
174+
colorize (>= 0.7.0)
175+
net-scp (>= 1.1.2)
176+
net-ssh (>= 2.8.0)
177+
thor (0.19.1)
178+
thread_safe (0.3.5)
179+
tilt (1.4.1)
180+
tzinfo (1.2.2)
181+
thread_safe (~> 0.1)
182+
uglifier (2.7.1)
183+
execjs (>= 0.3.0)
184+
json (>= 1.8.0)
185+
unicorn (4.9.0)
186+
kgio (~> 2.6)
187+
rack
188+
raindrops (~> 0.7)
189+
web-console (2.1.2)
190+
activemodel (>= 4.0)
191+
binding_of_caller (>= 0.7.2)
192+
railties (>= 4.0)
193+
sprockets-rails (>= 2.0, < 4.0)
194+
xpath (2.0.0)
195+
nokogiri (~> 1.3)
196+
197+
PLATFORMS
198+
ruby
199+
200+
DEPENDENCIES
201+
bcrypt (~> 3.1.7)
202+
byebug
203+
capistrano-rails
204+
capybara
205+
coffee-rails (~> 4.1.0)
206+
factory_girl_rails
207+
faker
208+
jbuilder (~> 2.0)
209+
jquery-rails
210+
pg
211+
rails (= 4.2.1)
212+
rspec-rails
213+
sass-rails (~> 5.0)
214+
sdoc (~> 0.4.0)
215+
spring
216+
uglifier (>= 1.3.0)
217+
unicorn
218+
web-console (~> 2.0)

README.rdoc

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
== README
2+
3+
This README would normally document whatever steps are necessary to get the
4+
application up and running.
5+
6+
Things you may want to cover:
7+
8+
* Ruby version
9+
10+
* System dependencies
11+
12+
* Configuration
13+
14+
* Database creation
15+
16+
* Database initialization
17+
18+
* How to run the test suite
19+
20+
* Services (job queues, cache servers, search engines, etc.)
21+
22+
* Deployment instructions
23+
24+
* ...
25+
26+
27+
Please feel free to use a different markup language if you do not plan to run
28+
<tt>rake doc:app</tt>.

Rakefile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Add your own tasks in files placed in lib/tasks ending in .rake,
2+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3+
4+
require File.expand_path('../config/application', __FILE__)
5+
6+
Rails.application.load_tasks

app/assets/images/.keep

Whitespace-only changes.

app/assets/javascripts/application.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// This is a manifest file that'll be compiled into application.js, which will include all the files
2+
// listed below.
3+
//
4+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5+
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6+
//
7+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8+
// compiled file.
9+
//
10+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11+
// about supported directives.
12+
//
13+
//= require jquery
14+
//= require jquery_ujs
15+
//= require_tree .

0 commit comments

Comments
 (0)