Skip to content

Commit 794cf18

Browse files
author
Rex Chung
committed
initial commit
0 parents  commit 794cf18

Some content is hidden

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

54 files changed

+10501
-0
lines changed

Gemfile

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
source 'http://rubygems.org'
2+
3+
gem 'rails', '3.0.0'
4+
5+
# Bundle edge Rails instead:
6+
# gem 'rails', :git => 'git://github.com/rails/rails.git'
7+
8+
gem 'sqlite3-ruby', :require => 'sqlite3'
9+
10+
# Use unicorn as the web server
11+
gem 'unicorn'
12+
13+
# Deploy with Capistrano
14+
gem 'capistrano'
15+
gem 'capistrano-ext'
16+
gem 'devise', "~> 1.1.0"
17+
gem "configatron"
18+
gem "post_commit"
19+
gem "declarative_authorization"
20+
21+
group :development do
22+
# To use debugger
23+
gem 'ruby-debug'
24+
gem 'sqlite3-ruby', :require => "sqlite3"
25+
end
26+
27+
# Bundle the extra gems:
28+
# gem 'bj'
29+
# gem 'nokogiri'
30+
# gem 'sqlite3-ruby', :require => 'sqlite3'
31+
# gem 'aws-s3', :require => 'aws/s3'
32+
33+
# Bundle gems for the local environment. Make sure to
34+
# put test-only gems in this group so their generators
35+
# and rake tasks are available in development mode:
36+
# group :development, :test do
37+
# gem 'webrat'
38+
# end

Gemfile.lock

+120
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
GEM
2+
remote: http://rubygems.org/
3+
specs:
4+
abstract (1.0.0)
5+
actionmailer (3.0.0)
6+
actionpack (= 3.0.0)
7+
mail (~> 2.2.5)
8+
actionpack (3.0.0)
9+
activemodel (= 3.0.0)
10+
activesupport (= 3.0.0)
11+
builder (~> 2.1.2)
12+
erubis (~> 2.6.6)
13+
i18n (~> 0.4.1)
14+
rack (~> 1.2.1)
15+
rack-mount (~> 0.6.12)
16+
rack-test (~> 0.5.4)
17+
tzinfo (~> 0.3.23)
18+
activemodel (3.0.0)
19+
activesupport (= 3.0.0)
20+
builder (~> 2.1.2)
21+
i18n (~> 0.4.1)
22+
activerecord (3.0.0)
23+
activemodel (= 3.0.0)
24+
activesupport (= 3.0.0)
25+
arel (~> 1.0.0)
26+
tzinfo (~> 0.3.23)
27+
activeresource (3.0.0)
28+
activemodel (= 3.0.0)
29+
activesupport (= 3.0.0)
30+
activesupport (3.0.0)
31+
arel (1.0.1)
32+
activesupport (~> 3.0.0)
33+
bcrypt-ruby (2.1.2)
34+
builder (2.1.2)
35+
capistrano (2.5.19)
36+
highline
37+
net-scp (>= 1.0.0)
38+
net-sftp (>= 2.0.0)
39+
net-ssh (>= 2.0.14)
40+
net-ssh-gateway (>= 1.0.0)
41+
capistrano-ext (1.2.1)
42+
capistrano (>= 1.0.0)
43+
columnize (0.3.1)
44+
configatron (2.6.3)
45+
yamler (>= 0.1.0)
46+
declarative_authorization (0.5)
47+
rails (>= 2.1.0)
48+
devise (1.1.2)
49+
bcrypt-ruby (~> 2.1.2)
50+
warden (~> 0.10.7)
51+
erubis (2.6.6)
52+
abstract (>= 1.0.0)
53+
highline (1.6.1)
54+
i18n (0.4.1)
55+
json (1.4.6)
56+
linecache (0.43)
57+
mail (2.2.5)
58+
activesupport (>= 2.3.6)
59+
mime-types
60+
treetop (>= 1.4.5)
61+
mime-types (1.16)
62+
net-scp (1.0.3)
63+
net-ssh (>= 1.99.1)
64+
net-sftp (2.0.5)
65+
net-ssh (>= 2.0.9)
66+
net-ssh (2.0.23)
67+
net-ssh-gateway (1.0.1)
68+
net-ssh (>= 1.99.1)
69+
polyglot (0.3.1)
70+
post_commit (0.1.2)
71+
json
72+
rack (1.2.1)
73+
rack-mount (0.6.12)
74+
rack (>= 1.0.0)
75+
rack-test (0.5.4)
76+
rack (>= 1.0)
77+
rails (3.0.0)
78+
actionmailer (= 3.0.0)
79+
actionpack (= 3.0.0)
80+
activerecord (= 3.0.0)
81+
activeresource (= 3.0.0)
82+
activesupport (= 3.0.0)
83+
bundler (~> 1.0.0)
84+
railties (= 3.0.0)
85+
railties (3.0.0)
86+
actionpack (= 3.0.0)
87+
activesupport (= 3.0.0)
88+
rake (>= 0.8.4)
89+
thor (~> 0.14.0)
90+
rake (0.8.7)
91+
ruby-debug (0.10.3)
92+
columnize (>= 0.1)
93+
ruby-debug-base (~> 0.10.3.0)
94+
ruby-debug-base (0.10.3)
95+
linecache (>= 0.3)
96+
sqlite3-ruby (1.3.1)
97+
thor (0.14.0)
98+
treetop (1.4.8)
99+
polyglot (>= 0.3.1)
100+
tzinfo (0.3.23)
101+
unicorn (1.1.3)
102+
rack
103+
warden (0.10.7)
104+
rack (>= 1.0.0)
105+
yamler (0.1.0)
106+
107+
PLATFORMS
108+
ruby
109+
110+
DEPENDENCIES
111+
capistrano
112+
capistrano-ext
113+
configatron
114+
declarative_authorization
115+
devise (~> 1.1.0)
116+
post_commit
117+
rails (= 3.0.0)
118+
ruby-debug
119+
sqlite3-ruby
120+
unicorn

0 commit comments

Comments
 (0)