refinery / refinerycms

An extendable Ruby on Rails CMS that supports Rails 6.0+
https://www.refinerycms.com/
MIT License
3.9k stars 1.26k forks source link

Incompatible units: 'px' and 'rem' error with rails 5 #3257

Closed augustosamame closed 7 years ago

augustosamame commented 8 years ago

I have followed the instructions to make refinery work with Rails 5. My gemfile includes:

gem 'refinerycms', github: 'refinery/refinerycms', branch: 'feature/rails-5'
gem 'refinerycms-i18n', github: 'refinery/refinerycms-i18n', branch: 'feature/rails-5'
gem 'globalize', github: 'globalize/globalize', branch: 'master'
gem 'will_paginate', github: 'nmeylan/will_paginate', branch: 'master'

it bundle installs and runs the server with no issues.

but it fails when trying to load a webpage with the following error:


Sass::UnitConversionError at /
Incompatible units: 'px' and 'rem'

when trying to run the following line in my application layout:

= stylesheet_link_tag 'application', :media => nil

I would love to use Refinery. Any help is appreciated.

bricesanchez commented 8 years ago

Hello! Could you copy/paste your Gemfile.lock?

augustosamame commented 8 years ago

Sure. It's pretty big since this is a production project.

GIT
  remote: git://github.com/activeadmin/activeadmin.git
  revision: f8926831429fe635d26ac8043ea5d676fb6ee637
  specs:
    activeadmin (1.0.0.pre4)
      arbre (~> 1.0, >= 1.0.2)
      bourbon
      coffee-rails
      formtastic (~> 3.1)
      formtastic_i18n
      inherited_resources (~> 1.6)
      jquery-rails
      jquery-ui-rails
      kaminari (~> 0.15)
      railties (>= 3.2, < 5.1)
      ransack (~> 1.3)
      sass-rails
      sprockets (< 4.1)

GIT
  remote: git://github.com/activeadmin/inherited_resources.git
  revision: 4434f0ae72f790cf371728838c927c338100555d
  specs:
    inherited_resources (1.6.0)
      actionpack (>= 3.2, < 5.1)
      has_scope (~> 0.6)
      railties (>= 3.2, < 5.1)
      responders

GIT
  remote: git://github.com/activerecord-hackery/ransack.git
  revision: 7ff43947820d1891e27cb8b0e35b4ed9291a90f4
  specs:
    ransack (1.8.2)
      actionpack (>= 3.0)
      activerecord (>= 3.0)
      activesupport (>= 3.0)
      i18n
      polyamorous (~> 1.3)

GIT
  remote: git://github.com/amatsuda/kaminari.git
  revision: abbf93d557208ee1d0b612c612cd079f86ed54f4
  branch: 0-17-stable
  specs:
    kaminari (0.17.0)
      actionpack (>= 3.0.0)
      activesupport (>= 3.0.0)

GIT
  remote: git://github.com/audionerd/draper.git
  revision: e816e0e5876b76c648c0928f1c3f2aa2c7a3d1f2
  ref: e816e0e587
  branch: rails5
  specs:
    draper (2.1.0)
      actionpack (>= 3.0)
      activemodel (>= 3.0)
      activesupport (>= 3.0)
      request_store (~> 1.0)

GIT
  remote: git://github.com/globalize/globalize.git
  revision: e691a6f29bd311dcc039554fc38ff1cf791cae51
  branch: master
  specs:
    globalize (5.1.0)
      activemodel (>= 4.2, < 5.1)
      activerecord (>= 4.2, < 5.1)
      request_store (~> 1.0)

GIT
  remote: git://github.com/justinfrench/formtastic.git
  revision: 06c5d47a7e4a64b61fa53a39adf22fa1f9681716
  specs:
    formtastic (3.2.0.pre)
      actionpack (>= 4.1.0)

GIT
  remote: git://github.com/nmeylan/will_paginate.git
  revision: e11cae7b2d9801719b9baa5db1588793809b8c7e
  branch: master
  specs:
    will_paginate (3.1.0)

GIT
  remote: git://github.com/rails/activemodel-serializers-xml.git
  revision: 570ee7ed33d60e44ca1f3ccbec3d1fbf61d52cbf
  specs:
    activemodel-serializers-xml (1.0.1)
      activemodel (> 5.x)
      activerecord (> 5.x)
      activesupport (> 5.x)
      builder (~> 3.1)

GIT
  remote: git://github.com/refinery/refinerycms-i18n.git
  revision: 727bdc58c3078caa1248d9dd71da283d4f72a369
  branch: feature/rails-5
  specs:
    refinerycms-i18n (3.0.1)
      rails-i18n (~> 5.0.0)
      routing-filter (>= 0.4.0)

