diff --git a/README.md b/README.md index 7d09c7d..020a273 100644 --- a/README.md +++ b/README.md @@ -165,6 +165,20 @@ Create a feature branch (using git-flow) and submit as a pull request. Everyone interacting in Abraham's codebase, issue tracker, etc. is expected to follow the [Contributor Covenent Code of Conduct](https://www.contributor-covenant.org/version/1/4/code-of-conduct). +### Getting started with the source code + +Abraham uses `rvm` with a gemset to ensure the appropriate version of Ruby and its dependencies. Make sure that's installed before you get started. + +``` +~ git clone git@github.com:actmd/abraham.git +Cloning into 'abraham'... +~ cd abraham +ruby-2.5.3 - #gemset created /Users/jon/.rvm/gems/ruby-2.5.3@abraham +ruby-2.5.3 - #generating abraham wrappers - please wait +~ bundle install +~ yarn install +``` + ### Testing #### Testing locally diff --git a/test/dummy/app/assets/stylesheets/application.css b/test/dummy/app/assets/stylesheets/application.scss similarity index 100% rename from test/dummy/app/assets/stylesheets/application.css rename to test/dummy/app/assets/stylesheets/application.scss diff --git a/test/dummy/config/application.rb b/test/dummy/config/application.rb index 57f3631..9383477 100644 --- a/test/dummy/config/application.rb +++ b/test/dummy/config/application.rb @@ -13,6 +13,9 @@ module Dummy # Application configuration should go into files in config/initializers # -- all .rb files in that directory are automatically loaded. - config.active_record.sqlite3.represent_boolean_as_integer = true + # This configuration is no longer necessary with Rails 6.1+ + unless Rails::VERSION::MAJOR >= 6 && Rails::VERSION::MINOR >= 1 + config.active_record.sqlite3.represent_boolean_as_integer = true + end end end