Show More
Commit Description:
start moving to importmap
Commit Description:
start moving to importmap
References:
File last commit:
Show/Diff file:
Action:
Gemfile
| 123 lines
| 3.1 KiB
| text/x-ruby
| RubyLexer
|
|
r318 | source 'https://rubygems.org' | ||
r750 | git_source(:github) { |repo| "https://github.com/#{repo}.git" } | |||
|
r318 | |||
r863 | ruby '3.1.2' | |||
r820 | ||||
r627 | #rails | |||
r820 | gem 'rails', '~>7.0' | |||
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails] | ||||
gem "sprockets-rails" | ||||
r616 | gem 'activerecord-session_store' | |||
r750 | gem 'puma' | |||
|
r318 | |||
r750 | # Reduces boot times through caching; required in config/boot.rb | |||
r820 | gem 'bootsnap', require: false | |||
r554 | ||||
|
r318 | # Bundle edge Rails instead: | ||
# gem 'rails', :git => 'git://github.com/rails/rails.git' | ||||
r627 | #---------------- database --------------------- | |||
#the database | ||||
r620 | gem 'mysql2' | |||
r627 | #for testing | |||
r621 | gem 'sqlite3' | |||
r745 | gem 'rails-controller-testing' | |||
r627 | #for dumping database into yaml | |||
gem 'yaml_db' | ||||
|
r318 | |||
r750 | ||||
#------------- assset pipeline ----------------- | ||||
|
r318 | # Gems used only for assets and not required | ||
# in production environments by default. | ||||
r750 | #sass-rails is depricated | |||
#gem 'sass-rails' | ||||
gem 'sassc-rails' | ||||
r622 | gem 'coffee-rails' | |||
|
r318 | |||
# See https://github.com/sstephenson/execjs#readme for more supported runtimes | ||||
# gem 'therubyracer', :platforms => :ruby | ||||
r622 | gem 'uglifier' | |||
r627 | gem 'haml' | |||
gem 'haml-rails' | ||||
|
r318 | |||
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 | ||||
r820 | gem 'jbuilder' | |||
|
r318 | |||
r412 | ||||
r474 | #in-place editor | |||
r820 | gem 'best_in_place', git: "https://github.com/mmotherwell/best_in_place" | |||
r474 | ||||
r430 | # jquery addition | |||
r412 | gem 'jquery-rails' | |||
r621 | gem 'jquery-ui-rails' | |||
r790 | #gem 'jquery-timepicker-addon-rails' | |||
r430 | gem 'jquery-tablesorter' | |||
r572 | gem 'jquery-countdown-rails' | |||
r412 | ||||
r420 | #syntax highlighter | |||
gem 'rouge' | ||||
|
r318 | |||
r691 | #bootstrap add-ons | |||
r740 | gem 'bootstrap-sass', '~> 3.4.1' | |||
r555 | gem 'bootstrap-switch-rails' | |||
r556 | gem 'bootstrap-toggle-rails' | |||
r551 | gem 'autoprefixer-rails' | |||
r790 | gem 'momentjs-rails', '>= 2.9.0' | |||
r570 | gem 'rails_bootstrap_sortable' | |||
r790 | #gem 'bootstrap-datepicker-rails' | |||
gem 'bootstrap3-datetimepicker-rails', '~> 4.17.47' | ||||
r789 | #gem 'jquery-datatables-rails' | |||
r570 | ||||
r627 | #----------- user interface ----------------- | |||
r751 | gem 'simple_form' | |||
r627 | #select 2 | |||
gem 'select2-rails' | ||||
r570 | #ace editor | |||
r564 | gem 'ace-rails-ap' | |||
r627 | #paginator | |||
r790 | #gem 'will_paginate', '~> 3.0.7' | |||
r564 | ||||
|
r374 | gem 'mail' | ||
gem 'rdiscount' | ||||
|
r320 | gem 'dynamic_form' | ||
|
r325 | gem 'in_place_editing' | ||
r750 | #gem 'verification', :git => 'https://github.com/sikachu/verification.git' | |||
|
r319 | |||
r627 | ||||
#---------------- testiing ----------------------- | ||||
gem 'minitest-reporters' | ||||
r648 | ||||
#---------------- for console -------------------- | ||||
gem 'fuzzy-string-match' | ||||
r750 | ||||
group :development, :test do | ||||
# Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||||
r820 | gem 'debug', platforms: [:mri, :mingw, :x64_mingw] | |||
r750 | 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' | ||||
r820 | ||||
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler] | ||||
# gem "rack-mini-profiler" | ||||
r750 | end | |||
group :test do | ||||
# Adds support for Capybara system testing and selenium driver | ||||
r820 | gem 'capybara' | |||
r750 | gem 'selenium-webdriver' | |||
r820 | gem 'webdrivers' | |||
r750 | end | |||