GIT
  remote: git://github.com/refinery/refinerycms.git
  revision: 81a1c7927aba72a9ad1ae680251bc3b95876d490
  branch: feature/rails-5
  specs:
    refinerycms (4.0.0.dev)
      refinerycms-core (= 4.0.0.dev)
      refinerycms-images (= 4.0.0.dev)
      refinerycms-pages (= 4.0.0.dev)
      refinerycms-resources (= 4.0.0.dev)
    refinerycms-core (4.0.0.dev)
      actionmailer (>= 5.0.0, < 5.1)
      actionpack (>= 5.0.0, < 5.1)
      activerecord (>= 5.0.0, < 5.1)
      awesome_nested_set (~> 3.0, >= 3.0.0)
      bootstrap (~> 4.0.0.alpha3)
      coffee-rails (~> 4.0, >= 4.0.0)
      decorators (~> 2.0.0)
      font-awesome-sass (>= 4.3.0, < 5.0)
      jquery-rails (>= 2.3.0)
      jquery-ui-rails (~> 5.0.0)
      railties (>= 5.0.0, < 5.1)
      refinerycms-i18n (~> 3.0, >= 3.0.0)
      sass-rails (>= 4.0, < 5.1)
      truncate_html (~> 0.9)
      will_paginate (~> 3.1.0)
      zilch-authorisation
    refinerycms-images (4.0.0.dev)
      activemodel-serializers-xml (~> 1.0.1)
      dragonfly (~> 1.0.0)
      globalize (>= 5.1.0, < 5.2)
      refinerycms-core (= 4.0.0.dev)
    refinerycms-pages (4.0.0.dev)
      activemodel-serializers-xml (~> 1.0.1)
      awesome_nested_set (~> 3.1.0)
      babosa (!= 0.3.6)
      diffy (~> 3.1.0)
      friendly_id (>= 5.1.0, < 5.3)
      globalize (>= 5.1.0, < 5.2)
      refinerycms-core (= 4.0.0.dev)
      seo_meta (~> 2.0.0.rc.1)
      speakingurl-rails (~> 8.0.0)
    refinerycms-resources (4.0.0.dev)
      activemodel-serializers-xml (~> 1.0.1)
      acts_as_indexed (~> 0.8.0)
      dragonfly (~> 1.0.0)
      globalize (>= 5.1.0, < 5.2)
      refinerycms-core (= 4.0.0.dev)

