You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Ignore RubyMine config directory
* Initial setup of GitHb Actions
* Run tests for rails 5 and rails 6
* Run tests for rails 5 and rails 6 + run lint job
* GH Actions: Correct gemfile names
* GH Actions: Only run the test task in the matrix. rubocop is run in the separate Lint job.
* GH Actions: Separate the Danger run for better output
* GH Actions: Run rubocop directly instead of as a Rake task. Allow autocorrectable offences.
* GH Actions: Only run Danger for pull requests
* GH Actions: Try to calm RuboCop
* Use the default Gemfile to pick up rubocop.yml
* GH Actions: Ignore the vendor directory for rubocop
* Forward the options as keyword arguments
* Test Rails 6.1 and skip Rails 5.2 + Ruby 3.0
* Fix Rails 6.1 tests on master (bootstrap-ruby#586)
* Fix tests for Rails 6.1
* Fix Rubocop offenses
bootstrap_form.gemspec:27:29: C: Gemspec/RequiredRubyVersion: required_ruby_version (2.5, declared in bootstrap_form.gemspec) and TargetRubyVersion (2.7, which may be specified in .rubocop.yml) should be equal.
s.required_ruby_version = ">= 2.5"
^^^^^^^^
lib/bootstrap_form/form_group.rb:14:30: C: [Correctable] Layout/ArgumentAlignment: Align the arguments of a method call if they span more than one line. (https://rubystyle.guide#no-double-indent)
:input_group_class, :label_col, :control_col,
^^^^^^^^^^^^^^^^^^
lib/bootstrap_form/form_group.rb:15:30: C: [Correctable] Layout/ArgumentAlignment: Align the arguments of a method call if they span more than one line. (https://rubystyle.guide#no-double-indent)
:add_control_col_class, :layout, :prepend)) do
^^^^^^^^^^^^^^^^^^^^^^
test/bootstrap_form_test.rb:123:103: C: [Correctable] Style/IfUnlessModifier: Modifier form of if makes the line too long. (https://rubystyle.guide#if-as-a-modifier)
<form accept-charset="UTF-8" action="/users" method="post" role="form" #{'data-remote="true"' if ::Rails::VERSION::STRING < "6.1"}>
^^
test/bootstrap_form_test.rb:123:133: C: [Correctable] Style/StringLiteralsInInterpolation: Prefer single-quoted strings inside interpolations.
<form accept-charset="UTF-8" action="/users" method="post" role="form" #{'data-remote="true"' if ::Rails::VERSION::STRING < "6.1"}>
^^^^^
test/bootstrap_rich_text_area_test.rb:23:54: C: [Correctable] Style/StringLiteralsInInterpolation: Prefer single-quoted strings inside interpolations.
"http://test.host/rails/active_storage/blobs/#{"redirect/" if ::Rails::VERSION::STRING >= "6.1"}:signed_id/:filename"
^^^^^^^^^^^
test/bootstrap_rich_text_area_test.rb:23:97: C: [Correctable] Style/StringLiteralsInInterpolation: Prefer single-quoted strings inside interpolations.
"http://test.host/rails/active_storage/blobs/#{"redirect/" if ::Rails::VERSION::STRING >= "6.1"}:signed_id/:filename"
^^^^^
* Include Rails 6.1 in Travis tests + update Ruby versions
* Update CHANGELOG
* Rails Edge requires Ruby 2.7+
* Remove rubocop_todo and fix Rubocop offenses
* Replace strip_heredoc with <<~ (bootstrap-ruby#587)
* Replace strip_heredoc with <<~
Also fix newly detected Rubocop offenses on indentation
* Update CHANGELOG
* Simplify Dockerfile and add documentation (bootstrap-ruby#588)
* Simplify Dockerfile and add documentation
* A few more additions to .gitignore
* Ignore gems placed when using Dockerfile (bootstrap-ruby#590)
* Fix formatting and heredoc
* Fix bad merge
Co-authored-by: Uwe Kubosch <uwe@kubosch.no>
Co-authored-by: Uwe Kubosch <donv@users.noreply.github.com>
Co-authored-by: Thimo Jansen <thimo@defrog.nl>
@@ -109,31 +109,6 @@ You can run tests in the container as normal, with `rake test`.
109
109
110
110
(Some of that command line is need for Linux hosts, to run the container as the current user.)
111
111
112
-
### The Demo App
113
-
114
-
There is a demo app in this repository. It shows some of the features of `bootstrap_form`, and provides a base on which to build ad-hoc testing, if you need it.
115
-
116
-
To run the demo app, set up the database and run the server:
To use other supported versions of Rails, change the `export BUNDLER_GEMFILE...` line to another gem file.
136
-
137
112
## Documentation Contributions
138
113
139
114
Contributions to documentation are always welcome. Even fixing one typo improves the quality of `bootstrap_form`. To make a documentation contribution, follow steps 1-3 of Code Contributions, then make the documentation changes, then make the pull request (step 6 of Code Contributions).
0 commit comments