Skip to content
This repository was archived by the owner on May 19, 2021. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ gem 'font-awesome-sass'
gem 'haml-rails', '~> 2.0', '>= 2.0.1'
gem 'hirb'
gem 'jquery-rails'
gem 'rubocop-rails', '~> 2.2', '>= 2.2.1'
gem 'toastr-rails', '~> 1.0', '>= 1.0.3'
gem "mustache", "~> 1.0"

group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
Expand Down
24 changes: 24 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ GEM
archive-zip (0.12.0)
io-like (~> 0.3.0)
arel (9.0.0)
ast (2.4.0)
autoprefixer-rails (9.6.1)
execjs
babel-source (5.8.35)
Expand Down Expand Up @@ -142,6 +143,7 @@ GEM
railties (>= 4.2, < 5.3)
responders
io-like (0.3.0)
jaro_winkler (1.5.3)
jbuilder (2.9.1)
activesupport (>= 4.2.0)
jquery-rails (4.3.5)
Expand Down Expand Up @@ -177,10 +179,14 @@ GEM
mini_portile2 (2.4.0)
minitest (5.11.3)
msgpack (1.3.0)
mustache (1.1.0)
nio4r (2.4.0)
nokogiri (1.10.3)
mini_portile2 (~> 2.4.0)
orm_adapter (0.5.0)
parallel (1.17.0)
parser (2.6.3.0)
ast (~> 2.4.0)
popper_js (1.14.5)
public_suffix (3.1.1)
puma (3.12.1)
Expand Down Expand Up @@ -211,6 +217,7 @@ GEM
method_source
rake (>= 0.8.7)
thor (>= 0.19.0, < 2.0)
rainbow (3.0.0)
rake (12.3.2)
ransack (2.1.1)
actionpack (>= 5.0)
Expand All @@ -224,6 +231,17 @@ GEM
responders (3.0.0)
actionpack (>= 5.0)
railties (>= 5.0)
rubocop (0.73.0)
jaro_winkler (~> 1.5.1)
parallel (~> 1.10)
parser (>= 2.6)
rainbow (>= 2.2.2, < 4.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 1.7)
rubocop-rails (2.2.1)
rack (>= 1.1)
rubocop (>= 0.72.0)
ruby-progressbar (1.10.1)
ruby_dep (1.5.0)
ruby_parser (3.13.1)
sexp_processor (~> 4.9)
Expand Down Expand Up @@ -272,13 +290,16 @@ GEM
thor (0.20.3)
thread_safe (0.3.6)
tilt (2.0.9)
toastr-rails (1.0.3)
railties (>= 3.1.0)
turbolinks (5.2.0)
turbolinks-source (~> 5.2)
turbolinks-source (5.2.0)
tzinfo (1.2.5)
thread_safe (~> 0.1)
uglifier (4.1.20)
execjs (>= 0.3.0, < 3)
unicode-display_width (1.6.0)
warden (1.2.8)
rack (>= 2.0.6)
web-console (3.7.0)
Expand Down Expand Up @@ -310,13 +331,16 @@ DEPENDENCIES
jbuilder (~> 2.5)
jquery-rails
listen (>= 3.0.5, < 3.2)
mustache (~> 1.0)
puma (~> 3.11)
rails (~> 5.2.3)
rubocop-rails (~> 2.2, >= 2.2.1)
sass-rails (~> 5.0)
selenium-webdriver
spring
spring-watcher-listen (~> 2.0.0)
sqlite3
toastr-rails (~> 1.0, >= 1.0.3)
turbolinks (~> 5)
tzinfo-data
uglifier (>= 1.3.0)
Expand Down
9 changes: 5 additions & 4 deletions app/assets/javascripts/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@
//= require rails-ujs
//= require activestorage
//= require turbolinks
//= require_tree .
//= require jquery
function ajaxcall(tasklist_id,id){
$.ajax({url: location.origin+"/updatecheck/"+tasklist_id+"/"+id,success: function(result){console.log(result);}})
}
//= require popper
//= require bootstrap
//= require custom.js
//= require toastr
//= require mustache/mustache.js
Loading