lib/inochi/templates/HACKING.rbs in inochi-5.1.0 vs lib/inochi/templates/HACKING.rbs in inochi-6.0.0
- old
+ new
@@ -1,13 +1,13 @@
== HACKING
=== Prerequisites
-Install Ruby libraries necessary for development:
+Install Ruby libraries necessary for development using <<Bundler>>:
------------------------------------------------------------------------------
-gem install #{package_name} --development
+bundle install
------------------------------------------------------------------------------
// TODO: list additional tools and libraries needed to develop your project
=== Infrastructure
@@ -71,19 +71,19 @@
------------------------------------------------------------------------------
=== Running tests
Simply execute the included test runner, which sets up Ruby's `$LOAD_PATH` for
-testing, loads the `test/helper.rb` file, and then evaluates all
+testing, loads the included `test/test_helper.rb` file, and then evaluates all
`test/**/*_test.rb` files:
------------------------------------------------------------------------------
ruby test/runner
------------------------------------------------------------------------------
Its exit status will indicate whether all tests have passed. It may also
print additional pass/fail information depending on the testing library used
-in the `test/helper.rb` file.
+in the `test/test_helper.rb` file.
=== Contributing
// TODO: explain how someone can contribute their changes to your repository