Skip to content

Commit 19f7049

Browse files
committed
Initial commit of code by written by students + README + LICENSE.
0 parents  commit 19f7049

File tree

238 files changed

+18787
-0
lines changed

Some content is hidden

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

238 files changed

+18787
-0
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.bundle
2+
db/*.sqlite3
3+
log/*.log
4+
tmp/
5+
gitrepos/
6+

.rspec

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--colour

Gemfile

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
source 'http://rubygems.org'
2+
3+
gem 'rails', '~> 3.0.0'
4+
5+
gem 'rake', '~> 0.8.0'
6+
gem 'google-spreadsheet-ruby'
7+
gem 'sqlite3'
8+
gem 'ruby-stemp'
9+
gem 'gdocs4ruby'
10+
gem 'spreadsheet'
11+
12+
group :development, :test do
13+
gem 'rspec', '~> 2.6.0'
14+
gem 'rspec-core', '~> 2.6.0'
15+
gem 'rspec-rails', '~> 2.6.0'
16+
gem 'capybara', '~> 1.0.0'
17+
end
18+

Gemfile.lock

+127
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
GEM
2+
remote: http://rubygems.org/
3+
specs:
4+
abstract (1.0.0)
5+
actionmailer (3.0.7)
6+
actionpack (= 3.0.7)
7+
mail (~> 2.2.15)
8+
actionpack (3.0.7)
9+
activemodel (= 3.0.7)
10+
activesupport (= 3.0.7)
11+
builder (~> 2.1.2)
12+
erubis (~> 2.6.6)
13+
i18n (~> 0.5.0)
14+
rack (~> 1.2.1)
15+
rack-mount (~> 0.6.14)
16+
rack-test (~> 0.5.7)
17+
tzinfo (~> 0.3.23)
18+
activemodel (3.0.7)
19+
activesupport (= 3.0.7)
20+
builder (~> 2.1.2)
21+
i18n (~> 0.5.0)
22+
activerecord (3.0.7)
23+
activemodel (= 3.0.7)
24+
activesupport (= 3.0.7)
25+
arel (~> 2.0.2)
26+
tzinfo (~> 0.3.23)
27+
activeresource (3.0.7)
28+
activemodel (= 3.0.7)
29+
activesupport (= 3.0.7)
30+
activesupport (3.0.7)
31+
arel (2.0.10)
32+
builder (2.1.2)
33+
capybara (1.0.0)
34+
mime-types (>= 1.16)
35+
nokogiri (>= 1.3.3)
36+
rack (>= 1.0.0)
37+
rack-test (>= 0.5.4)
38+
selenium-webdriver (~> 0.2.0)
39+
xpath (~> 0.1.4)
40+
childprocess (0.1.9)
41+
ffi (~> 1.0.6)
42+
diff-lcs (1.1.2)
43+
erubis (2.6.6)
44+
abstract (>= 1.0.0)
45+
ffi (1.0.9)
46+
gdata4ruby (0.1.5)
47+
gdocs4ruby (0.1.2)
48+
gdata4ruby (>= 0.1.1)
49+
google-spreadsheet-ruby (0.1.5)
50+
nokogiri (>= 1.4.3.1)
51+
oauth (>= 0.3.6)
52+
i18n (0.5.0)
53+
json_pure (1.5.1)
54+
mail (2.2.19)
55+
activesupport (>= 2.3.6)
56+
i18n (>= 0.4.0)
57+
mime-types (~> 1.16)
58+
treetop (~> 1.4.8)
59+
mime-types (1.16)
60+
nokogiri (1.4.4)
61+
oauth (0.4.4)
62+
polyglot (0.3.1)
63+
rack (1.2.3)
64+
rack-mount (0.6.14)
65+
rack (>= 1.0.0)
66+
rack-test (0.5.7)
67+
rack (>= 1.0)
68+
rails (3.0.7)
69+
actionmailer (= 3.0.7)
70+
actionpack (= 3.0.7)
71+
activerecord (= 3.0.7)
72+
activeresource (= 3.0.7)
73+
activesupport (= 3.0.7)
74+
bundler (~> 1.0)
75+
railties (= 3.0.7)
76+
railties (3.0.7)
77+
actionpack (= 3.0.7)
78+
activesupport (= 3.0.7)
79+
rake (>= 0.8.7)
80+
thor (~> 0.14.4)
81+
rake (0.8.7)
82+
rspec (2.6.0)
83+
rspec-core (~> 2.6.0)
84+
rspec-expectations (~> 2.6.0)
85+
rspec-mocks (~> 2.6.0)
86+
rspec-core (2.6.3)
87+
rspec-expectations (2.6.0)
88+
diff-lcs (~> 1.1.2)
89+
rspec-mocks (2.6.0)
90+
rspec-rails (2.6.1)
91+
actionpack (~> 3.0)
92+
activesupport (~> 3.0)
93+
railties (~> 3.0)
94+
rspec (~> 2.6.0)
95+
ruby-ole (1.2.11.1)
96+
ruby-stemp (1.1)
97+
rubyzip (0.9.4)
98+
selenium-webdriver (0.2.2)
99+
childprocess (>= 0.1.9)
100+
ffi (>= 1.0.7)
101+
json_pure
102+
rubyzip
103+
spreadsheet (0.6.5.4)
104+
ruby-ole (>= 1.0)
105+
sqlite3 (1.3.3)
106+
thor (0.14.6)
107+
treetop (1.4.9)
108+
polyglot (>= 0.3.1)
109+
tzinfo (0.3.27)
110+
xpath (0.1.4)
111+
nokogiri (~> 1.3)
112+
113+
PLATFORMS
114+
ruby
115+
116+
DEPENDENCIES
117+
capybara (~> 1.0.0)
118+
gdocs4ruby
119+
google-spreadsheet-ruby
120+
rails (~> 3.0.0)
121+
rake (~> 0.8.0)
122+
rspec (~> 2.6.0)
123+
rspec-core (~> 2.6.0)
124+
rspec-rails (~> 2.6.0)
125+
ruby-stemp
126+
spreadsheet
127+
sqlite3

0 commit comments

Comments
 (0)