Skip to content

Commit cd01d88

Browse files
committed
first
0 parents  commit cd01d88

67 files changed

Lines changed: 1333 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.

.Gemfile.swp

12 KB
Binary file not shown.

.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/

.rspec

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

Gemfile

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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 :developement do
31+
gem 'rspec-rails'
32+
end
33+
34+
group :test do
35+
# Pretty printed test output
36+
gem 'turn', :require => false
37+
gem 'rspec-rails'
38+
gem 'webrat'
39+
gem 'spork'
40+
end

Gemfile.lock

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
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.0)
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+
diff-lcs (1.1.3)
45+
erubis (2.7.0)
46+
execjs (1.2.4)
47+
multi_json (~> 1.0)
48+
hike (1.2.1)
49+
i18n (0.6.0)
50+
jquery-rails (1.0.14)
51+
railties (~> 3.0)
52+
thor (~> 0.14)
53+
mail (2.3.0)
54+
i18n (>= 0.4.0)
55+
mime-types (~> 1.16)
56+
treetop (~> 1.4.8)
57+
mime-types (1.16)
58+
multi_json (1.0.3)
59+
nokogiri (1.5.0)
60+
polyglot (0.3.2)
61+
rack (1.3.2)
62+
rack-cache (1.0.3)
63+
rack (>= 0.4)
64+
rack-mount (0.8.3)
65+
rack (>= 1.0.0)
66+
rack-ssl (1.3.2)
67+
rack
68+
rack-test (0.6.1)
69+
rack (>= 1.0)
70+
rails (3.1.0)
71+
actionmailer (= 3.1.0)
72+
actionpack (= 3.1.0)
73+
activerecord (= 3.1.0)
74+
activeresource (= 3.1.0)
75+
activesupport (= 3.1.0)
76+
bundler (~> 1.0)
77+
railties (= 3.1.0)
78+
railties (3.1.0)
79+
actionpack (= 3.1.0)
80+
activesupport (= 3.1.0)
81+
rack-ssl (~> 1.3.2)
82+
rake (>= 0.8.7)
83+
rdoc (~> 3.4)
84+
thor (~> 0.14.6)
85+
rake (0.9.2)
86+
rdoc (3.9.4)
87+
rspec (2.6.0)
88+
rspec-core (~> 2.6.0)
89+
rspec-expectations (~> 2.6.0)
90+
rspec-mocks (~> 2.6.0)
91+
rspec-core (2.6.4)
92+
rspec-expectations (2.6.0)
93+
diff-lcs (~> 1.1.2)
94+
rspec-mocks (2.6.0)
95+
rspec-rails (2.6.1)
96+
actionpack (~> 3.0)
97+
activesupport (~> 3.0)
98+
railties (~> 3.0)
99+
rspec (~> 2.6.0)
100+
sass (3.1.7)
101+
sass-rails (3.1.0)
102+
actionpack (~> 3.1.0)
103+
railties (~> 3.1.0)
104+
sass (>= 3.1.4)
105+
spork (0.8.5)
106+
sprockets (2.0.0)
107+
hike (~> 1.2)
108+
rack (~> 1.0)
109+
tilt (!= 1.3.0, ~> 1.1)
110+
sqlite3 (1.3.4)
111+
thor (0.14.6)
112+
tilt (1.3.3)
113+
treetop (1.4.10)
114+
polyglot
115+
polyglot (>= 0.3.1)
116+
turn (0.8.2)
117+
ansi (>= 1.2.2)
118+
tzinfo (0.3.29)
119+
uglifier (1.0.3)
120+
execjs (>= 0.3.0)
121+
multi_json (>= 1.0.2)
122+
webrat (0.7.3)
123+
nokogiri (>= 1.2.0)
124+
rack (>= 1.0)
125+
rack-test (>= 0.5.3)
126+
127+
PLATFORMS
128+
ruby
129+
130+
DEPENDENCIES
131+
coffee-rails (~> 3.1.0)
132+
jquery-rails
133+
rails (= 3.1.0)
134+
rspec-rails
135+
sass-rails (~> 3.1.0)
136+
spork
137+
sqlite3
138+
turn
139+
uglifier
140+
webrat

0 commit comments

Comments
 (0)