Skip to content

Commit eae3474

Browse files
committed
first
0 parents  commit eae3474

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

+1208
-0
lines changed

.gitignore

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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

Gemfile

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

Gemfile.lock

+113
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
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.4)
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.4.0)
40+
erubis (2.7.0)
41+
execjs (1.4.0)
42+
multi_json (~> 1.0)
43+
hike (1.2.1)
44+
i18n (0.6.1)
45+
journey (1.0.4)
46+
jquery-rails (2.1.4)
47+
railties (>= 3.0, < 5.0)
48+
thor (>= 0.14, < 2.0)
49+
json (1.7.5)
50+
mail (2.4.4)
51+
i18n (>= 0.4.0)
52+
mime-types (~> 1.16)
53+
treetop (~> 1.4.8)
54+
mime-types (1.19)
55+
multi_json (1.3.7)
56+
pg (0.13.1-x86-mingw32)
57+
polyglot (0.3.3)
58+
rack (1.4.1)
59+
rack-cache (1.2)
60+
rack (>= 0.4)
61+
rack-ssl (1.3.2)
62+
rack
63+
rack-test (0.6.2)
64+
rack (>= 1.0)
65+
rails (3.2.1)
66+
actionmailer (= 3.2.1)
67+
actionpack (= 3.2.1)
68+
activerecord (= 3.2.1)
69+
activeresource (= 3.2.1)
70+
activesupport (= 3.2.1)
71+
bundler (~> 1.0)
72+
railties (= 3.2.1)
73+
railties (3.2.1)
74+
actionpack (= 3.2.1)
75+
activesupport (= 3.2.1)
76+
rack-ssl (~> 1.3.2)
77+
rake (>= 0.8.7)
78+
rdoc (~> 3.4)
79+
thor (~> 0.14.6)
80+
rake (10.0.2)
81+
rdoc (3.12)
82+
json (~> 1.4)
83+
sass (3.2.3)
84+
sass-rails (3.2.5)
85+
railties (~> 3.2.0)
86+
sass (>= 3.1.10)
87+
tilt (~> 1.3)
88+
sprockets (2.1.3)
89+
hike (~> 1.2)
90+
rack (~> 1.0)
91+
tilt (~> 1.1, != 1.3.0)
92+
sqlite3 (1.3.6-x86-mingw32)
93+
thor (0.14.6)
94+
tilt (1.3.3)
95+
treetop (1.4.12)
96+
polyglot
97+
polyglot (>= 0.3.1)
98+
tzinfo (0.3.35)
99+
uglifier (1.3.0)
100+
execjs (>= 0.3.0)
101+
multi_json (~> 1.0, >= 1.0.2)
102+
103+
PLATFORMS
104+
x86-mingw32
105+
106+
DEPENDENCIES
107+
coffee-rails (~> 3.2.1)
108+
jquery-rails
109+
pg
110+
rails (= 3.2.1)
111+
sass-rails (~> 3.2.3)
112+
sqlite3
113+
uglifier (>= 1.0.3)

0 commit comments

Comments
 (0)