Skip to content

Commit 8fa2772

Browse files
committed
Quite literally the initial commit.
0 parents  commit 8fa2772

51 files changed

Lines changed: 1158 additions & 0 deletions

Some content is hidden

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

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.bundle
2+
db/*.sqlite3
3+
log/*.log
4+
tmp/
5+
.sass-cache/

.rbenv-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.9.2-p290

.rvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rvm use 1.9.2-p290

Gemfile

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
source 'http://rubygems.org'
2+
3+
gem 'rails', '3.1.0'
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.1.0"
15+
gem 'coffee-rails', "~> 3.1.0"
16+
gem 'uglifier'
17+
end
18+
19+
gem 'jquery-rails'
20+
21+
# Use unicorn as the web server
22+
# gem 'unicorn'
23+
24+
# Deploy with Capistrano
25+
# gem 'capistrano'
26+
27+
# To use debugger
28+
# gem 'ruby-debug19', :require => 'ruby-debug'
29+
30+
group :test do
31+
# Pretty printed test output
32+
gem 'turn', :require => false
33+
end

Gemfile.lock

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
GEM
2+
remote: http://rubygems.org/
3+
specs:
4+
actionmailer (3.1.0)
5+
actionpack (= 3.1.0)
6+
mail (~> 2.3.0)
7+
actionpack (3.1.0)
8+
activemodel (= 3.1.0)
9+
activesupport (= 3.1.0)
10+
builder (~> 3.0.0)
11+
erubis (~> 2.7.0)
12+
i18n (~> 0.6)
13+
rack (~> 1.3.2)
14+
rack-cache (~> 1.0.3)
15+
rack-mount (~> 0.8.2)
16+
rack-test (~> 0.6.1)
17+
sprockets (~> 2.0.0)
18+
activemodel (3.1.0)
19+
activesupport (= 3.1.0)
20+
bcrypt-ruby (~> 3.0.0)
21+
builder (~> 3.0.0)
22+
i18n (~> 0.6)
23+
activerecord (3.1.0)
24+
activemodel (= 3.1.0)
25+
activesupport (= 3.1.0)
26+
arel (~> 2.2.1)
27+
tzinfo (~> 0.3.29)
28+
activeresource (3.1.0)
29+
activemodel (= 3.1.0)
30+
activesupport (= 3.1.0)
31+
activesupport (3.1.0)
32+
multi_json (~> 1.0)
33+
ansi (1.3.0)
34+
arel (2.2.1)
35+
bcrypt-ruby (3.0.1)
36+
builder (3.0.0)
37+
coffee-rails (3.1.0)
38+
coffee-script (>= 2.2.0)
39+
railties (~> 3.1.0.rc1)
40+
coffee-script (2.2.0)
41+
coffee-script-source
42+
execjs
43+
coffee-script-source (1.1.2)
44+
erubis (2.7.0)
45+
execjs (1.2.4)
46+
multi_json (~> 1.0)
47+
hike (1.2.1)
48+
i18n (0.6.0)
49+
jquery-rails (1.0.14)
50+
railties (~> 3.0)
51+
thor (~> 0.14)
52+
mail (2.3.0)
53+
i18n (>= 0.4.0)
54+
mime-types (~> 1.16)
55+
treetop (~> 1.4.8)
56+
mime-types (1.16)
57+
multi_json (1.0.3)
58+
polyglot (0.3.2)
59+
rack (1.3.3)
60+
rack-cache (1.0.3)
61+
rack (>= 0.4)
62+
rack-mount (0.8.3)
63+
rack (>= 1.0.0)
64+
rack-ssl (1.3.2)
65+
rack
66+
rack-test (0.6.1)
67+
rack (>= 1.0)
68+
rails (3.1.0)
69+
actionmailer (= 3.1.0)
70+
actionpack (= 3.1.0)
71+
activerecord (= 3.1.0)
72+
activeresource (= 3.1.0)
73+
activesupport (= 3.1.0)
74+
bundler (~> 1.0)
75+
railties (= 3.1.0)
76+
railties (3.1.0)
77+
actionpack (= 3.1.0)
78+
activesupport (= 3.1.0)
79+
rack-ssl (~> 1.3.2)
80+
rake (>= 0.8.7)
81+
rdoc (~> 3.4)
82+
thor (~> 0.14.6)
83+
rake (0.9.2)
84+
rdoc (3.9.4)
85+
sass (3.1.7)
86+
sass-rails (3.1.0)
87+
actionpack (~> 3.1.0)
88+
railties (~> 3.1.0)
89+
sass (>= 3.1.4)
90+
sprockets (2.0.0)
91+
hike (~> 1.2)
92+
rack (~> 1.0)
93+
tilt (!= 1.3.0, ~> 1.1)
94+
sqlite3 (1.3.4)
95+
thor (0.14.6)
96+
tilt (1.3.3)
97+
treetop (1.4.10)
98+
polyglot
99+
polyglot (>= 0.3.1)
100+
turn (0.8.2)
101+
ansi (>= 1.2.2)
102+
tzinfo (0.3.29)
103+
uglifier (1.0.3)
104+
execjs (>= 0.3.0)
105+
multi_json (>= 1.0.2)
106+
107+
PLATFORMS
108+
ruby
109+
110+
DEPENDENCIES
111+
coffee-rails (~> 3.1.0)
112+
jquery-rails
113+
rails (= 3.1.0)
114+
sass-rails (~> 3.1.0)
115+
sqlite3
116+
turn
117+
uglifier

0 commit comments

Comments
 (0)