Skip to content
This repository was archived by the owner on Jul 7, 2021. It is now read-only.

Commit f71578f

Browse files
committed
initial commit
0 parents  commit f71578f

Some content is hidden

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

50 files changed

+1205
-0
lines changed

.gitignore

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# See http://help.github.com/ignore-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+
13+
# Ignore all logfiles and tempfiles.
14+
/log/*.log
15+
/tmp
16+
17+
18+
.DS_Store
19+
.rvmrc

Gemfile

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '3.2.1'
4+
5+
# Bundle edge Rails instead:
6+
# gem 'rails', :git => 'git://github.com/rails/rails.git'
7+
8+
gem 'sqlite3'
9+
10+
11+
# Gems used only for assets and not required
12+
# in production environments by default.
13+
group :assets do
14+
gem 'sass-rails', '~> 3.2.3'
15+
gem 'coffee-rails', '~> 3.2.1'
16+
17+
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
18+
# gem 'therubyracer'
19+
20+
gem 'uglifier', '>= 1.0.3'
21+
end
22+
23+
gem 'jquery-rails'
24+
25+
# To use ActiveModel has_secure_password
26+
# gem 'bcrypt-ruby', '~> 3.0.0'
27+
28+
# To use Jbuilder templates for JSON
29+
# gem 'jbuilder'
30+
31+
# Use unicorn as the web server
32+
# gem 'unicorn'
33+
34+
# Deploy with Capistrano
35+
# gem 'capistrano'
36+
37+
# To use debugger
38+
# gem 'ruby-debug19', :require => 'ruby-debug'

Gemfile.lock

+111
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (3.2.1)
5+
actionpack (= 3.2.1)
6+
mail (~> 2.4.0)
7+
actionpack (3.2.1)
8+
activemodel (= 3.2.1)
9+
activesupport (= 3.2.1)
10+
builder (~> 3.0.0)
11+
erubis (~> 2.7.0)
12+
journey (~> 1.0.1)
13+
rack (~> 1.4.0)
14+
rack-cache (~> 1.1)
15+
rack-test (~> 0.6.1)
16+
sprockets (~> 2.1.2)
17+
activemodel (3.2.1)
18+
activesupport (= 3.2.1)
19+
builder (~> 3.0.0)
20+
activerecord (3.2.1)
21+
activemodel (= 3.2.1)
22+
activesupport (= 3.2.1)
23+
arel (~> 3.0.0)
24+
tzinfo (~> 0.3.29)
25+
activeresource (3.2.1)
26+
activemodel (= 3.2.1)
27+
activesupport (= 3.2.1)
28+
activesupport (3.2.1)
29+
i18n (~> 0.6)
30+
multi_json (~> 1.0)
31+
arel (3.0.2)
32+
builder (3.0.0)
33+
coffee-rails (3.2.2)
34+
coffee-script (>= 2.2.0)
35+
railties (~> 3.2.0)
36+
coffee-script (2.2.0)
37+
coffee-script-source
38+
execjs
39+
coffee-script-source (1.2.0)
40+
erubis (2.7.0)
41+
execjs (1.3.0)
42+
multi_json (~> 1.0)
43+
hike (1.2.1)
44+
i18n (0.6.0)
45+
journey (1.0.3)
46+
jquery-rails (2.0.0)
47+
railties (>= 3.2.0.beta, < 5.0)
48+
thor (~> 0.14)
49+
json (1.6.5)
50+
mail (2.4.1)
51+
i18n (>= 0.4.0)
52+
mime-types (~> 1.16)
53+
treetop (~> 1.4.8)
54+
mime-types (1.17.2)
55+
multi_json (1.1.0)
56+
polyglot (0.3.3)
57+
rack (1.4.1)
58+
rack-cache (1.1)
59+
rack (>= 0.4)
60+
rack-ssl (1.3.2)
61+
rack
62+
rack-test (0.6.1)
63+
rack (>= 1.0)
64+
rails (3.2.1)
65+
actionmailer (= 3.2.1)
66+
actionpack (= 3.2.1)
67+
activerecord (= 3.2.1)
68+
activeresource (= 3.2.1)
69+
activesupport (= 3.2.1)
70+
bundler (~> 1.0)
71+
railties (= 3.2.1)
72+
railties (3.2.1)
73+
actionpack (= 3.2.1)
74+
activesupport (= 3.2.1)
75+
rack-ssl (~> 1.3.2)
76+
rake (>= 0.8.7)
77+
rdoc (~> 3.4)
78+
thor (~> 0.14.6)
79+
rake (0.9.2.2)
80+
rdoc (3.12)
81+
json (~> 1.4)
82+
sass (3.1.15)
83+
sass-rails (3.2.4)
84+
railties (~> 3.2.0)
85+
sass (>= 3.1.10)
86+
tilt (~> 1.3)
87+
sprockets (2.1.2)
88+
hike (~> 1.2)
89+
rack (~> 1.0)
90+
tilt (!= 1.3.0, ~> 1.1)
91+
sqlite3 (1.3.5)
92+
thor (0.14.6)
93+
tilt (1.3.3)
94+
treetop (1.4.10)
95+
polyglot
96+
polyglot (>= 0.3.1)
97+
tzinfo (0.3.31)
98+
uglifier (1.2.3)
99+
execjs (>= 0.3.0)
100+
multi_json (>= 1.0.2)
101+
102+
PLATFORMS
103+
ruby
104+
105+
DEPENDENCIES
106+
coffee-rails (~> 3.2.1)
107+
jquery-rails
108+
rails (= 3.2.1)
109+
sass-rails (~> 3.2.3)
110+
sqlite3
111+
uglifier (>= 1.0.3)

0 commit comments

Comments
 (0)