Show More
Commit Description:
force log out when password change
Commit Description:
force log out when password change
References:
File last commit:
Show/Diff file:
Action:
Gemfile | 116 lines | 2.9 KiB | text/x-ruby | RubyLexer |
Jittat Fakcharoenphol
boots into rails 3
r318 source 'https://rubygems.org'
upgrade to rails 5.2
r750 git_source(:github) { |repo| "https://github.com/#{repo}.git" }
Jittat Fakcharoenphol
boots into rails 3
r318
more login test...
r627 #rails
upgrade to rails 5.2
r750 gem 'rails', '~>5.2'
start upgrading to rails 4.0.x
r616 gem 'activerecord-session_store'
upgrade to rails 5.2
r750 gem 'puma'
Jittat Fakcharoenphol
boots into rails 3
r318
upgrade to rails 5.2
r750 # Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
use jquery by default
r554
Jittat Fakcharoenphol
boots into rails 3
r318 # Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
more login test...
r627 #---------------- database ---------------------
#the database
upgrade to rails 4.2
r620 gem 'mysql2'
more login test...
r627 #for testing
fix compiler message...
r621 gem 'sqlite3'
change depricated before_filter to before_action
r745 gem 'rails-controller-testing'
more login test...
r627 #for dumping database into yaml
gem 'yaml_db'
Jittat Fakcharoenphol
boots into rails 3
r318
upgrade to rails 5.2
r750
#------------- assset pipeline -----------------
Jittat Fakcharoenphol
boots into rails 3
r318 # Gems used only for assets and not required
# in production environments by default.
upgrade to rails 5.2
r750 #sass-rails is depricated
#gem 'sass-rails'
gem 'sassc-rails'
start testing...
r622 gem 'coffee-rails'
Jittat Fakcharoenphol
boots into rails 3
r318
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
start testing...
r622 gem 'uglifier'
more login test...
r627 gem 'haml'
gem 'haml-rails'
Jittat Fakcharoenphol
boots into rails 3
r318
upgrade to rails 5.2
r750 # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
#gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
Jittat Fakcharoenphol
boots into rails 3
r318
(in progress) add date range
r412
add best_in_place...
r474 #in-place editor
gem 'best_in_place', '~> 3.0.1'
add table sorter and combine user_stat and user_stat_max action into one view
r430 # jquery addition
(in progress) add date range
r412 gem 'jquery-rails'
fix compiler message...
r621 gem 'jquery-ui-rails'
submission report
r790 #gem 'jquery-timepicker-addon-rails'
add table sorter and combine user_stat and user_stat_max action into one view
r430 gem 'jquery-tablesorter'
- countdown timer
r572 gem 'jquery-countdown-rails'
(in progress) add date range
r412
add syntax highlighter for submission view using Rouge gem
r420 #syntax highlighter
gem 'rouge'
Jittat Fakcharoenphol
boots into rails 3
r318
add datatable...
r691 #bootstrap add-ons
add rvm version & gemset file,...
r740 gem 'bootstrap-sass', '~> 3.4.1'
## Bootstrapify...
r555 gem 'bootstrap-switch-rails'
wip: bootstrap toggle switch...
r556 gem 'bootstrap-toggle-rails'
new branch for bootstrap
r551 gem 'autoprefixer-rails'
submission report
r790 gem 'momentjs-rails', '>= 2.9.0'
- add problem toggle test js reponse (it was forgotten)...
r570 gem 'rails_bootstrap_sortable'
submission report
r790 #gem 'bootstrap-datepicker-rails'
gem 'bootstrap3-datetimepicker-rails', '~> 4.17.47'
move datatable to yarn
r789 #gem 'jquery-datatables-rails'
- add problem toggle test js reponse (it was forgotten)...
r570
more login test...
r627 #----------- user interface -----------------
start update to 5.2
r751 gem 'simple_form'
more login test...
r627 #select 2
gem 'select2-rails'
- add problem toggle test js reponse (it was forgotten)...
r570 #ace editor
live editor using cloud9 ace for problem
r564 gem 'ace-rails-ap'
more login test...
r627 #paginator
submission report
r790 #gem 'will_paginate', '~> 3.0.7'
live editor using cloud9 ace for problem
r564
Waitaya Krongapiradee
Updated gems, switched from git:// to https:// and cleaned up Gemfile quotation marks
r374 gem 'mail'
gem 'rdiscount'
Jittat Fakcharoenphol
renamed model Configuration to GraderConfiguration, renamed rhtml views to erb, fixed other small errors
r320 gem 'dynamic_form'
Jittat Fakcharoenphol
moved in_place_editing from plug-in to gem
r325 gem 'in_place_editing'
upgrade to rails 5.2
r750 #gem 'verification', :git => 'https://github.com/sikachu/verification.git'
Jittat Fakcharoenphol
added verify plug-in, fixed form_for, form_tag in views, changed named_scope to scope
r319
more login test...
r627
#---------------- testiing -----------------------
gem 'minitest-reporters'
add fuzzy string matching gem for similarity check
r648
#---------------- for console --------------------
gem 'fuzzy-string-match'
upgrade to rails 5.2
r750
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
# Easy installation and use of chromedriver to run system tests with Chrome
#gem 'chromedriver-helper'
gem 'webdriver'
end