GEM
  remote: https://rubygems.org/
  specs:
    actioncable (5.0.0.1)
      actionpack (= 5.0.0.1)
      nio4r (~> 1.2)
      websocket-driver (~> 0.6.1)
    actionmailer (5.0.0.1)
      actionpack (= 5.0.0.1)
      actionview (= 5.0.0.1)
      activejob (= 5.0.0.1)
      mail (~> 2.5, >= 2.5.4)
      rails-dom-testing (~> 2.0)
    actionpack (5.0.0.1)
      actionview (= 5.0.0.1)
      activesupport (= 5.0.0.1)
      rack (~> 2.0)
      rack-test (~> 0.6.3)
      rails-dom-testing (~> 2.0)
      rails-html-sanitizer (~> 1.0, >= 1.0.2)
    actionview (5.0.0.1)
      activesupport (= 5.0.0.1)
      builder (~> 3.1)
      erubis (~> 2.7.0)
      rails-dom-testing (~> 2.0)
      rails-html-sanitizer (~> 1.0, >= 1.0.2)
    activejob (5.0.0.1)
      activesupport (= 5.0.0.1)
      globalid (>= 0.3.6)
    activemodel (5.0.0.1)
      activesupport (= 5.0.0.1)
    activerecord (5.0.0.1)
      activemodel (= 5.0.0.1)
      activesupport (= 5.0.0.1)
      arel (~> 7.0)
    activesupport (5.0.0.1)
      concurrent-ruby (~> 1.0, >= 1.0.2)
      i18n (~> 0.7)
      minitest (~> 5.1)
      tzinfo (~> 1.1)
    acts_as_indexed (0.8.3)
    addressable (2.4.0)
    airbrussh (1.1.1)
      sshkit (>= 1.6.1, != 1.7.0)
    arbre (1.1.1)
      activesupport (>= 3.0.0)
    arel (7.1.2)
    autoprefixer-rails (6.5.0.1)
      execjs
    awesome_nested_set (3.1.1)
      activerecord (>= 4.0.0, < 5.1)
    babosa (1.0.2)
    bcrypt (3.1.11)
    better_errors (2.1.1)
      coderay (>= 1.0.0)
      erubis (>= 2.6.6)
      rack (>= 0.9.0)
    bh (1.3.6)
      actionpack
      activesupport
    binding_of_caller (0.7.2)
      debug_inspector (>= 0.0.1)
    bootstrap (4.0.0.alpha4)
      autoprefixer-rails (>= 6.0.3)
      sass (>= 3.4.19)
    bootstrap-sass (3.3.7)
      autoprefixer-rails (>= 5.2.1)
      sass (>= 3.3.4)
    bourbon (4.2.7)
      sass (~> 3.4)
      thor (~> 0.19)
    buftok (0.2.0)
    builder (3.2.2)
    byebug (9.0.6)
    cancancan (1.15.0)
    capistrano (3.6.1)
      airbrussh (>= 1.0.0)
      capistrano-harrow
      i18n
      rake (>= 10.0.0)
      sshkit (>= 1.9.0)
    capistrano-bundler (1.2.0)
      capistrano (~> 3.1)
      sshkit (~> 1.2)
    capistrano-figaro (1.0.0.0)
      capistrano (~> 3.1)
      figaro (~> 1.1)
    capistrano-harrow (0.5.3)
    capistrano-rails (1.1.8)
      capistrano (~> 3.1)
      capistrano-bundler (~> 1.1)
    capistrano-rvm (0.1.2)
      capistrano (~> 3.0)
      sshkit (~> 1.2)
    capistrano3-delayed-job (1.7.2)
      capistrano (~> 3.0, >= 3.0.0)
    capistrano3-puma (1.2.1)
      capistrano (~> 3.0)
      puma (>= 2.6)
    capybara (2.9.2)
      addressable
      mime-types (>= 1.16)
      nokogiri (>= 1.3.3)
      rack (>= 1.0.0)
      rack-test (>= 0.5.4)
      xpath (~> 2.0)
    ckeditor (4.2.0)
      cocaine
      orm_adapter (~> 0.5.0)
    climate_control (0.0.3)
      activesupport (>= 3.0)
    cocaine (0.5.8)
      climate_control (>= 0.0.3, < 1.0)
    coderay (1.1.1)
    coffee-rails (4.2.1)
      coffee-script (>= 2.2.0)
      railties (>= 4.0.0, < 5.2.x)
    coffee-script (2.4.1)
      coffee-script-source
      execjs
    coffee-script-source (1.10.0)
    concurrent-ruby (1.0.2)
    crack (0.4.3)
      safe_yaml (~> 1.0.0)
    css_parser (1.4.5)
      addressable
    cucumber (2.4.0)
      builder (>= 2.1.2)
      cucumber-core (~> 1.5.0)
      cucumber-wire (~> 0.0.1)
      diff-lcs (>= 1.1.3)
      gherkin (~> 4.0)
      multi_json (>= 1.7.5, < 2.0)
      multi_test (>= 0.1.2)
    cucumber-core (1.5.0)
      gherkin (~> 4.0)
    cucumber-rails (1.4.5)
      capybara (>= 1.1.2, < 3)
      cucumber (>= 1.3.8, < 4)
      mime-types (>= 1.16, < 4)
      nokogiri (~> 1.5)
      railties (>= 3, < 5.1)
    cucumber-wire (0.0.1)
    daemons (1.2.4)
    database_cleaner (1.5.3)
    dateslices (0.0.4)
      rails (> 4)
    debug_inspector (0.0.2)
    decorators (2.0.2)
      railties (>= 4.0.0, < 5.1)
    delayed_job (4.1.2)
      activesupport (>= 3.0, < 5.1)
    delayed_job_active_record (4.1.1)
      activerecord (>= 3.0, < 5.1)
      delayed_job (>= 3.0, < 5)
    devise (4.2.0)
      bcrypt (~> 3.0)
      orm_adapter (~> 0.1)
      railties (>= 4.1.0, < 5.1)
      responders
      warden (~> 1.2.3)
    diff-lcs (1.2.5)
    diffy (3.1.0)
    domain_name (0.5.20160826)
      unf (>= 0.0.5, < 1.0.0)
    dragonfly (1.0.12)
      addressable (~> 2.3)
      multi_json (~> 1.0)
      rack (>= 1.3.0)
    equalizer (0.0.10)
    erubis (2.7.0)
    execjs (2.7.0)
    factory_girl (4.7.0)
      activesupport (>= 3.0.0)
    factory_girl_rails (4.7.0)
      factory_girl (~> 4.7.0)
      railties (>= 3.0.0)
    faker (1.6.6)
      i18n (~> 0.5)
    fakeredis (0.6.0)
      redis (~> 3.2)
    faraday (0.9.2)
      multipart-post (>= 1.2, < 3)
    ffi (1.9.14)
    figaro (1.1.1)
      thor (~> 0.14)
    font-awesome-sass (4.6.2)
      sass (>= 3.2)
    formatador (0.2.5)
    formtastic_i18n (0.6.0)
    friendly_id (5.1.0)
      activerecord (>= 4.0.0)
    gherkin (4.0.0)
    gibbon (2.2.4)
      faraday (>= 0.9.1)
      multi_json (>= 1.11.0)
    globalid (0.3.7)
      activesupport (>= 4.1.0)
    guard (2.14.0)
      formatador (>= 0.2.4)
      listen (>= 2.7, < 4.0)
      lumberjack (~> 1.0)
      nenv (~> 0.1)
      notiffany (~> 0.0)
      pry (>= 0.9.12)
      shellany (~> 0.0)
      thor (>= 0.18.1)
    guard-compat (1.2.1)
    guard-cucumber (2.1.2)
      cucumber (~> 2.0)
      guard-compat (~> 1.0)
      nenv (~> 0.1)
    guard-rspec (4.6.5)
      guard (~> 2.1)
      guard-compat (~> 1.1)
      rspec (>= 2.99.0, < 4.0)
    haml (4.0.7)
      tilt
    haml-rails (0.9.0)
      actionpack (>= 4.0.1)
      activesupport (>= 4.0.1)
      haml (>= 4.0.6, < 5.0)
      html2haml (>= 1.0.1)
      railties (>= 4.0.1)
    happy_seed (0.0.21)
      rack (~> 2.x)
      rails (~> 5.0.0)
      thor
    has_scope (0.7.0)
      actionpack (>= 4.1, < 5.1)
      activesupport (>= 4.1, < 5.1)
    hashdiff (0.3.0)
    html2haml (2.0.0)
      erubis (~> 2.7.0)
      haml (~> 4.0.0)
      nokogiri (~> 1.6.0)
      ruby_parser (~> 3.5)
    htmlentities (4.3.4)
    http (1.0.4)
      addressable (~> 2.3)
      http-cookie (~> 1.0)
      http-form_data (~> 1.0.1)
      http_parser.rb (~> 0.6.0)
    http-cookie (1.0.3)
      domain_name (~> 0.5)
    http-form_data (1.0.1)
    http_parser.rb (0.6.0)
    i18n (0.7.0)
    jbuilder (2.6.0)
      activesupport (>= 3.0.0, < 5.1)
      multi_json (~> 1.2)
    jquery-rails (4.2.1)
      rails-dom-testing (>= 1, < 3)
      railties (>= 4.2.0)
      thor (>= 0.14, < 2.0)
    jquery-ui-rails (5.0.5)
      railties (>= 3.2.16)
    json (1.8.3)
    launchy (2.4.3)
      addressable (~> 2.3)
    listen (3.0.8)
      rb-fsevent (~> 0.9, >= 0.9.4)
      rb-inotify (~> 0.9, >= 0.9.7)
    lograge (0.4.1)
      actionpack (>= 4, < 5.1)
      activesupport (>= 4, < 5.1)
      railties (>= 4, < 5.1)
    loofah (2.0.3)
      nokogiri (>= 1.5.9)
    lumberjack (1.0.10)
    mail (2.6.4)
      mime-types (>= 1.16, < 4)
    memoizable (0.4.2)
      thread_safe (~> 0.3, >= 0.3.1)
    meta-tags (2.3.1)
      actionpack (>= 3.2.0, <= 5.1.0)
    method_source (0.8.2)
    mime-types (3.1)
      mime-types-data (~> 3.2015)
    mime-types-data (3.2016.0521)
    mini_portile2 (2.1.0)
    minitest (5.9.1)
    modernizr-rails (2.7.1)
    multi_json (1.12.1)
    multi_test (0.1.2)
    multipart-post (2.0.0)
    naught (1.1.0)
    nenv (0.3.0)
    net-scp (1.2.1)
      net-ssh (>= 2.6.5)
    net-ssh (3.2.0)
    nio4r (1.2.1)
    nokogiri (1.6.8)
      mini_portile2 (~> 2.1.0)
      pkg-config (~> 1.1.7)
    notiffany (0.1.1)
      nenv (~> 0.1)
      shellany (~> 0.0)
    orm_adapter (0.5.0)
    pg (0.19.0)
    pkg-config (1.1.7)
    polyamorous (1.3.1)
      activerecord (>= 3.0)
    premailer (1.8.7)
      css_parser (>= 1.4.5)
      htmlentities (>= 4.0.0)
    premailer-rails (1.9.4)
      actionmailer (>= 3, < 6)
      premailer (~> 1.7, >= 1.7.9)
    pry (0.10.4)
      coderay (~> 1.1.0)
      method_source (~> 0.8.1)
      slop (~> 3.4)
    puma (3.6.0)
    rack (2.0.1)
    rack-test (0.6.3)
      rack (>= 1.0)
    rails (5.0.0.1)
      actioncable (= 5.0.0.1)
      actionmailer (= 5.0.0.1)
      actionpack (= 5.0.0.1)
      actionview (= 5.0.0.1)
      activejob (= 5.0.0.1)
      activemodel (= 5.0.0.1)
      activerecord (= 5.0.0.1)
      activesupport (= 5.0.0.1)
      bundler (>= 1.3.0, < 2.0)
      railties (= 5.0.0.1)
      sprockets-rails (>= 2.0.0)
    rails-controller-testing (1.0.1)
      actionpack (~> 5.x)
      actionview (~> 5.x)
      activesupport (~> 5.x)
    rails-dom-testing (2.0.1)
      activesupport (>= 4.2.0, < 6.0)
      nokogiri (~> 1.6.0)
    rails-html-sanitizer (1.0.3)
      loofah (~> 2.0)
    rails-i18n (5.0.1)
      i18n (~> 0.7)
      railties (~> 5.0)
    railties (5.0.0.1)
      actionpack (= 5.0.0.1)
      activesupport (= 5.0.0.1)
      method_source
      rake (>= 0.8.7)
      thor (>= 0.18.1, < 2.0)
    rake (11.3.0)
    rb-fsevent (0.9.7)
    rb-inotify (0.9.7)
      ffi (>= 0.5.0)
    rdiscount (2.2.0.1)
    redis (3.3.1)
    request_store (1.3.1)
    responders (2.3.0)
      railties (>= 4.2.0, < 5.1)
    routing-filter (0.6.0)
      actionpack (>= 4.2, < 5.1)
      activesupport (>= 4.2, < 5.1)
    rspec (3.5.0)
      rspec-core (~> 3.5.0)
      rspec-expectations (~> 3.5.0)
      rspec-mocks (~> 3.5.0)
    rspec-core (3.5.3)
      rspec-support (~> 3.5.0)
    rspec-expectations (3.5.0)
      diff-lcs (>= 1.2.0, < 2.0)
      rspec-support (~> 3.5.0)
    rspec-mocks (3.5.0)
      diff-lcs (>= 1.2.0, < 2.0)
      rspec-support (~> 3.5.0)
    rspec-rails (3.5.2)
      actionpack (>= 3.0)
      activesupport (>= 3.0)
      railties (>= 3.0)
      rspec-core (~> 3.5.0)
      rspec-expectations (~> 3.5.0)
      rspec-mocks (~> 3.5.0)
      rspec-support (~> 3.5.0)
    rspec-support (3.5.0)
    ruby_parser (3.8.2)
      sexp_processor (~> 4.1)
    safe_yaml (1.0.4)
    sass (3.4.22)
    sass-rails (5.0.6)
      railties (>= 4.0.0, < 6)
      sass (~> 3.1)
      sprockets (>= 2.8, < 4.0)
      sprockets-rails (>= 2.0, < 4.0)
      tilt (>= 1.1, < 3)
    seo_meta (2.0.0.rc.1)
      railties (>= 3.0.0)
    sexp_processor (4.7.0)
    shellany (0.0.1)
    simple_form (3.3.1)
      actionpack (> 4, < 5.1)
      activemodel (> 4, < 5.1)
    simple_oauth (0.3.1)
    slop (3.6.0)
    speakingurl-rails (8.0.2)
      railties (>= 3.1)
    spring (1.7.2)
    spring-commands-cucumber (1.0.1)
      spring (>= 0.9.1)
    spring-commands-rspec (1.0.4)
      spring (>= 0.9.1)
    spring-watcher-listen (2.0.0)
      listen (>= 2.7, < 4.0)
      spring (~> 1.2)
    sprockets (3.7.0)
      concurrent-ruby (~> 1.0)
      rack (> 1, < 3)
    sprockets-rails (3.2.0)
      actionpack (>= 4.0)
      activesupport (>= 4.0)
      sprockets (>= 3.0.0)
    sshkit (1.11.3)
      net-scp (>= 1.1.2)
      net-ssh (>= 2.8.0)
    thor (0.19.1)
    thread_safe (0.3.5)
    tilt (2.0.5)
    truncate_html (0.9.3)
    twitter (5.16.0)
      addressable (~> 2.3)
      buftok (~> 0.2.0)
      equalizer (= 0.0.10)
      faraday (~> 0.9.0)
      http (~> 1.0)
      http_parser.rb (~> 0.6.0)
      json (~> 1.8)
      memoizable (~> 0.4.0)
      naught (~> 1.0)
      simple_oauth (~> 0.3.0)
    twitter-text (1.14.0)
      unf (~> 0.1.0)
    tzinfo (1.2.2)
      thread_safe (~> 0.1)
    uglifier (3.0.2)
      execjs (>= 0.3.0, < 3)
    unf (0.1.4)
      unf_ext
    unf_ext (0.0.7.2)
    vcr (3.0.3)
    warden (1.2.6)
      rack (>= 1.0)
    web-console (3.3.1)
      actionview (>= 5.0)
      activemodel (>= 5.0)
      debug_inspector
      railties (>= 5.0)
    webmock (2.1.0)
      addressable (>= 2.3.6)
      crack (>= 0.3.2)
      hashdiff
    websocket-driver (0.6.4)
      websocket-extensions (>= 0.1.0)
    websocket-extensions (0.1.2)
    xpath (2.0.0)
      nokogiri (~> 1.3)
    zilch-authorisation (0.0.1)

