Skip to content

Commit 8b8173d

Browse files
committed
Initial commit.
closes #6988138
0 parents  commit 8b8173d

File tree

3,385 files changed

+363717
-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.

3,385 files changed

+363717
-0
lines changed

.gitignore

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
.rvmrc
2+
.rdebug_hist
3+
.DS_Store
4+
Gemfile.lock
5+
log/*.log
6+
log/*.pid
7+
log/**/*
8+
lib/tasks/deploy.rake
9+
tmp/**/*
10+
tmp/*
11+
db/*.sqlite3
12+
db/*.sqlite3-journal
13+
db/*.sqlite
14+
config/amazon_s3.yml
15+
config/cutycapt.yml
16+
config/collaborations.yml
17+
config/database.yml
18+
config/delayed_jobs.yml
19+
config/domain.txt
20+
config/domain.yml
21+
config/etherpad.yml
22+
config/facebooker.yml
23+
config/file_store.yml
24+
config/google_docs.yml
25+
config/kaltura.yml
26+
config/linked_in.yml
27+
config/mysql.database.yml
28+
config/memcache.yml
29+
config/outgoing_mail.yml
30+
config/saml.yml
31+
config/scribd.yml
32+
config/security.yml
33+
config/tinychat.yml
34+
config/twitter.yml
35+
config/web_conferences.yml
36+
config/zendesk.yml
37+
config/environments/*-local.rb
38+
models.dot
39+
db/*sql
40+
db/development_structure.sql
41+
db/schema.rb
42+
noodle*
43+
tmp_*
44+
public/files/**/*
45+
public/javascripts/cached/*
46+
public/stylesheets/compiled/*
47+
public/stylesheets/compiled/**/*
48+
public/stylesheets/cached/*
49+
*.pid
50+
vendor/cache/*mswin*.gem
51+
vendor/cache
52+
coverage
53+
instructure_content
54+
.idea/*
55+
exports/*
56+
.sass-cache
57+
.bundle
58+
vendor/cache/*mswin*.gem
59+
public/*.gz
60+
public/*/*.gz
61+
public/*/*/*.gz
62+
public/*/*/*/*.gz
63+
public/*/*/*/*/*.gz
64+
public/*/*/*/*/*/*.gz
65+
public/*/*/*/*/*/*/*.gz
66+
public/*/*/*/*/*/*/*/*.gz
67+
public/*/*/*/*/*/*/*/*/*.gz
68+
*.swp
69+
public/assets/*
70+
doc/api/*
71+
doc/plugins/*
72+
.yardoc/*

COPYRIGHT

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Canvas is Copyright (C) 2011 Instructure, Inc.
2+
3+
Canvas is free software: you can redistribute it and/or modify it under
4+
the terms of the GNU Affero General Public License as published by the Free
5+
Software Foundation, version 3 of the License.
6+
7+
Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
8+
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
9+
A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
10+
details.
11+
12+
You should have received a copy of the GNU Affero General Public License along
13+
with this program. If not, see <http://www.gnu.org/licenses/>.

Gemfile

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
source :gemcutter
2+
source 'http://gems.github.com'
3+
4+
gem 'rails', '2.3.9'
5+
gem 'authlogic', '2.1.3'
6+
gem 'aws-s3', '0.6.2', :require => 'aws/s3'
7+
gem 'builder', '2.1.2'
8+
gem 'compass', '0.10.5'
9+
gem 'daemons', '1.1.0'
10+
gem 'diff-lcs', '1.1.2', :require => 'diff/lcs'
11+
gem 'erubis', '2.6.6'
12+
gem 'facebooker', '1.0.75'
13+
gem 'hashery', '1.3.0', :require => 'hashery/dictionary'
14+
gem 'highline', '1.6.1'
15+
gem 'fastercsv', '1.5.3'
16+
gem 'haml', '3.0.22'
17+
gem 'hpricot', '0.8.2'
18+
gem 'jammit', '0.6.0'
19+
# native xml parsing, diigo
20+
gem 'libxml-ruby', '1.1.3', :require => 'xml/libxml'
21+
gem 'icalendar', '1.1.5'
22+
gem 'mime-types', '1.16', :require => 'mime/types'
23+
# attachment_fu (even the current technoweenie one on github) does not work
24+
# with mini_magick 3.1
25+
gem 'mini_magick', '1.3.2'
26+
gem 'mysql', '2.8.1'
27+
gem 'nokogiri', '1.4.1'
28+
gem 'oauth', '0.3.4' # 0.3.6 breaks our integration with google docs
29+
gem 'ratom', '0.6.7', :require => "atom"
30+
gem 'rscribd', '1.2.0'
31+
gem 'ruby-net-ldap', '0.0.4', :require => 'net/ldap'
32+
gem 'ruby-saml-mod', '0.1.0'
33+
gem 'rubyzip', '0.9.4', :require => 'zip/zip'
34+
gem 'rufus-scheduler','2.0.6'
35+
gem 'sanitize', '1.2.1'
36+
gem 'uuid', '2.3.1'
37+
gem 'xml-simple', '1.0.12', :require => 'xmlsimple'
38+
gem 'will_paginate', '2.3.15'
39+
40+
group :test do
41+
gem 'sqlite3-ruby', '1.3.2'
42+
gem 'rspec', '1.3.0'
43+
gem 'rspec-rails', '1.3.2'
44+
gem 'webrat', '0.7.2'
45+
gem 'rcov', '0.9.9'
46+
gem 'yard', '0.6.3'
47+
gem 'selenium-client', '1.2.18'
48+
end
49+
50+
group :development do
51+
gem 'ruby-debug', '0.10.4'
52+
end
53+
54+
# Non-standard Canvas extension to Bundler behavior -- load the Gemfiles from
55+
# plugins.
56+
Dir[File.join(File.dirname(__FILE__),'vendor/plugins/*/Gemfile')].each do |g|
57+
eval(File.read(g))
58+
end

0 commit comments

Comments
 (0)