diff --git a/Gemfile b/Gemfile index c954f3e37..388c88735 100644 --- a/Gemfile +++ b/Gemfile @@ -117,7 +117,7 @@ group :development, :test do gem 'graphql-schema_comparator' gem 'mina', git: 'https://github.com/mina-deploy/mina.git', require: false # Deploy gem 'pry-byebug' - gem 'rspec-rails', '~> 4.0.0.beta' + gem 'rspec-rails' gem 'rspec_junit_formatter', require: false gem 'ruby-debug-ide', require: false gem 'simple_xlsx_reader' diff --git a/Gemfile.lock b/Gemfile.lock index 6e2f5baaa..89a21c188 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -83,7 +83,7 @@ GEM zeitwerk (~> 2.2, >= 2.2.2) addressable (2.7.0) public_suffix (>= 2.0.2, < 5.0) - administrate (0.13.0) + administrate (0.14.0) actionpack (>= 4.2) actionview (>= 4.2) activerecord (>= 4.2) @@ -149,7 +149,7 @@ GEM selenium-webdriver case_transform (0.2) activesupport - caxlsx (3.0.1) + caxlsx (3.0.2) htmlentities (~> 4.3, >= 4.3.4) mimemagic (~> 0.3) nokogiri (~> 1.10, >= 1.10.4) @@ -195,7 +195,7 @@ GEM sinatra (>= 1.4.4) descendants_tracker (0.0.4) thread_safe (~> 0.3, >= 0.3.1) - devise (4.7.2) + devise (4.7.3) bcrypt (~> 3.0) orm_adapter (~> 0.1) railties (>= 4.1.0) @@ -206,7 +206,7 @@ GEM devise (>= 4.0) devise-i18n (1.9.2) devise (>= 4.7.1) - diff-lcs (1.3) + diff-lcs (1.4.4) discard (1.2.0) activerecord (>= 4.2, < 7) domain_name (0.5.20190701) @@ -398,7 +398,7 @@ GEM method_source (1.0.0) mime-types (3.3.1) mime-types-data (~> 3.2015) - mime-types-data (3.2019.1009) + mime-types-data (3.2020.0512) mimemagic (0.3.5) mini_mime (1.0.2) mini_portile2 (2.4.0) @@ -466,7 +466,7 @@ GEM prawn (>= 0.11.1, < 3) prawn-table (0.2.2) prawn (>= 1.3.0, < 3.0.0) - premailer (1.13.1) + premailer (1.14.1) addressable css_parser (>= 1.6.0) htmlentities (>= 4.0.0) @@ -518,10 +518,10 @@ GEM bundler (>= 1.3.0) railties (= 6.0.3.3) sprockets-rails (>= 2.0.0) - rails-controller-testing (1.0.4) - actionpack (>= 5.0.1.x) - actionview (>= 5.0.1.x) - activesupport (>= 5.0.1.x) + rails-controller-testing (1.0.5) + actionpack (>= 5.0.1.rc1) + actionview (>= 5.0.1.rc1) + activesupport (>= 5.0.1.rc1) rails-dom-testing (2.0.3) activesupport (>= 4.2.0) nokogiri (>= 1.6) @@ -577,15 +577,15 @@ GEM rspec-core (~> 3.9.0) rspec-expectations (~> 3.9.0) rspec-mocks (~> 3.9.0) - rspec-core (3.9.1) - rspec-support (~> 3.9.1) - rspec-expectations (3.9.1) + rspec-core (3.9.2) + rspec-support (~> 3.9.3) + rspec-expectations (3.9.2) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.9.0) rspec-mocks (3.9.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.9.0) - rspec-rails (4.0.0) + rspec-rails (4.0.1) actionpack (>= 4.2) activesupport (>= 4.2) railties (>= 4.2) @@ -593,7 +593,7 @@ GEM rspec-expectations (~> 3.9) rspec-mocks (~> 3.9) rspec-support (~> 3.9) - rspec-support (3.9.2) + rspec-support (3.9.3) rspec_junit_formatter (0.4.1) rspec-core (>= 2, < 4, != 2.12.0) rubocop (0.81.0) @@ -746,10 +746,10 @@ GEM xray-rails (0.3.2) rails (>= 3.1.0) zeitwerk (2.4.0) - zip_tricks (5.0.0) - zipline (1.1.1) + zip_tricks (5.3.1) + zipline (1.2.1) rails (>= 3.2.1, < 6.1) - zip_tricks (>= 4.2.1, <= 5.0.0) + zip_tricks (>= 4.2.1, < 6.0) zxcvbn-ruby (1.1.0) PLATFORMS @@ -842,7 +842,7 @@ DEPENDENCIES rake-progressbar react-rails rgeo-geojson - rspec-rails (~> 4.0.0.beta) + rspec-rails rspec_junit_formatter rubocop rubocop-rails_config diff --git a/app/dashboards/demande_dashboard.rb b/app/dashboards/demande_dashboard.rb new file mode 100644 index 000000000..fbe725303 --- /dev/null +++ b/app/dashboards/demande_dashboard.rb @@ -0,0 +1,4 @@ +require "administrate/base_dashboard" + +class DemandeDashboard < Administrate::BaseDashboard +end