PLATFORMS
  ruby

DEPENDENCIES
  activeadmin!
  activemodel-serializers-xml!
  better_errors
  bh
  binding_of_caller
  bootstrap-sass
  byebug
  cancancan
  capistrano
  capistrano-bundler
  capistrano-figaro
  capistrano-rails
  capistrano-rvm
  capistrano3-delayed-job (~> 1.0)
  capistrano3-puma
  capybara
  ckeditor
  coffee-rails (~> 4.2)
  cucumber-rails
  daemons
  database_cleaner
  dateslices
  delayed_job_active_record
  devise (~> 4.2)
  draper!
  factory_girl_rails
  faker
  fakeredis
  figaro
  formtastic!
  friendly_id
  gibbon
  globalize!
  guard-cucumber
  guard-rspec (~> 4.6.4)
  haml-rails
  happy_seed
  inherited_resources!
  jbuilder (~> 2.5)
  jquery-rails
  kaminari!
  launchy
  listen (~> 3.0.5)
  lograge
  meta-tags
  modernizr-rails
  nokogiri
  pg
  premailer-rails
  puma (~> 3.0)
  rails (~> 5.0.0, >= 5.0.0.1)
  rails-controller-testing
  ransack!
  rdiscount
  refinerycms!
  refinerycms-i18n!
  responders (~> 2.0)
  rspec (~> 3.5.0)
  rspec-rails (~> 3.5.0)
  sass-rails (~> 5.0)
  simple_form
  spring
  spring-commands-cucumber
  spring-commands-rspec
  spring-watcher-listen (~> 2.0.0)
  twitter
  twitter-text
  tzinfo-data
  uglifier (>= 1.3.0)
  vcr
  web-console
  webmock
  will_paginate!

