Skip to content

Commit 50bee63

Browse files
author
James
committed
initialize repository
0 parents  commit 50bee63

Some content is hidden

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

47 files changed

+1152
-0
lines changed

.gitignore

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
.bundle
2+
db/*.sqlite3
3+
log/*.log
4+
tmp/
5+
.sass-cache/
6+
7+
# Ignore other unneeded files.
8+
database.yml
9+
doc/
10+
*.swp
11+
*~
12+
.project
13+
.DS_Store
14+
.idea
15+
.secret

Gemfile

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
source 'http://rubygems.org'
2+
3+
ruby '1.9.2'
4+
5+
gem 'rails', '3.1.0'
6+
7+
# Bundle edge Rails instead:
8+
# gem 'rails', :git => 'git://github.com/rails/rails.git'
9+
10+
group :development do
11+
gem 'sqlite3'
12+
end
13+
14+
group :doc do
15+
gem 'sdoc'
16+
end
17+
18+
# Gems used only for assets and not required
19+
# in production environments by default.
20+
group :assets do
21+
gem 'sass-rails', " ~> 3.1.0"
22+
gem 'coffee-rails', "~> 3.1.0"
23+
gem 'uglifier'
24+
end
25+
26+
gem 'jquery-rails'
27+
28+
# Use unicorn as the web server
29+
# gem 'unicorn'
30+
31+
# Deploy with Capistrano
32+
# gem 'capistrano'
33+
34+
# To use debugger
35+
# gem 'ruby-debug19', :require => 'ruby-debug'
36+
37+
group :test do
38+
# Pretty printed test output
39+
gem 'turn', :require => false
40+
end

Gemfile.lock

+123
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
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.4.3)
34+
arel (2.2.3)
35+
bcrypt-ruby (3.0.1)
36+
builder (3.0.4)
37+
coffee-rails (3.1.1)
38+
coffee-script (>= 2.2.0)
39+
railties (~> 3.1.0)
40+
coffee-script (2.2.0)
41+
coffee-script-source
42+
execjs
43+
coffee-script-source (1.6.3)
44+
erubis (2.7.0)
45+
execjs (2.0.1)
46+
hike (1.2.3)
47+
i18n (0.6.5)
48+
jquery-rails (3.0.4)
49+
railties (>= 3.0, < 5.0)
50+
thor (>= 0.14, < 2.0)
51+
json (1.8.0)
52+
mail (2.3.3)
53+
i18n (>= 0.4.0)
54+
mime-types (~> 1.16)
55+
treetop (~> 1.4.8)
56+
mime-types (1.25)
57+
multi_json (1.7.9)
58+
polyglot (0.3.3)
59+
rack (1.3.10)
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.3)
65+
rack
66+
rack-test (0.6.2)
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 (10.1.0)
84+
rdoc (3.12.2)
85+
json (~> 1.4)
86+
sass (3.2.10)
87+
sass-rails (3.1.7)
88+
actionpack (~> 3.1.0)
89+
railties (~> 3.1.0)
90+
sass (>= 3.1.10)
91+
tilt (~> 1.3.2)
92+
sdoc (0.3.20)
93+
json (>= 1.1.3)
94+
rdoc (~> 3.10)
95+
sprockets (2.0.4)
96+
hike (~> 1.2)
97+
rack (~> 1.0)
98+
tilt (~> 1.1, != 1.3.0)
99+
sqlite3 (1.3.8)
100+
thor (0.14.6)
101+
tilt (1.3.7)
102+
treetop (1.4.15)
103+
polyglot
104+
polyglot (>= 0.3.1)
105+
turn (0.9.6)
106+
ansi
107+
tzinfo (0.3.37)
108+
uglifier (2.2.1)
109+
execjs (>= 0.3.0)
110+
multi_json (~> 1.0, >= 1.0.2)
111+
112+
PLATFORMS
113+
ruby
114+
115+
DEPENDENCIES
116+
coffee-rails (~> 3.1.0)
117+
jquery-rails
118+
rails (= 3.1.0)
119+
sass-rails (~> 3.1.0)
120+
sdoc
121+
sqlite3
122+
turn
123+
uglifier

0 commit comments

Comments
 (0)