forked from instructure/canvas-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
closes #6988138
- Loading branch information
0 parents
commit 8b8173d
Showing
3,385 changed files
with
363,717 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
.rvmrc | ||
.rdebug_hist | ||
.DS_Store | ||
Gemfile.lock | ||
log/*.log | ||
log/*.pid | ||
log/**/* | ||
lib/tasks/deploy.rake | ||
tmp/**/* | ||
tmp/* | ||
db/*.sqlite3 | ||
db/*.sqlite3-journal | ||
db/*.sqlite | ||
config/amazon_s3.yml | ||
config/cutycapt.yml | ||
config/collaborations.yml | ||
config/database.yml | ||
config/delayed_jobs.yml | ||
config/domain.txt | ||
config/domain.yml | ||
config/etherpad.yml | ||
config/facebooker.yml | ||
config/file_store.yml | ||
config/google_docs.yml | ||
config/kaltura.yml | ||
config/linked_in.yml | ||
config/mysql.database.yml | ||
config/memcache.yml | ||
config/outgoing_mail.yml | ||
config/saml.yml | ||
config/scribd.yml | ||
config/security.yml | ||
config/tinychat.yml | ||
config/twitter.yml | ||
config/web_conferences.yml | ||
config/zendesk.yml | ||
config/environments/*-local.rb | ||
models.dot | ||
db/*sql | ||
db/development_structure.sql | ||
db/schema.rb | ||
noodle* | ||
tmp_* | ||
public/files/**/* | ||
public/javascripts/cached/* | ||
public/stylesheets/compiled/* | ||
public/stylesheets/compiled/**/* | ||
public/stylesheets/cached/* | ||
*.pid | ||
vendor/cache/*mswin*.gem | ||
vendor/cache | ||
coverage | ||
instructure_content | ||
.idea/* | ||
exports/* | ||
.sass-cache | ||
.bundle | ||
vendor/cache/*mswin*.gem | ||
public/*.gz | ||
public/*/*.gz | ||
public/*/*/*.gz | ||
public/*/*/*/*.gz | ||
public/*/*/*/*/*.gz | ||
public/*/*/*/*/*/*.gz | ||
public/*/*/*/*/*/*/*.gz | ||
public/*/*/*/*/*/*/*/*.gz | ||
public/*/*/*/*/*/*/*/*/*.gz | ||
*.swp | ||
public/assets/* | ||
doc/api/* | ||
doc/plugins/* | ||
.yardoc/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Canvas is Copyright (C) 2011 Instructure, Inc. | ||
|
||
Canvas is free software: you can redistribute it and/or modify it under | ||
the terms of the GNU Affero General Public License as published by the Free | ||
Software Foundation, version 3 of the License. | ||
|
||
Canvas is distributed in the hope that it will be useful, but WITHOUT ANY | ||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR | ||
A PARTICULAR PURPOSE. See the GNU Affero General Public License for more | ||
details. | ||
|
||
You should have received a copy of the GNU Affero General Public License along | ||
with this program. If not, see <http://www.gnu.org/licenses/>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
source :gemcutter | ||
source 'http://gems.github.com' | ||
|
||
gem 'rails', '2.3.9' | ||
gem 'authlogic', '2.1.3' | ||
gem 'aws-s3', '0.6.2', :require => 'aws/s3' | ||
gem 'builder', '2.1.2' | ||
gem 'compass', '0.10.5' | ||
gem 'daemons', '1.1.0' | ||
gem 'diff-lcs', '1.1.2', :require => 'diff/lcs' | ||
gem 'erubis', '2.6.6' | ||
gem 'facebooker', '1.0.75' | ||
gem 'hashery', '1.3.0', :require => 'hashery/dictionary' | ||
gem 'highline', '1.6.1' | ||
gem 'fastercsv', '1.5.3' | ||
gem 'haml', '3.0.22' | ||
gem 'hpricot', '0.8.2' | ||
gem 'jammit', '0.6.0' | ||
# native xml parsing, diigo | ||
gem 'libxml-ruby', '1.1.3', :require => 'xml/libxml' | ||
gem 'icalendar', '1.1.5' | ||
gem 'mime-types', '1.16', :require => 'mime/types' | ||
# attachment_fu (even the current technoweenie one on github) does not work | ||
# with mini_magick 3.1 | ||
gem 'mini_magick', '1.3.2' | ||
gem 'mysql', '2.8.1' | ||
gem 'nokogiri', '1.4.1' | ||
gem 'oauth', '0.3.4' # 0.3.6 breaks our integration with google docs | ||
gem 'ratom', '0.6.7', :require => "atom" | ||
gem 'rscribd', '1.2.0' | ||
gem 'ruby-net-ldap', '0.0.4', :require => 'net/ldap' | ||
gem 'ruby-saml-mod', '0.1.0' | ||
gem 'rubyzip', '0.9.4', :require => 'zip/zip' | ||
gem 'rufus-scheduler','2.0.6' | ||
gem 'sanitize', '1.2.1' | ||
gem 'uuid', '2.3.1' | ||
gem 'xml-simple', '1.0.12', :require => 'xmlsimple' | ||
gem 'will_paginate', '2.3.15' | ||
|
||
group :test do | ||
gem 'sqlite3-ruby', '1.3.2' | ||
gem 'rspec', '1.3.0' | ||
gem 'rspec-rails', '1.3.2' | ||
gem 'webrat', '0.7.2' | ||
gem 'rcov', '0.9.9' | ||
gem 'yard', '0.6.3' | ||
gem 'selenium-client', '1.2.18' | ||
end | ||
|
||
group :development do | ||
gem 'ruby-debug', '0.10.4' | ||
end | ||
|
||
# Non-standard Canvas extension to Bundler behavior -- load the Gemfiles from | ||
# plugins. | ||
Dir[File.join(File.dirname(__FILE__),'vendor/plugins/*/Gemfile')].each do |g| | ||
eval(File.read(g)) | ||
end |
Oops, something went wrong.