Initial
1
.browserslistrc
Normal file
@ -0,0 +1 @@
|
||||
defaults
|
45
.gitignore
vendored
Normal file
@ -0,0 +1,45 @@
|
||||
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
||||
#
|
||||
# If you find yourself ignoring temporary files generated by your text editor
|
||||
# or operating system, you probably want to add a global ignore instead:
|
||||
# git config --global core.excludesfile '~/.gitignore_global'
|
||||
|
||||
/.DS_Store
|
||||
.DS_Store
|
||||
|
||||
# Ignore bundler config.
|
||||
/.bundle
|
||||
|
||||
# Ignore the default SQLite database.
|
||||
/db/*.sqlite3
|
||||
/db/*.sqlite3-journal
|
||||
|
||||
# Ignore all logfiles and tempfiles.
|
||||
/log/*
|
||||
/tmp/*
|
||||
!/log/.keep
|
||||
!/tmp/.keep
|
||||
|
||||
# Ignore uploaded files in development.
|
||||
/storage/*
|
||||
!/storage/.keep
|
||||
|
||||
/public/assets
|
||||
.byebug_history
|
||||
|
||||
# Ignore master key for decrypting credentials and more.
|
||||
/config/master.key
|
||||
|
||||
/public/packs
|
||||
/public/packs-test
|
||||
/node_modules
|
||||
/yarn-error.log
|
||||
yarn-debug.log*
|
||||
.yarn-integrity
|
||||
|
||||
/private_medias/*
|
||||
/public/public_medias/*
|
||||
/pdf/*
|
||||
|
||||
/.sass_cache/*
|
||||
|
1
.ruby-version
Normal file
@ -0,0 +1 @@
|
||||
ruby-2.6.0
|
41
Capfile
Normal file
@ -0,0 +1,41 @@
|
||||
# Load DSL and set up stages
|
||||
require "capistrano/setup"
|
||||
|
||||
# Include default deployment tasks
|
||||
require "capistrano/deploy"
|
||||
|
||||
# Load the SCM plugin appropriate to your project:
|
||||
#
|
||||
# require "capistrano/scm/hg"
|
||||
# install_plugin Capistrano::SCM::Hg
|
||||
# or
|
||||
# require "capistrano/scm/svn"
|
||||
# install_plugin Capistrano::SCM::Svn
|
||||
# or
|
||||
require "capistrano/scm/git"
|
||||
install_plugin Capistrano::SCM::Git
|
||||
|
||||
# Include tasks from other gems included in your Gemfile
|
||||
#
|
||||
# For documentation on these, see for example:
|
||||
#
|
||||
# https://github.com/capistrano/rvm
|
||||
# https://github.com/capistrano/rbenv
|
||||
# https://github.com/capistrano/chruby
|
||||
# https://github.com/capistrano/bundler
|
||||
# https://github.com/capistrano/rails
|
||||
# https://github.com/capistrano/passenger
|
||||
#
|
||||
require "capistrano/rvm"
|
||||
# require "capistrano/rbenv"
|
||||
# require "capistrano/chruby"
|
||||
require "capistrano/rails/assets"
|
||||
#require 'capistrano/nginx'
|
||||
require "capistrano/bundler"
|
||||
require "capistrano/rails/migrations"
|
||||
# require "capistrano/passenger"
|
||||
|
||||
|
||||
|
||||
# Load custom tasks from `lib/capistrano/tasks` if you have any defined
|
||||
Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r }
|
112
Gemfile
Normal file
@ -0,0 +1,112 @@
|
||||
source 'https://rubygems.org'
|
||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||
|
||||
ruby '2.6.0'
|
||||
|
||||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
||||
gem 'rails', '6.0.3'
|
||||
# Use sqlite3 as the database for Active Record
|
||||
gem 'mysql2'
|
||||
# Use Puma as the app server
|
||||
|
||||
# Use SCSS for stylesheets
|
||||
gem 'sass-rails', '~> 5'
|
||||
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
|
||||
#gem 'webpacker', '~> 4.0'
|
||||
gem 'jquery-rails'
|
||||
#gem 'sprockets', '~> 4.0'
|
||||
|
||||
# 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'
|
||||
# Use Redis adapter to run Action Cable in production
|
||||
# gem 'redis', '~> 4.0'
|
||||
# Use Active Model has_secure_password
|
||||
gem 'bcrypt', '~> 3.1.7'
|
||||
|
||||
gem 'coffee-rails'
|
||||
|
||||
# Use Active Storage variant
|
||||
# gem 'image_processing', '~> 1.2'
|
||||
|
||||
# Reduces boot times through caching; required in config/boot.rb
|
||||
gem 'bootsnap', '>= 1.4.2', require: false
|
||||
|
||||
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 :production do
|
||||
gem 'unicorn'
|
||||
end
|
||||
|
||||
group :development do
|
||||
|
||||
gem 'puma', '~> 3.11'
|
||||
# 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 web drivers to run system tests with browsers
|
||||
gem 'webdrivers'
|
||||
end
|
||||
|
||||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
||||
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
||||
|
||||
gem 'carrierwave'
|
||||
gem 'rmagick', :require => 'RMagick'
|
||||
|
||||
gem 'acts_as_tree'
|
||||
gem 'formtastic', "2.3.0"
|
||||
gem "twitter-bootstrap-rails"
|
||||
gem 'formtastic-bootstrap'
|
||||
gem 'acts_as_commentable'
|
||||
gem 'gravatar_image_tag'
|
||||
gem 'kaminari-bootstrap'
|
||||
gem 'fastimage'
|
||||
#gem 'ogone-rails'
|
||||
gem "geocoder"
|
||||
gem "iban-tools"
|
||||
gem "nokogiri"
|
||||
gem 'searchkick'
|
||||
|
||||
|
||||
gem 'truncate_html'
|
||||
gem "posix-spawn"
|
||||
gem "country_select"
|
||||
gem 'haml-rails'
|
||||
gem 'rails_autolink'
|
||||
|
||||
|
||||
group :development do
|
||||
gem "capistrano", "~> 3.10", require: false
|
||||
gem 'capistrano-rails', '~> 1.1', require: false
|
||||
gem 'capistrano-bundler', '~> 1.1', require: false
|
||||
gem "capistrano-rvm", group: :development
|
||||
gem 'capistrano3-nginx', '~> 2.0', group: :development
|
||||
|
||||
end
|
||||
|
||||
gem 'zip-zip'
|
||||
|
||||
gem "tiny_tds", "1.3.0"
|
||||
|
||||
gem 'axlsx', '3.0.0.pre'
|
||||
gem 'axlsx_rails'
|
||||
|
||||
gem 'iban-tools'
|
||||
|
||||
gem "mailjet"
|
431
Gemfile.lock
Normal file
@ -0,0 +1,431 @@
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
actioncable (6.0.3)
|
||||
actionpack (= 6.0.3)
|
||||
nio4r (~> 2.0)
|
||||
websocket-driver (>= 0.6.1)
|
||||
actionmailbox (6.0.3)
|
||||
actionpack (= 6.0.3)
|
||||
activejob (= 6.0.3)
|
||||
activerecord (= 6.0.3)
|
||||
activestorage (= 6.0.3)
|
||||
activesupport (= 6.0.3)
|
||||
mail (>= 2.7.1)
|
||||
actionmailer (6.0.3)
|
||||
actionpack (= 6.0.3)
|
||||
actionview (= 6.0.3)
|
||||
activejob (= 6.0.3)
|
||||
mail (~> 2.5, >= 2.5.4)
|
||||
rails-dom-testing (~> 2.0)
|
||||
actionpack (6.0.3)
|
||||
actionview (= 6.0.3)
|
||||
activesupport (= 6.0.3)
|
||||
rack (~> 2.0, >= 2.0.8)
|
||||
rack-test (>= 0.6.3)
|
||||
rails-dom-testing (~> 2.0)
|
||||
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
||||
actiontext (6.0.3)
|
||||
actionpack (= 6.0.3)
|
||||
activerecord (= 6.0.3)
|
||||
activestorage (= 6.0.3)
|
||||
activesupport (= 6.0.3)
|
||||
nokogiri (>= 1.8.5)
|
||||
actionview (6.0.3)
|
||||
activesupport (= 6.0.3)
|
||||
builder (~> 3.1)
|
||||
erubi (~> 1.4)
|
||||
rails-dom-testing (~> 2.0)
|
||||
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
||||
activejob (6.0.3)
|
||||
activesupport (= 6.0.3)
|
||||
globalid (>= 0.3.6)
|
||||
activemodel (6.0.3)
|
||||
activesupport (= 6.0.3)
|
||||
activerecord (6.0.3)
|
||||
activemodel (= 6.0.3)
|
||||
activesupport (= 6.0.3)
|
||||
activestorage (6.0.3)
|
||||
actionpack (= 6.0.3)
|
||||
activejob (= 6.0.3)
|
||||
activerecord (= 6.0.3)
|
||||
marcel (~> 0.3.1)
|
||||
activesupport (6.0.3)
|
||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||
i18n (>= 0.7, < 2)
|
||||
minitest (~> 5.1)
|
||||
tzinfo (~> 1.1)
|
||||
zeitwerk (~> 2.2, >= 2.2.2)
|
||||
acts_as_commentable (4.0.2)
|
||||
acts_as_tree (2.9.0)
|
||||
activerecord (>= 3.0.0)
|
||||
addressable (2.7.0)
|
||||
public_suffix (>= 2.0.2, < 5.0)
|
||||
airbrussh (1.3.3)
|
||||
sshkit (>= 1.6.1, != 1.7.0)
|
||||
axlsx (3.0.0.pre)
|
||||
htmlentities (~> 4.3, >= 4.3.4)
|
||||
mimemagic (~> 0.3)
|
||||
nokogiri (~> 1.8, >= 1.8.2)
|
||||
rubyzip (~> 1.2, >= 1.2.1)
|
||||
axlsx_rails (0.5.2)
|
||||
actionpack (>= 3.1)
|
||||
axlsx (>= 2.0.1)
|
||||
bcrypt (3.1.13)
|
||||
bindex (0.8.1)
|
||||
bootsnap (1.4.5)
|
||||
msgpack (~> 1.0)
|
||||
builder (3.2.4)
|
||||
byebug (11.0.1)
|
||||
capistrano (3.11.1)
|
||||
airbrussh (>= 1.0.0)
|
||||
i18n
|
||||
rake (>= 10.0.0)
|
||||
sshkit (>= 1.9.0)
|
||||
capistrano-bundler (1.6.0)
|
||||
capistrano (~> 3.1)
|
||||
capistrano-rails (1.4.0)
|
||||
capistrano (~> 3.1)
|
||||
capistrano-bundler (~> 1.1)
|
||||
capistrano-rvm (0.1.2)
|
||||
capistrano (~> 3.0)
|
||||
sshkit (~> 1.2)
|
||||
capistrano3-nginx (2.1.6)
|
||||
capistrano (>= 3.0.0)
|
||||
capybara (3.28.0)
|
||||
addressable
|
||||
mini_mime (>= 0.1.3)
|
||||
nokogiri (~> 1.8)
|
||||
rack (>= 1.6.0)
|
||||
rack-test (>= 0.6.3)
|
||||
regexp_parser (~> 1.5)
|
||||
xpath (~> 3.2)
|
||||
carrierwave (2.1.0)
|
||||
activemodel (>= 5.0.0)
|
||||
activesupport (>= 5.0.0)
|
||||
addressable (~> 2.6)
|
||||
image_processing (~> 1.1)
|
||||
mimemagic (>= 0.3.0)
|
||||
mini_mime (>= 0.1.3)
|
||||
childprocess (1.0.1)
|
||||
rake (< 13.0)
|
||||
coffee-rails (5.0.0)
|
||||
coffee-script (>= 2.2.0)
|
||||
railties (>= 5.2.0)
|
||||
coffee-script (2.4.1)
|
||||
coffee-script-source
|
||||
execjs
|
||||
coffee-script-source (1.12.2)
|
||||
commonjs (0.2.7)
|
||||
concurrent-ruby (1.1.6)
|
||||
countries (3.0.0)
|
||||
i18n_data (~> 0.8.0)
|
||||
sixarm_ruby_unaccent (~> 1.1)
|
||||
unicode_utils (~> 1.4)
|
||||
country_select (4.0.0)
|
||||
countries (~> 3.0)
|
||||
sort_alphabetical (~> 1.0)
|
||||
crass (1.0.6)
|
||||
domain_name (0.5.20190701)
|
||||
unf (>= 0.0.5, < 1.0.0)
|
||||
elasticsearch (7.3.0)
|
||||
elasticsearch-api (= 7.3.0)
|
||||
elasticsearch-transport (= 7.3.0)
|
||||
elasticsearch-api (7.3.0)
|
||||
multi_json
|
||||
elasticsearch-transport (7.3.0)
|
||||
faraday
|
||||
multi_json
|
||||
erubi (1.9.0)
|
||||
erubis (2.7.0)
|
||||
execjs (2.7.0)
|
||||
faraday (0.15.4)
|
||||
multipart-post (>= 1.2, < 3)
|
||||
fastimage (2.1.5)
|
||||
ffi (1.11.1)
|
||||
formtastic (2.3.0)
|
||||
actionpack (>= 3.0)
|
||||
formtastic-bootstrap (3.0.0)
|
||||
formtastic (>= 2.2)
|
||||
geocoder (1.5.1)
|
||||
globalid (0.4.2)
|
||||
activesupport (>= 4.2.0)
|
||||
gravatar_image_tag (1.2.0)
|
||||
haml (5.1.2)
|
||||
temple (>= 0.8.0)
|
||||
tilt
|
||||
haml-rails (2.0.1)
|
||||
actionpack (>= 5.1)
|
||||
activesupport (>= 5.1)
|
||||
haml (>= 4.0.6, < 6.0)
|
||||
html2haml (>= 1.0.1)
|
||||
railties (>= 5.1)
|
||||
hashie (3.6.0)
|
||||
html2haml (2.2.0)
|
||||
erubis (~> 2.7.0)
|
||||
haml (>= 4.0, < 6)
|
||||
nokogiri (>= 1.6.0)
|
||||
ruby_parser (~> 3.5)
|
||||
htmlentities (4.3.4)
|
||||
http-accept (1.7.0)
|
||||
http-cookie (1.0.3)
|
||||
domain_name (~> 0.5)
|
||||
i18n (1.8.2)
|
||||
concurrent-ruby (~> 1.0)
|
||||
i18n_data (0.8.0)
|
||||
iban-tools (1.1.0)
|
||||
image_processing (1.10.3)
|
||||
mini_magick (>= 4.9.5, < 5)
|
||||
ruby-vips (>= 2.0.17, < 3)
|
||||
jbuilder (2.9.1)
|
||||
activesupport (>= 4.2.0)
|
||||
jquery-rails (4.3.5)
|
||||
rails-dom-testing (>= 1, < 3)
|
||||
railties (>= 4.2.0)
|
||||
thor (>= 0.14, < 2.0)
|
||||
kaminari (1.1.1)
|
||||
activesupport (>= 4.1.0)
|
||||
kaminari-actionview (= 1.1.1)
|
||||
kaminari-activerecord (= 1.1.1)
|
||||
kaminari-core (= 1.1.1)
|
||||
kaminari-actionview (1.1.1)
|
||||
actionview
|
||||
kaminari-core (= 1.1.1)
|
||||
kaminari-activerecord (1.1.1)
|
||||
activerecord
|
||||
kaminari-core (= 1.1.1)
|
||||
kaminari-bootstrap (3.0.1)
|
||||
kaminari (>= 0.13.0)
|
||||
rails
|
||||
kaminari-core (1.1.1)
|
||||
kgio (2.11.2)
|
||||
less (2.6.0)
|
||||
commonjs (~> 0.2.7)
|
||||
less-rails (4.0.0)
|
||||
actionpack (>= 4)
|
||||
less (~> 2.6.0)
|
||||
sprockets (>= 2)
|
||||
listen (3.1.5)
|
||||
rb-fsevent (~> 0.9, >= 0.9.4)
|
||||
rb-inotify (~> 0.9, >= 0.9.7)
|
||||
ruby_dep (~> 1.2)
|
||||
loofah (2.5.0)
|
||||
crass (~> 1.0.2)
|
||||
nokogiri (>= 1.5.9)
|
||||
mail (2.7.1)
|
||||
mini_mime (>= 0.1.1)
|
||||
mailjet (1.5.4)
|
||||
activesupport (>= 3.1.0)
|
||||
rack (>= 1.4.0)
|
||||
rest-client
|
||||
marcel (0.3.3)
|
||||
mimemagic (~> 0.3.2)
|
||||
method_source (1.0.0)
|
||||
mime-types (3.3.1)
|
||||
mime-types-data (~> 3.2015)
|
||||
mime-types-data (3.2019.1009)
|
||||
mimemagic (0.3.5)
|
||||
mini_magick (4.10.1)
|
||||
mini_mime (1.0.2)
|
||||
mini_portile2 (2.4.0)
|
||||
minitest (5.14.1)
|
||||
msgpack (1.3.1)
|
||||
multi_json (1.13.1)
|
||||
multipart-post (2.1.1)
|
||||
mysql2 (0.5.2)
|
||||
net-scp (2.0.0)
|
||||
net-ssh (>= 2.6.5, < 6.0.0)
|
||||
net-ssh (5.2.0)
|
||||
netrc (0.11.0)
|
||||
nio4r (2.5.2)
|
||||
nokogiri (1.10.9)
|
||||
mini_portile2 (~> 2.4.0)
|
||||
posix-spawn (0.3.13)
|
||||
public_suffix (4.0.1)
|
||||
puma (3.12.1)
|
||||
rack (2.2.2)
|
||||
rack-test (1.1.0)
|
||||
rack (>= 1.0, < 3)
|
||||
rails (6.0.3)
|
||||
actioncable (= 6.0.3)
|
||||
actionmailbox (= 6.0.3)
|
||||
actionmailer (= 6.0.3)
|
||||
actionpack (= 6.0.3)
|
||||
actiontext (= 6.0.3)
|
||||
actionview (= 6.0.3)
|
||||
activejob (= 6.0.3)
|
||||
activemodel (= 6.0.3)
|
||||
activerecord (= 6.0.3)
|
||||
activestorage (= 6.0.3)
|
||||
activesupport (= 6.0.3)
|
||||
bundler (>= 1.3.0)
|
||||
railties (= 6.0.3)
|
||||
sprockets-rails (>= 2.0.0)
|
||||
rails-dom-testing (2.0.3)
|
||||
activesupport (>= 4.2.0)
|
||||
nokogiri (>= 1.6)
|
||||
rails-html-sanitizer (1.3.0)
|
||||
loofah (~> 2.3)
|
||||
rails_autolink (1.1.6)
|
||||
rails (> 3.1)
|
||||
railties (6.0.3)
|
||||
actionpack (= 6.0.3)
|
||||
activesupport (= 6.0.3)
|
||||
method_source
|
||||
rake (>= 0.8.7)
|
||||
thor (>= 0.20.3, < 2.0)
|
||||
raindrops (0.19.0)
|
||||
rake (12.3.3)
|
||||
rb-fsevent (0.10.3)
|
||||
rb-inotify (0.10.0)
|
||||
ffi (~> 1.0)
|
||||
regexp_parser (1.6.0)
|
||||
rest-client (2.1.0)
|
||||
http-accept (>= 1.7.0, < 2.0)
|
||||
http-cookie (>= 1.0.2, < 2.0)
|
||||
mime-types (>= 1.16, < 4.0)
|
||||
netrc (~> 0.8)
|
||||
rmagick (4.0.0)
|
||||
ruby-vips (2.0.17)
|
||||
ffi (~> 1.9)
|
||||
ruby_dep (1.5.0)
|
||||
ruby_parser (3.13.1)
|
||||
sexp_processor (~> 4.9)
|
||||
rubyzip (1.2.3)
|
||||
sass (3.7.4)
|
||||
sass-listen (~> 4.0.0)
|
||||
sass-listen (4.0.0)
|
||||
rb-fsevent (~> 0.9, >= 0.9.4)
|
||||
rb-inotify (~> 0.9, >= 0.9.7)
|
||||
sass-rails (5.1.0)
|
||||
railties (>= 5.2.0)
|
||||
sass (~> 3.1)
|
||||
sprockets (>= 2.8, < 4.0)
|
||||
sprockets-rails (>= 2.0, < 4.0)
|
||||
tilt (>= 1.1, < 3)
|
||||
searchkick (4.1.0)
|
||||
activemodel (>= 5)
|
||||
elasticsearch (>= 6)
|
||||
hashie
|
||||
selenium-webdriver (3.142.3)
|
||||
childprocess (>= 0.5, < 2.0)
|
||||
rubyzip (~> 1.2, >= 1.2.2)
|
||||
sexp_processor (4.12.1)
|
||||
sixarm_ruby_unaccent (1.2.0)
|
||||
sort_alphabetical (1.1.0)
|
||||
unicode_utils (>= 1.2.2)
|
||||
spring (2.1.0)
|
||||
spring-watcher-listen (2.0.1)
|
||||
listen (>= 2.7, < 4.0)
|
||||
spring (>= 1.2, < 3.0)
|
||||
sprockets (3.7.2)
|
||||
concurrent-ruby (~> 1.0)
|
||||
rack (> 1, < 3)
|
||||
sprockets-rails (3.2.1)
|
||||
actionpack (>= 4.0)
|
||||
activesupport (>= 4.0)
|
||||
sprockets (>= 3.0.0)
|
||||
sshkit (1.20.0)
|
||||
net-scp (>= 1.1.2)
|
||||
net-ssh (>= 2.8.0)
|
||||
temple (0.8.1)
|
||||
thor (1.0.1)
|
||||
thread_safe (0.3.6)
|
||||
tilt (2.0.9)
|
||||
tiny_tds (1.3.0)
|
||||
mini_portile2 (~> 2.0)
|
||||
truncate_html (0.9.3)
|
||||
turbolinks (5.2.0)
|
||||
turbolinks-source (~> 5.2)
|
||||
turbolinks-source (5.2.0)
|
||||
twitter-bootstrap-rails (3.2.2)
|
||||
actionpack (>= 3.1)
|
||||
execjs (>= 2.2.2, >= 2.2)
|
||||
less-rails (>= 2.5.0)
|
||||
railties (>= 3.1)
|
||||
tzinfo (1.2.7)
|
||||
thread_safe (~> 0.1)
|
||||
unf (0.1.4)
|
||||
unf_ext
|
||||
unf_ext (0.0.7.6)
|
||||
unicode_utils (1.4.0)
|
||||
unicorn (5.5.1)
|
||||
kgio (~> 2.6)
|
||||
raindrops (~> 0.7)
|
||||
web-console (4.0.1)
|
||||
actionview (>= 6.0.0)
|
||||
activemodel (>= 6.0.0)
|
||||
bindex (>= 0.4.0)
|
||||
railties (>= 6.0.0)
|
||||
webdrivers (4.1.2)
|
||||
nokogiri (~> 1.6)
|
||||
rubyzip (~> 1.0)
|
||||
selenium-webdriver (>= 3.0, < 4.0)
|
||||
websocket-driver (0.7.1)
|
||||
websocket-extensions (>= 0.1.0)
|
||||
websocket-extensions (0.1.4)
|
||||
xpath (3.2.0)
|
||||
nokogiri (~> 1.8)
|
||||
zeitwerk (2.3.0)
|
||||
zip-zip (0.3)
|
||||
rubyzip (>= 1.0.0)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
acts_as_commentable
|
||||
acts_as_tree
|
||||
axlsx (= 3.0.0.pre)
|
||||
axlsx_rails
|
||||
bcrypt (~> 3.1.7)
|
||||
bootsnap (>= 1.4.2)
|
||||
byebug
|
||||
capistrano (~> 3.10)
|
||||
capistrano-bundler (~> 1.1)
|
||||
capistrano-rails (~> 1.1)
|
||||
capistrano-rvm
|
||||
capistrano3-nginx (~> 2.0)
|
||||
capybara (>= 2.15)
|
||||
carrierwave
|
||||
coffee-rails
|
||||
country_select
|
||||
fastimage
|
||||
formtastic (= 2.3.0)
|
||||
formtastic-bootstrap
|
||||
geocoder
|
||||
gravatar_image_tag
|
||||
haml-rails
|
||||
iban-tools
|
||||
jbuilder (~> 2.5)
|
||||
jquery-rails
|
||||
kaminari-bootstrap
|
||||
listen (>= 3.0.5, < 3.2)
|
||||
mailjet
|
||||
mysql2
|
||||
nokogiri
|
||||
posix-spawn
|
||||
puma (~> 3.11)
|
||||
rails (= 6.0.3)
|
||||
rails_autolink
|
||||
rmagick
|
||||
sass-rails (~> 5)
|
||||
searchkick
|
||||
selenium-webdriver
|
||||
spring
|
||||
spring-watcher-listen (~> 2.0.0)
|
||||
tiny_tds (= 1.3.0)
|
||||
truncate_html
|
||||
turbolinks (~> 5)
|
||||
twitter-bootstrap-rails
|
||||
tzinfo-data
|
||||
unicorn
|
||||
web-console (>= 3.3.0)
|
||||
webdrivers
|
||||
zip-zip
|
||||
|
||||
RUBY VERSION
|
||||
ruby 2.6.0p0
|
||||
|
||||
BUNDLED WITH
|
||||
1.17.3
|
24
README.md
Normal file
@ -0,0 +1,24 @@
|
||||
# README
|
||||
|
||||
This README would normally document whatever steps are necessary to get the
|
||||
application up and running.
|
||||
|
||||
Things you may want to cover:
|
||||
|
||||
* Ruby version
|
||||
|
||||
* System dependencies
|
||||
|
||||
* Configuration
|
||||
|
||||
* Database creation
|
||||
|
||||
* Database initialization
|
||||
|
||||
* How to run the test suite
|
||||
|
||||
* Services (job queues, cache servers, search engines, etc.)
|
||||
|
||||
* Deployment instructions
|
||||
|
||||
* ...
|
6
Rakefile
Normal file
@ -0,0 +1,6 @@
|
||||
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
||||
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
||||
|
||||
require_relative 'config/application'
|
||||
|
||||
Rails.application.load_tasks
|
2
app/assets/config/manifest.js
Normal file
@ -0,0 +1,2 @@
|
||||
//= link_tree ../images
|
||||
//= link_directory ../stylesheets .css
|
0
app/assets/images/.keep
Normal file
BIN
app/assets/images/admin/content_type/type_AgirContent.png
Normal file
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 6.5 KiB |
BIN
app/assets/images/admin/content_type/type_BlockContent.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
app/assets/images/admin/content_type/type_BreakContent.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
app/assets/images/admin/content_type/type_DownloadContent.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
app/assets/images/admin/content_type/type_DynamicContent.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
app/assets/images/admin/content_type/type_EventContent.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
app/assets/images/admin/content_type/type_GalleryContent.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
app/assets/images/admin/content_type/type_HtmlContent.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
app/assets/images/admin/content_type/type_ImageContent.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
app/assets/images/admin/content_type/type_ImgLinkContent.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
app/assets/images/admin/content_type/type_KeynumberContent.png
Normal file
After Width: | Height: | Size: 5.0 KiB |
BIN
app/assets/images/admin/content_type/type_LinkContent.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
app/assets/images/admin/content_type/type_MapContent.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 22 KiB |
BIN
app/assets/images/admin/content_type/type_PetitionContent.png
Normal file
After Width: | Height: | Size: 5.9 KiB |
BIN
app/assets/images/admin/content_type/type_QuoteContent.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
app/assets/images/admin/content_type/type_ShareContent.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
app/assets/images/admin/content_type/type_SlideContent.png
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
app/assets/images/admin/content_type/type_TableContent.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
app/assets/images/admin/content_type/type_TextContent.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
app/assets/images/admin/content_type/type_TimeContent.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
app/assets/images/admin/content_type/type_TitleContent.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
app/assets/images/admin/content_type/type_VideoContent.png
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
app/assets/images/admin/default_image.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
app/assets/images/file_types/1358029801_css.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
app/assets/images/file_types/1358029807_docx.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
app/assets/images/file_types/1358029820_psd.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
app/assets/images/file_types/1358029824_jpg.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
app/assets/images/file_types/1358029827_generic.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
app/assets/images/file_types/1358029830_doc.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
app/assets/images/file_types/1358029834_aac.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
app/assets/images/file_types/1358029839_wmv.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
app/assets/images/file_types/1358029845_raw.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
app/assets/images/file_types/1358029848_tar.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
app/assets/images/file_types/1358029854_tiff.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
app/assets/images/file_types/1358029858_rtf.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
app/assets/images/file_types/1358029860_rtf.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
app/assets/images/file_types/1358029868_js.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
app/assets/images/file_types/1358029872_gif.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
app/assets/images/file_types/1358029874_aiff.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
app/assets/images/file_types/1358029878_gzip.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
app/assets/images/file_types/1358029881_ma.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
app/assets/images/file_types/1358029885_mp.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
app/assets/images/file_types/1358029888_php.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
app/assets/images/file_types/1358029892_mpeg.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
app/assets/images/file_types/1358029894_mov.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
app/assets/images/file_types/1358029899_html.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
app/assets/images/file_types/1358029903_avi.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
app/assets/images/file_types/1358029912_wav.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
app/assets/images/file_types/1358029916_generic.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
app/assets/images/file_types/_blank.png
Executable file
After Width: | Height: | Size: 558 B |
BIN
app/assets/images/file_types/_page.png
Executable file
After Width: | Height: | Size: 1.6 KiB |
BIN
app/assets/images/file_types/aac.png
Executable file
After Width: | Height: | Size: 2.0 KiB |
BIN
app/assets/images/file_types/ai.png
Normal file
After Width: | Height: | Size: 9.6 KiB |
BIN
app/assets/images/file_types/bmp.png
Normal file
After Width: | Height: | Size: 453 KiB |
BIN
app/assets/images/file_types/eps.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
app/assets/images/file_types/gif.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
app/assets/images/file_types/icns.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
app/assets/images/file_types/ico.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
app/assets/images/file_types/jpeg.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
app/assets/images/file_types/jpg.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
app/assets/images/file_types/key.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
app/assets/images/file_types/kth.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
app/assets/images/file_types/m4v.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
app/assets/images/file_types/md.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
app/assets/images/file_types/mpg.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
app/assets/images/file_types/nmbtemplate.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
app/assets/images/file_types/numbers.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
app/assets/images/file_types/odf.png
Executable file
After Width: | Height: | Size: 1.4 KiB |
BIN
app/assets/images/file_types/ods.png
Executable file
After Width: | Height: | Size: 1.6 KiB |
BIN
app/assets/images/file_types/odt.png
Executable file
After Width: | Height: | Size: 1.6 KiB |
BIN
app/assets/images/file_types/otp.png
Executable file
After Width: | Height: | Size: 1.3 KiB |
BIN
app/assets/images/file_types/ots.png
Executable file
After Width: | Height: | Size: 1.5 KiB |
BIN
app/assets/images/file_types/ott.png
Executable file
After Width: | Height: | Size: 1.5 KiB |
BIN
app/assets/images/file_types/pages.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
app/assets/images/file_types/pdf.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
app/assets/images/file_types/php.png
Executable file
After Width: | Height: | Size: 1.5 KiB |
BIN
app/assets/images/file_types/png.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
app/assets/images/file_types/psd.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
app/assets/images/file_types/sql.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
app/assets/images/file_types/tar.gz.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
app/assets/images/file_types/tar.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
app/assets/images/file_types/template.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
app/assets/images/file_types/tiff.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
app/assets/images/file_types/txt.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
app/assets/images/file_types/zip.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
app/assets/images/fond.jpg
Normal file
After Width: | Height: | Size: 44 KiB |