-
- Downloads
Merge branch 'develop'
* develop: (540 commits) Dummy change to pick up new feedbackjs Fix issues with pdf rendering and admin index. Fix issue with edit button in admin page not working. Fix issue with edit icons. Small updates Build feedback.js in Dockerfile Update project depedencies Resolve "The feedback widget is very slow" Fix DB. Fix test issues. Feature/remove coffeescript Move coffeescript to ES6; add webpack Tweak url Add button for filemanager. resolves #231 $CI_COMMIT_REF_SLUG -> $CI_COMMIT_REF_NAME Add production deploy to CI Add user to logging. Resolve "Filesystem restructure after git removal" fix test script Fix typo. ... # Conflicts: # .gitlab-ci.yml
Showing
- .codeclimate.yml 57 additions, 0 deletions.codeclimate.yml
- .csslintrc 2 additions, 0 deletions.csslintrc
- .dockerignore 20 additions, 0 deletions.dockerignore
- .eslintignore 6 additions, 0 deletions.eslintignore
- .eslintrc.js 18 additions, 0 deletions.eslintrc.js
- .gitignore 26 additions, 0 deletions.gitignore
- .gitlab-ci.yml 83 additions, 8 deletions.gitlab-ci.yml
- .gitmodules 12 additions, 0 deletions.gitmodules
- .jshintignore 5 additions, 0 deletions.jshintignore
- .jshintrc 62 additions, 0 deletions.jshintrc
- .rspec 2 additions, 0 deletions.rspec
- .rubocop.yml 33 additions, 0 deletions.rubocop.yml
- Dockerfile 92 additions, 0 deletionsDockerfile
- Gemfile 109 additions, 0 deletionsGemfile
- Gemfile.lock 423 additions, 0 deletionsGemfile.lock
- Procfile 2 additions, 0 deletionsProcfile
- README.md 66 additions, 0 deletionsREADME.md
- Rakefile 6 additions, 0 deletionsRakefile
- app/.codeclimate.yml 42 additions, 0 deletionsapp/.codeclimate.yml
- app/.csslintrc 3 additions, 0 deletionsapp/.csslintrc
.codeclimate.yml
0 → 100644
.csslintrc
0 → 100644
.dockerignore
0 → 100644
.eslintignore
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.gitmodules
0 → 100644
.jshintignore
0 → 100644
.jshintrc
0 → 100644
.rspec
0 → 100644
.rubocop.yml
0 → 100644
Dockerfile
0 → 100644
Gemfile
0 → 100644
# frozen_string_literal: true | |||
source 'https://rubygems.org' | |||
ruby '2.5.1' | |||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |||
gem 'rails', '~> 5.1.4' | |||
# gem 'sprockets', '3.6.3' # https://github.com/rails/sass-rails/issues/381 | |||
# gem 'sprockets', '~> 3.7' | |||
gem 'sprockets','~> 4.0.0.beta8' | |||
gem 'webpacker', '~> 4.x' | |||
# Use SCSS for stylesheets | |||
gem 'sass-rails', '~> 5.0' | |||
# Use less for stackedit stylesheets | |||
gem 'less-rails' | |||
gem 'therubyracer' | |||
# Use Uglifier as compressor for JavaScript assets | |||
gem 'uglifier', '>= 1.3.0' | |||
# Use CoffeeScript for .coffee assets and views | |||
gem 'coffee-rails', '~> 4.2.2' | |||
gem 'listen', '= 3.1.1' | |||
gem 'bower-rails' | |||
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks | |||
# it also causes mysterious problems with MathJax | |||
# gem 'turbolinks' | |||
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | |||
gem 'jbuilder', '~> 2.0' | |||
# bundle exec rake doc:rails generates the API under doc/api. | |||
gem 'sdoc', '~> 0.4.0', group: :doc | |||
group :development do | |||
# Access an IRB console on exception pages or by using <%= console %> in views | |||
gem 'web-console', '~> 3.5.1' | |||
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | |||
gem 'spring' | |||
end | |||
gem 'activemodel', '~> 5.1.4' | |||
gem 'activerecord', '~> 5.1.4' | |||
gem 'sqlite3', '~> 1.3.0' | |||
gem 'dtu-core', path: 'deps/dtu-core' | |||
gem 'quiz', path: 'deps/dtu-quiz-parser' | |||
gem 'awesome_print', '~> 1.6', '>= 1.6.1' | |||
# Web Stack | |||
gem 'foreman', '~> 0.84.0' | |||
gem 'rack-rewrite', '~> 1.5.1' | |||
gem 'thin', '~> 1.7.2' | |||
group :development, :test do | |||
gem 'capybara' | |||
gem 'guard-rspec' | |||
gem 'pry' | |||
gem 'rails-controller-testing' | |||
gem 'rspec-core' | |||
gem 'rspec-html-matchers' | |||
gem 'rspec-rails', '~> 3.0' | |||
gem 'rubocop', require: false | |||
end | |||
group :test do | |||
gem 'database_cleaner' | |||
#gem 'fakefs', git: '/Users/iain/Projects/enote/dtu-enote-installer/src/fakefs', branch: 'fix', require: 'fakefs/safe' | |||
#gem 'fakefs', '~> 0.2', require: 'fakefs/safe' | |||
gem 'fakefs', git: 'https://github.com/iainbryson/fakefs', branch: 'fix', require: 'fakefs/safe' | |||
gem 'fakeredis', '~> 0.7', require: 'fakeredis/rspec' | |||
end | |||
gem 'rubycas-client', '~> 2.3.8', git: 'https://github.com/rubycas/rubycas-client' | |||
gem 'nokogiri', '~> 1.8.5' | |||
# redis | |||
gem 'redis', '~> 3.2' | |||
gem 'redis-namespace' | |||
gem 'redis-rack-cache' | |||
gem 'redis-rails' | |||
# git for file manager | |||
gem 'git', '>= 1.2.2' | |||
gem 'responders', '~> 2.0' | |||
gem 'font-awesome-rails', '~> 4.7.0.3' | |||
gem 'lograge', '~> 0.4' | |||
gem 'logstash-event' | |||
gem 'datagrid', '~> 1.5' | |||
gem 'kaminari' | |||
gem 'addressable' | |||
gem 'rest-client', '~> 2.0' | |||
# Added at 2018-04-23 09:29:09 -0700 by iainbryson: | |||
gem 'micro_magick', '~> 1.1' | |||
# Added at 2018-06-09 09:16:14 +0200 by iainbryson: | |||
gem 'i18n', '~> 0.9.5' |
Gemfile.lock
0 → 100644
Procfile
0 → 100644
README.md
0 → 100644
Rakefile
0 → 100644
app/.codeclimate.yml
0 → 100644
app/.csslintrc
0 → 100644
Please register or sign in to comment