RUBY VERSION
   ruby 2.3.1p112

BUNDLED WITH
   1.13.1
augustosamame commented 8 years ago

This is the complete error trace just in case:

Sass::UnitConversionError - Incompatible units: 'px' and 'rem'.:
  sass (3.4.22) lib/sass/script/value/number.rb:447:in `coercion_factor'
  sass (3.4.22) lib/sass/script/value/number.rb:368:in `coerce'
  sass (3.4.22) lib/sass/script/value/number.rb:428:in `operate'
  sass (3.4.22) lib/sass/script/value/number.rb:95:in `plus'
  sass (3.4.22) lib/sass/script/tree/operation.rb:89:in `_perform'
  sass (3.4.22) lib/sass/script/tree/node.rb:58:in `perform'
  sass (3.4.22) lib/sass/script/tree/operation.rb:64:in `_perform'
  sass (3.4.22) lib/sass/script/tree/node.rb:58:in `perform'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:471:in `visit_variable'
  sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `block in visit'
  sass (3.4.22) lib/sass/stack.rb:79:in `block in with_base'
  sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
  sass (3.4.22) lib/sass/stack.rb:79:in `with_base'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `visit'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:328:in `block (2 levels) in visit_import'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:328:in `block in visit_import'
  sass (3.4.22) lib/sass/stack.rb:88:in `block in with_import'
  sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
  sass (3.4.22) lib/sass/stack.rb:88:in `with_import'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:325:in `visit_import'
  sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `block in visit'
  sass (3.4.22) lib/sass/stack.rb:79:in `block in with_base'
  sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
  sass (3.4.22) lib/sass/stack.rb:79:in `with_base'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `visit'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:328:in `block (2 levels) in visit_import'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:328:in `block in visit_import'
  sass (3.4.22) lib/sass/stack.rb:88:in `block in with_import'
  sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
  sass (3.4.22) lib/sass/stack.rb:88:in `with_import'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:325:in `visit_import'
  sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `block in visit'
  sass (3.4.22) lib/sass/stack.rb:79:in `block in with_base'
  sass (3.4.22) lib/sass/stack.rb:115:in `with_frame'
  sass (3.4.22) lib/sass/stack.rb:79:in `with_base'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:160:in `visit'
  sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `block in visit_children'
  sass (3.4.22) lib/sass/tree/visitors/base.rb:52:in `visit_children'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:169:in `block in visit_children'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:181:in `with_environment'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:168:in `visit_children'
  sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `block in visit'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:188:in `visit_root'
  sass (3.4.22) lib/sass/tree/visitors/base.rb:36:in `visit'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:159:in `visit'
  sass (3.4.22) lib/sass/tree/visitors/perform.rb:8:in `visit'
  sass (3.4.22) lib/sass/tree/root_node.rb:36:in `css_tree'
  sass (3.4.22) lib/sass/tree/root_node.rb:20:in `render'
  sass (3.4.22) lib/sass/engine.rb:281:in `render'
  sass-rails (5.0.6) lib/sass/rails/template.rb:47:in `evaluate'
  tilt (2.0.5) lib/tilt/template.rb:102:in `render'
  sprockets (3.7.0) lib/sprockets/legacy_tilt_processor.rb:25:in `call'
  sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
  sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
  sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
  sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
  sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
  sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
  sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
  sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
  sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
  sprockets (3.7.0) lib/sprockets/bundle.rb:23:in `block in call'
  sprockets (3.7.0) lib/sprockets/utils.rb:196:in `dfs'
  sprockets (3.7.0) lib/sprockets/bundle.rb:24:in `call'
  sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
  sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
  sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
  sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
  sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
  sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
  sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
  sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
  sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
  sprockets (3.7.0) lib/sprockets/base.rb:66:in `find_asset'
  sprockets (3.7.0) lib/sprockets/base.rb:73:in `find_all_linked_assets'
  sprockets (3.7.0) lib/sprockets/manifest.rb:134:in `block in find'
  sprockets (3.7.0) lib/sprockets/manifest.rb:133:in `find'
  sprockets-rails (3.2.0) lib/sprockets/railtie.rb:50:in `precompiled_assets'
  sprockets-rails (3.2.0) lib/sprockets/railtie.rb:35:in `asset_precompiled?'
  sprockets-rails (3.2.0) lib/sprockets/railtie.rb:251:in `block (3 levels) in <class:Railtie>'
  sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:359:in `precompiled?'
  sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:363:in `raise_unless_precompiled_asset'
  sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:348:in `find_debug_asset'
  sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:229:in `block in lookup_debug_asset'
  sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:242:in `block in resolve_asset'
  sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:241:in `resolve_asset'
  sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:228:in `lookup_debug_asset'
  sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:170:in `block in stylesheet_link_tag'
  sprockets-rails (3.2.0) lib/sprockets/rails/helper.rb:169:in `stylesheet_link_tag'
  app/views/layouts/splash.html.haml:17:in `_app_views_layouts_splash_html_haml___3451103605881349611_70105082903600'
  actionview (5.0.0.1) lib/action_view/template.rb:158:in `block in render'
  activesupport (5.0.0.1) lib/active_support/notifications.rb:166:in `instrument'
  actionview (5.0.0.1) lib/action_view/template.rb:348:in `instrument'
  actionview (5.0.0.1) lib/action_view/template.rb:156:in `render'
  actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
  actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
  actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:14:in `render'
  actionview (5.0.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
  actionview (5.0.0.1) lib/action_view/renderer/renderer.rb:23:in `render'
  actionview (5.0.0.1) lib/action_view/rendering.rb:103:in `_render_template'
  actionpack (5.0.0.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
  actionview (5.0.0.1) lib/action_view/rendering.rb:83:in `render_to_body'
  actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:52:in `render_to_body'
  actionpack (5.0.0.1) lib/action_controller/metal/renderers.rb:144:in `render_to_body'
  actionpack (5.0.0.1) lib/abstract_controller/rendering.rb:26:in `render'
  actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:36:in `render'
  actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
  activesupport (5.0.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
  /Users/Augusto/.rvm/rubies/ruby-2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
  activesupport (5.0.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
  actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
  actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
  activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
  actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:43:in `render'
  meta-tags (2.3.1) lib/meta_tags/controller_helper.rb:20:in `render'
   () Users/Augusto/.rvm/gems/ruby-2.3.1@desarrollo/bundler/gems/refinerycms-81a1c7927aba/pages/lib/refinery/pages/instance_methods.rb:21:in `render'
  actionpack (5.0.0.1) lib/action_controller/metal/implicit_render.rb:36:in `default_render'
  actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'
  actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
  actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
  actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
  actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
  activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
  activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
  activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
  activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
  activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
  activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
  actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
  actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
  actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
  activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
  activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
  activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
  actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
  actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
  activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
  actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
  actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
  actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
  actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
  actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
  actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
  actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
  actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
  actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
  dragonfly (1.0.12) lib/dragonfly/middleware.rb:14:in `call'
  dragonfly (1.0.12) lib/dragonfly/middleware.rb:14:in `call'
  warden (1.2.6) lib/warden/manager.rb:35:in `block in call'
  warden (1.2.6) lib/warden/manager.rb:34:in `call'
  rack (2.0.1) lib/rack/etag.rb:25:in `call'
  rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
  rack (2.0.1) lib/rack/head.rb:12:in `call'
  rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
  rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
  actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
  activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
  actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
  activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
  activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
  activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
  actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
  actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
  actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
  better_errors (2.1.1) lib/better_errors/middleware.rb:84:in `protected_app_call'
  better_errors (2.1.1) lib/better_errors/middleware.rb:79:in `better_errors_call'
  better_errors (2.1.1) lib/better_errors/middleware.rb:57:in `call'
  actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
  web-console (3.3.1) lib/web_console/middleware.rb:131:in `call_app'
  web-console (3.3.1) lib/web_console/middleware.rb:28:in `block in call'
  web-console (3.3.1) lib/web_console/middleware.rb:18:in `call'
  actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
  railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
  railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
  activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
  activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
  activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
  railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
  sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
  request_store (1.3.1) lib/request_store/middleware.rb:9:in `call'
  actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
  rack (2.0.1) lib/rack/method_override.rb:22:in `call'
  rack (2.0.1) lib/rack/runtime.rb:22:in `call'
  activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
  dragonfly (1.0.12) lib/dragonfly/cookie_monster.rb:9:in `call'
  actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
  actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
  rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
  railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
  puma (3.6.0) lib/puma/configuration.rb:225:in `call'
  puma (3.6.0) lib/puma/server.rb:578:in `handle_request'
  puma (3.6.0) lib/puma/server.rb:415:in `process_client'
  puma (3.6.0) lib/puma/server.rb:275:in `block in run'
  puma (3.6.0) lib/puma/thread_pool.rb:116:in `block in spawn_thread'
bricesanchez commented 8 years ago

Is it fixed for you? I've recently bump the boostrap gem version.

thebravoman commented 7 years ago

Still not fixed for me.

Sass::UnitConversionError: Incompatible units: 'px' and 'rem'. /home/kireto/.rvm/gems/ruby-2.2.2/gems/bootstrap-sass-3.3.7/assets/stylesheets/bootstrap/_variables.scss:214 /home/kireto/.rvm/gems/ruby-2.2.2/gems/bootstrap-sass-3.3.7/assets/stylesheets/_bootstrap.scss:8 /home/kireto/.rvm/gems/ruby-2.2.2/bundler/gems/refinerycms-62859a71686d/core/app/assets/stylesheets/refinery/refinery.scss:42 /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/script/value/number.rb:449:in coercion_factor' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/script/value/number.rb:370:incoerce' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/script/value/number.rb:430:in operate' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/script/value/number.rb:97:inplus' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/script/tree/operation.rb:89:in _perform' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/script/tree/node.rb:58:inperform' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/script/tree/operation.rb:64:in _perform' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/script/tree/node.rb:58:inperform' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:471:in visit_variable' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:36:invisit' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:160:in block in visit' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/stack.rb:79:inblock in with_base' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/stack.rb:115:in with_frame' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/stack.rb:79:inwith_base' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:160:in visit' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:328:inblock (2 levels) in visit_import' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:328:in map' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:328:inblock in visit_import' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/stack.rb:88:in block in with_import' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/stack.rb:115:inwith_frame' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/stack.rb:88:in with_import' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:325:invisit_import' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:36:in visit' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:160:inblock in visit' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/stack.rb:79:in block in with_base' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/stack.rb:115:inwith_frame' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/stack.rb:79:in with_base' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:160:invisit' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:328:in block (2 levels) in visit_import' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:328:inmap' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:328:in block in visit_import' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/stack.rb:88:inblock in with_import' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/stack.rb:115:in with_frame' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/stack.rb:88:inwith_import' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:325:in visit_import' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:36:invisit' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:160:in block in visit' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/stack.rb:79:inblock in with_base' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/stack.rb:115:in with_frame' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/stack.rb:79:inwith_base' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:160:in visit' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:52:inblock in visit_children' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:52:in map' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:52:invisit_children' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:169:in block in visit_children' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:181:inwith_environment' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:168:in visit_children' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:36:inblock in visit' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:188:in visit_root' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:36:invisit' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:159:in visit' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:8:invisit' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/root_node.rb:36:in css_tree' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/tree/root_node.rb:20:inrender' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-3.4.23/lib/sass/engine.rb:281:in render' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sass-rails-5.0.6/lib/sass/rails/template.rb:47:inevaluate' /home/kireto/.rvm/gems/ruby-2.2.2/gems/tilt-2.0.5/lib/tilt/template.rb:102:in render' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/legacy_tilt_processor.rb:25:incall' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/processor_utils.rb:75:in call_processor' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/processor_utils.rb:57:inblock in call_processors' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/processor_utils.rb:56:in reverse_each' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/processor_utils.rb:56:incall_processors' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/loader.rb:134:in load_from_unloaded' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/loader.rb:60:inblock in load' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/loader.rb:317:in fetch_asset_from_dependency_cache' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/loader.rb:44:inload' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/cached_environment.rb:20:in block in initialize' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/cached_environment.rb:47:inyield' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/cached_environment.rb:47:in load' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/bundle.rb:23:inblock in call' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/utils.rb:200:in dfs' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/bundle.rb:24:incall' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/processor_utils.rb:75:in call_processor' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/processor_utils.rb:57:inblock in call_processors' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/processor_utils.rb:56:in reverse_each' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/processor_utils.rb:56:incall_processors' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/loader.rb:134:in load_from_unloaded' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/loader.rb:60:inblock in load' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/loader.rb:317:in fetch_asset_from_dependency_cache' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/loader.rb:44:inload' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/cached_environment.rb:20:in block in initialize' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/cached_environment.rb:47:inyield' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/cached_environment.rb:47:in load' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/base.rb:66:infind_asset' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/base.rb:73:in find_all_linked_assets' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/manifest.rb:134:inblock in find' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/manifest.rb:133:in each' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/manifest.rb:133:infind' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/sprockets/manifest.rb:185:in compile' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-rails-3.2.0/lib/sprockets/rails/task.rb:68:inblock (3 levels) in define' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-3.7.1/lib/rake/sprocketstask.rb:147:in with_logger' /home/kireto/.rvm/gems/ruby-2.2.2/gems/sprockets-rails-3.2.0/lib/sprockets/rails/task.rb:67:inblock (2 levels) in define' /home/kireto/.rvm/gems/ruby-2.2.2/gems/rake-12.0.0/exe/rake:27:in <top (required)>' /home/kireto/.rvm/gems/ruby-2.2.2/bin/ruby_executable_hooks:15:ineval' /home/kireto/.rvm/gems/ruby-2.2.2/bin/ruby_executable_hooks:15:in `

' Tasks: TOP => assets:precompile (See full trace by running task with --trace)

thebravoman commented 7 years ago

Created https://github.com/twbs/bootstrap-sass/issues/1102 also

thebravoman commented 7 years ago

@bricesanchez any suggestions here? Still not working.

thebravoman commented 7 years ago

@augustosamame have you managed to workaround it?

thebravoman commented 7 years ago

@bricesanchez @augustosamame I have created a repository for reproducing it with only the refinery gems. Just clone bundle install and rails s

https://github.com/thebravoman/refiner_issue_3257_reproduced

augustosamame commented 7 years ago

@thebravoman Nope. I gave up and create my own blog engine. Great learning experience... If this gets fixed I might give Refinery a chance again though

thebravoman commented 7 years ago

The problem seems to be in core/app/assets/stylesheets/refinery/refinery.scss

I've forked and change the file by removing everything that is New Glass Related.

The change is at: https://github.com/thebravoman/refinerycms/commit/1f4ec66f94f1baf7b343ed9221dc7090b1e94309

layerssss commented 7 years ago

In the "glass" folder, it uses _global-bootstrap-override.scss a lot of rems. Where in bootstrap-sass (https://github.com/twbs/bootstrap-sass/blob/master/assets/stylesheets/bootstrap/_variables.scss), it uses px for almost all sizing. A possible patch would be changing them into px to make bootstrap happy 😸 . But I don't know how the design was looking like, was there a sass version used to be working with the new "glass" design? @bricesanchez

sjoulbak commented 7 years ago

This should be fixed now, because #3297 is merged. The glass UI was using Bootstrap 4, which wants to use only one of the two