-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Ignore Gemfile.lock from Git We don't really want to lock folks working on this gem into exact versions of the various dependencies. Especially for certain dependencies with native extensions, which might not install on different platforms. This also organizes the .gitignore. * Exclude dev-specific files from packed Gem We can keep the size of the packaged Gem smaller by no including specs, binstubs, git/github config, and other development-time-only files. * Upgrade Rake (b/c why not?) * Fix some spelling, grammar, and formatting * Test newer Rubies and Ubuntus too! * fixup ubuntu * Run tests on a new PR * Bring back Gemfile.lock and use latest Ruby 2.6 Even though Ruby 2.6 (and 2.7) are EoL'd, they are still supported by this Gem. So let's use that oldest one locally too. Also, it appears it is now recommended to include the Gemfile.lock in Git for Gems. The guidance from Bundler use to be _NOT_ to include the .lock file. But, time moves forward and things change. I'll adapt and learn too! 😅 https://bundler.io/guides/faq.html#using-gemfiles-inside-gems * Appease Rubocop 👮
- Loading branch information
1 parent
30537c8
commit 6563528
Showing
9 changed files
with
95 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,22 @@ | ||
/.bundle/ | ||
# Ignore all logfiles and tempfiles | ||
/tmp/ | ||
/tags | ||
|
||
# Environment normalisation | ||
/.rspec-local | ||
/.yardoc | ||
/_yardoc/ | ||
/coverage/ | ||
/doc/ | ||
/_yardoc | ||
/lib/bundler/man/ | ||
|
||
# Gem packaging stuff | ||
/*.gem | ||
/pkg/ | ||
/spec/reports/ | ||
/tmp/ | ||
|
||
# rspec failure tracking | ||
# Dependencies and such | ||
/.bundle | ||
/.ruby-version | ||
|
||
# Spec housekeeping | ||
/coverage/ | ||
/spec/reports | ||
.rspec_status |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ruby 2.6.6 | ||
ruby 2.6.10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters