TrestleAdmin / trestle

A modern, responsive admin framework for Ruby on Rails
https://trestle.io
GNU Lesser General Public License v3.0
1.96k stars 177 forks source link

Labels Disappear in Trestle Forms #313

Open DalfDev opened 4 years ago

DalfDev commented 4 years ago

When i'm using trestle 0.9.2 I got:

screen

And When I'm using trestle 0.9.3I got :

screen

The labels of the inputs disappears in all the ressources I don't know why

With this ressource

Trestle.resource(:banks) do
  menu do
    item :banks, icon: "fa fa-star"
  end

  # Customize the table columns shown on the index view.
  #
  table do
    column :name
    actions
  end

  form do |bank|
    text_field :name
  end

  # Customize the form fields shown on the new/edit views.
  #
  # form do |bank|
  #   text_field :name
  #
  #   row do
  #     col(xs: 6) { datetime_field :updated_at }
  #     col(xs: 6) { datetime_field :created_at }
  #   end
  # end

  # By default, all parameters passed to the update and create actions will be
  # permitted. If you do not have full trust in your users, you should explicitly
  # define the list of permitted parameters.
  #
  # For further information, see the Rails documentation on Strong Parameters:
  #   http://guides.rubyonrails.org/action_controller_overview.html#strong-parameters
  #
  # params do |params|
  #   params.require(:bank).permit(:name, ...)
  # end
end
spohlenz commented 4 years ago

This is an odd one. I can't see anything in the diff between 0.9.2 and 0.9.3 that could potentially be causing this.

Do you see the <label> element at all within the source (or inspector), possibly with the sr-only class?

Ideally, if you could please upload a repo to GitHub that reproduces the issue, then I can hopefully get to the bottom of it.

DalfDev commented 4 years ago

I can't reproduce this bug in a new blank project... :/ And can't share the real one

There is no label :/ screen

spohlenz commented 4 years ago

I understand. Perhaps you'd be able to share your Gemfile & Gemfile.lock from the problematic app? The only thing I can currently think of is that another gem is overriding the label helper in some way.

DalfDev commented 4 years ago

This is the Gemfile:

source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0.3'
# Use mysql2 as the database for Active Record
gem 'mysql2'
# Use Puma as the app server
gem 'puma'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'mini_racer', platforms: :ruby

gem "webpacker"

gem 'awesome_print'

gem 'telegram-bot'

# Used for scraping
gem 'watir'
gem 'geckodriver-helper'
gem 'webdrivers'

gem 'smspartner', '~> 0.1', git: 'git://github.com/moduloTech/smspartner.git'
gem 'geocoder'
gem "select2-rails"
gem 'simple_form'
gem "cocoon" # Extended simple form plugins
gem 'trestle', '0.9.3'
gem 'autoprefixer-rails', '8.6.5' # used by trestle, set to 8.6.5 to prevent a bug
gem 'trestle-auth'

# chevre_a: I comment this gem, because for the moment this gem cause one bug
# When this gem is enable, all the label disappear in trestle's forms
# gem 'trestle-active_storage'

gem 'trestle-search'

gem 'devise'
gem 'enum_help' #Helper for devise enums
gem 'carrierwave'
gem 'mini_magick'

gem 'phonelib'
gem 'swagger-blocks'
gem 'httparty'
gem 'combine_pdf'
gem 'pdf-reader'
gem 'pdftotext'

gem 'capistrano',  '~> 3.1'
gem 'capistrano-rails', '~> 1.1'
gem 'capistrano-bundler'
gem 'capistrano-rvm'
gem 'execjs'
gem 'therubyracer', platform: :ruby
gem 'capistrano-passenger'
gem 'rollbar'
gem 'rails-observers'
gem 'whenever'
gem 'chart-js-rails'
gem 'cliver'

# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', 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]
  gem 'letter_opener'
  gem 'rubocop'
  gem 'rspec-rails'
  gem 'factory_bot_rails'
end

# Banking
# required for the Banking APIs
gem 'jwt'

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'
  gem 'bullet'
end

group :production do
  gem 'fog-aws'
  gem 'aws-sdk-s3'
  gem 'prometheus_exporter'
end

group :development, :production do
  # Use ActiveStorage variant
  gem 'poppler'
end

group :test do
  # Adds support for Capybara system testing and selenium driver
  gem 'capybara', '>= 2.15', '< 4.0'
  gem 'selenium-webdriver'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

gem 'rrt', source: 'https://gems.kiso.io/'

gem 'jquery-rails'

# Faker gem for seeds
gem 'faker'

gem 'rest-client', require: false

This is the Gemfile.lock:

GIT
  remote: git://github.com/moduloTech/smspartner.git
  revision: c8ad1662f8207564efd01d4d4d9370339f26aa6e
  specs:
    smspartner (0.1.0)
      httparty (~> 0.13)

GEM
  remote: https://rubygems.org/
  remote: https://gems.kiso.io/
  specs:
    Ascii85 (1.0.3)
    CFPropertyList (2.3.6)
    actioncable (6.0.3.2)
      actionpack (= 6.0.3.2)
      nio4r (~> 2.0)
      websocket-driver (>= 0.6.1)
    actionmailbox (6.0.3.2)
      actionpack (= 6.0.3.2)
      activejob (= 6.0.3.2)
      activerecord (= 6.0.3.2)
      activestorage (= 6.0.3.2)
      activesupport (= 6.0.3.2)
      mail (>= 2.7.1)
    actionmailer (6.0.3.2)
      actionpack (= 6.0.3.2)
      actionview (= 6.0.3.2)
      activejob (= 6.0.3.2)
      mail (~> 2.5, >= 2.5.4)
      rails-dom-testing (~> 2.0)
    actionpack (6.0.3.2)
      actionview (= 6.0.3.2)
      activesupport (= 6.0.3.2)
      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.2)
      actionpack (= 6.0.3.2)
      activerecord (= 6.0.3.2)
      activestorage (= 6.0.3.2)
      activesupport (= 6.0.3.2)
      nokogiri (>= 1.8.5)
    actionview (6.0.3.2)
      activesupport (= 6.0.3.2)
      builder (~> 3.1)
      erubi (~> 1.4)
      rails-dom-testing (~> 2.0)
      rails-html-sanitizer (~> 1.1, >= 1.2.0)
    activejob (6.0.3.2)
      activesupport (= 6.0.3.2)
      globalid (>= 0.3.6)
    activemodel (6.0.3.2)
      activesupport (= 6.0.3.2)
    activerecord (6.0.3.2)
      activemodel (= 6.0.3.2)
      activesupport (= 6.0.3.2)
    activestorage (6.0.3.2)
      actionpack (= 6.0.3.2)
      activejob (= 6.0.3.2)
      activerecord (= 6.0.3.2)
      marcel (~> 0.3.1)
    activesupport (6.0.3.2)
      concurrent-ruby (~> 1.0, >= 1.0.2)
      i18n (>= 0.7, < 2)
      minitest (~> 5.1)
      tzinfo (~> 1.1)
      zeitwerk (~> 2.2, >= 2.2.2)
    addressable (2.7.0)
      public_suffix (>= 2.0.2, < 5.0)
    afm (0.2.2)
    airbrussh (1.4.0)
      sshkit (>= 1.6.1, != 1.7.0)
    aliyun-sdk (0.7.2)
      nokogiri (~> 1.6)
      rest-client (~> 2.0)
    archive-zip (0.12.0)
      io-like (~> 0.3.0)
    ast (2.4.1)
    awesome_print (1.8.0)
    aws-eventstream (1.1.0)
    aws-partitions (1.331.0)
    aws-sdk-core (3.100.0)
      aws-eventstream (~> 1, >= 1.0.2)
      aws-partitions (~> 1, >= 1.239.0)
      aws-sigv4 (~> 1.1)
      jmespath (~> 1.0)
    aws-sdk-kms (1.34.1)
      aws-sdk-core (~> 3, >= 3.99.0)
      aws-sigv4 (~> 1.1)
    aws-sdk-s3 (1.69.0)
      aws-sdk-core (~> 3, >= 3.99.0)
      aws-sdk-kms (~> 1)
      aws-sigv4 (~> 1.1)
    aws-sigv4 (1.2.0)
      aws-eventstream (~> 1, >= 1.0.2)
    bcrypt (3.1.15)
    bindex (0.8.1)
    bootsnap (1.4.6)
      msgpack (~> 1.0)
    builder (3.2.4)
    bullet (6.1.0)
      activesupport (>= 3.0.0)
      uniform_notifier (~> 1.11)
    byebug (11.1.3)
    cairo (1.16.5)
      native-package-installer (>= 1.0.3)
      pkg-config (>= 1.2.2)
    cairo-gobject (3.4.3)
      cairo (>= 1.16.2)
      glib2 (= 3.4.3)
    capistrano (3.14.1)
      airbrussh (>= 1.0.0)
      i18n
      rake (>= 10.0.0)
      sshkit (>= 1.9.0)
    capistrano-bundler (1.6.0)
      capistrano (~> 3.1)
    capistrano-passenger (0.2.0)
      capistrano (~> 3.0)
    capistrano-rails (1.5.0)
      capistrano (~> 3.1)
      capistrano-bundler (~> 1.1)
    capistrano-rvm (0.1.2)
      capistrano (~> 3.0)
      sshkit (~> 1.2)
    capybara (3.32.2)
      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)
    chart-js-rails (0.1.7)
      railties (> 3.1)
    childprocess (3.0.0)
    chromedriver-helper (2.1.1)
      archive-zip (~> 0.10)
      nokogiri (~> 1.8)
    chronic (0.10.2)
    cocoon (1.2.14)
    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)
    combine_pdf (1.0.16)
      ruby-rc4 (>= 0.1.5)
    concurrent-ruby (1.1.6)
    crass (1.0.6)
    declarative (0.0.10)
    declarative-option (0.1.0)
    devise (4.7.2)
      bcrypt (~> 3.0)
      orm_adapter (~> 0.1)
      railties (>= 4.1.0)
      responders
      warden (~> 1.2.3)
    diff-lcs (1.3)
    domain_name (0.5.20190701)
      unf (>= 0.0.5, < 1.0.0)
    dry-inflector (0.2.0)
    enum_help (0.0.17)
      activesupport (>= 3.0.0)
    erubi (1.9.0)
    excon (0.75.0)
    execjs (2.7.0)
    factory_bot (6.0.0)
      activesupport (>= 5.0.0)
    factory_bot_rails (6.0.0)
      factory_bot (~> 6.0.0)
      railties (>= 5.0.0)
    faker (2.12.0)
      i18n (>= 1.6, < 2)
    faraday (0.17.3)
      multipart-post (>= 1.2, < 3)
    ffi (1.13.1)
    fission (0.5.0)
      CFPropertyList (~> 2.2)
    fog (2.2.0)
      fog-aliyun (>= 0.1.0)
      fog-atmos
      fog-aws (>= 0.6.0)
      fog-brightbox (~> 0.4)
      fog-cloudatcost (~> 0.4)
      fog-cloudstack (~> 0.1.0)
      fog-core (~> 2.1)
      fog-digitalocean (>= 0.3.0)
      fog-dnsimple (~> 2.1)
      fog-dynect (~> 0.0.2)
      fog-ecloud (~> 0.1)
      fog-google (~> 1.0)
      fog-internet-archive
      fog-json
      fog-local
      fog-openstack
      fog-ovirt
      fog-powerdns (>= 0.1.1)
      fog-profitbricks
      fog-rackspace
      fog-radosgw (>= 0.0.2)
      fog-riakcs
      fog-sakuracloud (>= 0.0.4)
      fog-serverlove
      fog-softlayer
      fog-storm_on_demand
      fog-terremark
      fog-vmfusion
      fog-voxel
      fog-vsphere (>= 0.4.0)
      fog-xenserver
      fog-xml (~> 0.1.1)
      ipaddress (~> 0.5)
      json (~> 2.0)
    fog-aliyun (0.3.16)
      aliyun-sdk (~> 0.7.2)
      fog-core
      fog-json
      ipaddress (~> 0.8)
      xml-simple (~> 1.1)
    fog-atmos (0.1.0)
      fog-core
      fog-xml
    fog-aws (3.6.5)
      fog-core (~> 2.1)
      fog-json (~> 1.1)
      fog-xml (~> 0.1)
      ipaddress (~> 0.8)
    fog-brightbox (0.16.1)
      dry-inflector
      fog-core
      fog-json
      mime-types
    fog-cloudatcost (0.4.0)
      fog-core
      fog-json
      ipaddress
    fog-cloudstack (0.1.0)
      fog-core (~> 2.1)
      fog-json (~> 1.1)
      fog-xml (~> 0.1)
    fog-core (2.2.0)
      builder
      excon (~> 0.71)
      formatador (~> 0.2)
      mime-types
    fog-digitalocean (0.4.0)
      fog-core
      fog-json
      fog-xml
      ipaddress (>= 0.5)
    fog-dnsimple (2.1.0)
      fog-core (>= 1.38, < 3)
      fog-json
    fog-dynect (0.0.3)
      fog-core
      fog-json
      fog-xml
    fog-ecloud (0.3.0)
      fog-core
      fog-xml
    fog-google (1.7.1)
      fog-core
      fog-json
      fog-xml
      google-api-client (~> 0.23.0)
    fog-internet-archive (0.0.1)
      fog-core
      fog-json
      fog-xml
    fog-json (1.2.0)
      fog-core
      multi_json (~> 1.10)
    fog-local (0.6.0)
      fog-core (>= 1.27, < 3.0)
    fog-openstack (1.0.11)
      fog-core (~> 2.1)
      fog-json (>= 1.0)
      ipaddress (>= 0.8)
    fog-ovirt (1.2.5)
      fog-core
      fog-json
      fog-xml
      ovirt-engine-sdk (>= 4.1.3)
      rbovirt (~> 0.1.5)
    fog-powerdns (0.2.0)
      fog-core
      fog-json
      fog-xml
    fog-profitbricks (0.0.5)
      fog-core
      fog-xml
      nokogiri
    fog-rackspace (0.1.6)
      fog-core (>= 1.35)
      fog-json (>= 1.0)
      fog-xml (>= 0.1)
      ipaddress (>= 0.8)
    fog-radosgw (0.0.5)
      fog-core (>= 1.21.0)
      fog-json
      fog-xml (>= 0.0.1)
    fog-riakcs (0.1.0)
      fog-core
      fog-json
      fog-xml
    fog-sakuracloud (1.7.5)
      fog-core
      fog-json
    fog-serverlove (0.1.2)
      fog-core
      fog-json
    fog-softlayer (1.1.4)
      fog-core
      fog-json
    fog-storm_on_demand (0.1.1)
      fog-core
      fog-json
    fog-terremark (0.1.0)
      fog-core
      fog-xml
    fog-vmfusion (0.1.0)
      fission
      fog-core
    fog-voxel (0.1.0)
      fog-core
      fog-xml
    fog-vsphere (3.3.1)
      fog-core
      rbvmomi (>= 1.9, < 3)
    fog-xenserver (1.0.0)
      fog-core
      fog-xml
      xmlrpc
    fog-xml (0.1.3)
      fog-core
      nokogiri (>= 1.5.11, < 2.0.0)
    formatador (0.2.5)
    geocoder (1.6.3)
    gio2 (3.4.3)
      gobject-introspection (= 3.4.3)
    glib2 (3.4.3)
      native-package-installer (>= 1.0.3)
      pkg-config (>= 1.3.5)
    globalid (0.4.2)
      activesupport (>= 4.2.0)
    gobject-introspection (3.4.3)
      glib2 (= 3.4.3)
    google-api-client (0.23.9)
      addressable (~> 2.5, >= 2.5.1)
      googleauth (>= 0.5, < 0.7.0)
      httpclient (>= 2.8.1, < 3.0)
      mime-types (~> 3.0)
      representable (~> 3.0)
      retriable (>= 2.0, < 4.0)
      signet (~> 0.9)
    googleauth (0.6.7)
      faraday (~> 0.12)
      jwt (>= 1.4, < 3.0)
      memoist (~> 0.16)
      multi_json (~> 1.11)
      os (>= 0.9, < 2.0)
      signet (~> 0.7)
    hashery (2.1.2)
    http-accept (1.7.0)
    http-cookie (1.0.3)
      domain_name (~> 0.5)
    httparty (0.18.1)
      mime-types (~> 3.0)
      multi_xml (>= 0.5.2)
    httpclient (2.8.3)
    i18n (1.8.5)
      concurrent-ruby (~> 1.0)
    image_processing (1.11.0)
      mini_magick (>= 4.9.5, < 5)
      ruby-vips (>= 2.0.17, < 3)
    io-like (0.3.1)
    ipaddress (0.8.3)
    jbuilder (2.10.0)
      activesupport (>= 5.0.0)
    jmespath (1.4.0)
    jquery-rails (4.4.0)
      rails-dom-testing (>= 1, < 3)
      railties (>= 4.2.0)
      thor (>= 0.14, < 2.0)
    json (2.3.0)
    jwt (2.2.1)
    kaminari (1.2.1)
      activesupport (>= 4.1.0)
      kaminari-actionview (= 1.2.1)
      kaminari-activerecord (= 1.2.1)
      kaminari-core (= 1.2.1)
    kaminari-actionview (1.2.1)
      actionview
      kaminari-core (= 1.2.1)
    kaminari-activerecord (1.2.1)
      activerecord
      kaminari-core (= 1.2.1)
    kaminari-core (1.2.1)
    launchy (2.5.0)
      addressable (~> 2.7)
    letter_opener (1.7.0)
      launchy (~> 2.2)
    libv8 (3.16.14.19)
    listen (3.1.5)
      rb-fsevent (~> 0.9, >= 0.9.4)
      rb-inotify (~> 0.9, >= 0.9.7)
      ruby_dep (~> 1.2)
    loofah (2.6.0)
      crass (~> 1.0.2)
      nokogiri (>= 1.5.9)
    mail (2.7.1)
      mini_mime (>= 0.1.1)
    marcel (0.3.3)
      mimemagic (~> 0.3.2)
    memoist (0.16.2)
    method_source (1.0.0)
    mime-types (3.3.1)
      mime-types-data (~> 3.2015)
    mime-types-data (3.2020.0512)
    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.3)
    multi_json (1.14.1)
    multi_xml (0.6.0)
    multipart-post (2.1.1)
    mysql2 (0.5.3)
    native-package-installer (1.0.9)
    net-scp (3.0.0)
      net-ssh (>= 2.6.5, < 7.0.0)
    net-ssh (6.1.0)
    netrc (0.11.0)
    nio4r (2.5.2)
    nokogiri (1.10.10)
      mini_portile2 (~> 2.4.0)
    optimist (3.0.1)
    orm_adapter (0.5.0)
    os (1.1.0)
    ovirt-engine-sdk (4.4.0)
      json (>= 1, < 3)
    parallel (1.19.2)
    parser (2.7.1.3)
      ast (~> 2.4.0)
    pdf-reader (2.4.0)
      Ascii85 (~> 1.0.0)
      afm (~> 0.2.1)
      hashery (~> 2.0)
      ruby-rc4
      ttfunk
    phonelib (0.6.43)
    pkg-config (1.4.1)
    poppler (3.4.3)
      cairo-gobject (= 3.4.3)
      gio2 (= 3.4.3)
    prometheus_exporter (0.5.1)
    public_suffix (4.0.5)
    puma (4.3.5)
      nio4r (~> 2.0)
    rack (2.2.3)
    rack-proxy (0.6.5)
      rack
    rack-test (1.1.0)
      rack (>= 1.0, < 3)
    rails (6.0.3.2)
      actioncable (= 6.0.3.2)
      actionmailbox (= 6.0.3.2)
      actionmailer (= 6.0.3.2)
      actionpack (= 6.0.3.2)
      actiontext (= 6.0.3.2)
      actionview (= 6.0.3.2)
      activejob (= 6.0.3.2)
      activemodel (= 6.0.3.2)
      activerecord (= 6.0.3.2)
      activestorage (= 6.0.3.2)
      activesupport (= 6.0.3.2)
      bundler (>= 1.3.0)
      railties (= 6.0.3.2)
      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-observers (0.1.5)
      activemodel (>= 4.0)
    railties (6.0.3.2)
      actionpack (= 6.0.3.2)
      activesupport (= 6.0.3.2)
      method_source
      rake (>= 0.8.7)
      thor (>= 0.20.3, < 2.0)
    rainbow (3.0.0)
    rake (13.0.1)
    rb-fsevent (0.10.4)
    rb-inotify (0.10.1)
      ffi (~> 1.0)
    rbovirt (0.1.7)
      nokogiri
      rest-client (> 1.7.0)
    rbvmomi (2.4.1)
      builder (~> 3.0)
      json (>= 1.8)
      nokogiri (~> 1.5)
      optimist (~> 3.0)
    ref (2.0.0)
    regexp_parser (1.7.1)
    representable (3.0.4)
      declarative (< 0.1.0)
      declarative-option (< 0.2.0)
      uber (< 0.2.0)
    responders (3.0.1)
      actionpack (>= 5.0)
      railties (>= 5.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)
    retriable (3.1.2)
    rexml (3.2.4)
    rollbar (2.25.1)
    rrt (1.2.11)
      jquery-rails
      rails (>= 3.1)
      sass-rails
    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.1)
      actionpack (>= 4.2)
      activesupport (>= 4.2)
      railties (>= 4.2)
      rspec-core (~> 3.9)
      rspec-expectations (~> 3.9)
      rspec-mocks (~> 3.9)
      rspec-support (~> 3.9)
    rspec-support (3.9.3)
    rubocop (0.85.1)
      parallel (~> 1.10)
      parser (>= 2.7.0.1)
      rainbow (>= 2.2.2, < 4.0)
      regexp_parser (>= 1.7)
      rexml
      rubocop-ast (>= 0.0.3)
      ruby-progressbar (~> 1.7)
      unicode-display_width (>= 1.4.0, < 2.0)
    rubocop-ast (0.0.3)
      parser (>= 2.7.0.1)
    ruby-progressbar (1.10.1)
    ruby-rc4 (0.1.5)
    ruby-vips (2.0.17)
      ffi (~> 1.9)
    ruby_dep (1.5.0)
    rubyzip (2.3.0)
    sass-rails (6.0.0)
      sassc-rails (~> 2.1, >= 2.1.1)
    sassc (2.4.0)
      ffi (~> 1.9)
    sassc-rails (2.1.2)
      railties (>= 4.0.0)
      sassc (>= 2.0)
      sprockets (> 3.0)
      sprockets-rails
      tilt
    select2-rails (4.0.3)
      thor (~> 0.14)
    selenium-webdriver (3.142.7)
      childprocess (>= 0.5, < 4.0)
      rubyzip (>= 1.2.2)
    semantic_range (2.3.0)
    signet (0.14.0)
      addressable (~> 2.3)
      faraday (>= 0.17.3, < 2.0)
      jwt (>= 1.5, < 3.0)
      multi_json (~> 1.10)
    simple_form (5.0.2)
      actionpack (>= 5.0)
      activemodel (>= 5.0)
    spring (2.1.0)
    spring-watcher-listen (2.0.1)
      listen (>= 2.7, < 4.0)
      spring (>= 1.2, < 3.0)
    sprockets (4.0.2)
      concurrent-ruby (~> 1.0)
      rack (> 1, < 3)
    sprockets-rails (3.2.1)
      actionpack (>= 4.0)
      activesupport (>= 4.0)
      sprockets (>= 3.0.0)
    sqlite3 (1.4.2)
    sshkit (1.21.0)
      net-scp (>= 1.1.2)
      net-ssh (>= 2.8.0)
    swagger-blocks (3.0.0)
    telegram-bot (0.14.4)
      actionpack (>= 4.0, < 6.1)
      activesupport (>= 4.0, < 6.1)
      httpclient (~> 2.7)
    therubyracer (0.12.3)
      libv8 (~> 3.16.14.15)
      ref
    thor (0.20.3)
    thread_safe (0.3.6)
    tilt (2.0.10)
    trestle (0.9.3)
      activemodel (>= 4.2.0)
      kaminari (>= 1.1.0)
      railties (>= 4.2.0)
      sprockets-rails (>= 2.0.0)
    trestle-auth (0.4.0)
      bcrypt (~> 3.1.7)
      trestle (~> 0.9.0)
    trestle-search (0.4.2)
      trestle (~> 0.9.0, >= 0.9.3)
    ttfunk (1.6.2.1)
    tzinfo (1.2.7)
      thread_safe (~> 0.1)
    uber (0.1.0)
    uglifier (4.2.0)
      execjs (>= 0.3.0, < 3)
    unf (0.1.4)
      unf_ext
    unf_ext (0.0.7.7)
    unicode-display_width (1.7.0)
    uniform_notifier (1.13.0)
    warden (1.2.8)
      rack (>= 2.0.6)
    watir (6.16.5)
      regexp_parser (~> 1.2)
      selenium-webdriver (~> 3.6)
    web-console (4.0.3)
      actionview (>= 6.0.0)
      activemodel (>= 6.0.0)
      bindex (>= 0.4.0)
      railties (>= 6.0.0)
    webpacker (5.1.1)
      activesupport (>= 5.2)
      rack-proxy (>= 0.6.1)
      railties (>= 5.2)
      semantic_range (>= 2.3.0)
    websocket-driver (0.7.2)
      websocket-extensions (>= 0.1.0)
    websocket-extensions (0.1.5)
    whenever (1.0.0)
      chronic (>= 0.6.3)
    xml-simple (1.1.5)
    xmlrpc (0.3.0)
    xpath (3.2.0)
      nokogiri (~> 1.8)
    zeitwerk (2.4.0)

PLATFORMS
  ruby

DEPENDENCIES
  awesome_print
  aws-sdk-s3
  bootsnap (>= 1.1.0)
  bullet
  byebug
  capistrano (~> 3.1)
  capistrano-bundler
  capistrano-passenger
  capistrano-rails (~> 1.1)
  capistrano-rvm
  capybara (>= 2.15, < 4.0)
  carrierwave
  chart-js-rails
  chromedriver-helper
  cocoon
  coffee-rails
  combine_pdf
  devise
  enum_help
  execjs
  factory_bot_rails
  faker
  fog
  geocoder
  httparty
  jbuilder
  jquery-rails
  jwt
  letter_opener
  listen (>= 3.0.5, < 3.2)
  mini_magick
  mysql2
  pdf-reader
  phonelib
  poppler
  prometheus_exporter
  puma
  rails (~> 6.0.3)
  rails-observers
  rollbar
  rrt!
  rspec-rails
  rubocop
  sass-rails
  select2-rails
  selenium-webdriver
  simple_form
  smspartner (~> 0.1)!
  spring
  spring-watcher-listen (~> 2.0.0)
  sqlite3
  swagger-blocks
  telegram-bot
  therubyracer
  trestle (= 0.9.3)
  trestle-auth
  trestle-search
  tzinfo-data
  uglifier (>= 1.3.0)
  watir
  web-console (>= 3.3.0)
  webpacker
  whenever

BUNDLED WITH
   1.17.3
spohlenz commented 4 years ago

Can you please try with the rrt gem disabled? I am unable to test it as I am not a customer. However it looks like it is possibly creating a form_group method on the form builder which could be conflicting with Trestle's.

gem 'rrt', source: 'https://gems.kiso.io/'