Skip to content
This repository has been archived by the owner on Sep 1, 2022. It is now read-only.

Releases: makenew/ruby-gem

v2.0.1

17 Feb 19:55
Compare
Choose a tag to compare
  • Add Requirements section to README.
  • Move sudo up in .travis.yml.

v2.0.0

20 Jan 23:34
Compare
Choose a tag to compare
  • Quickly bootstrap your new project with ./makenew.sh.

Updating exiting projects

This version introduces makenew.sh which automatically bootstraps new projects.
Most of the boilerplate which is normally replaced when making a new project has thus been changed.

This will generate a lot of merge conflicts for exiting projects updating to this version, however all of these can be safely ignored.

Recommend update procedure

  1. Update normally to ruby-gem-v1.4.0 by following the instructions in the README (merge in the ruby-gem-v1.4.0 tag instead of upstream/master).

  2. Merge in this version, but only use your file versions. For example,

    $ git fetch upstream
    $ git merge --no-commit ruby-gem-v2.0.0
    $ git reset .
    $ git checkout --ours .
    $ git clean -fdx
    $ git commit
    
  3. Update to the latest release normally.

Alternative update option

Depending on how complicated your merge conflicts are, this manual way may be easier.

  1. Checkout this version (or the latest one) into a separate branch, say makenew.
  2. Run ./makenew.sh and enter in the values as if you were recreating your work from scratch. Commit the results.
  3. Create a new branch from your master and merge the makenew branch (do not create a merge commit yet). Compare the makenew branch to your master branch using git diff and whatever git workflow makes sense. One option is to git reset and git checkout, then update each file one at a time until you are satisfied with the merge.

v1.4.0

20 Jan 23:33
Compare
Choose a tag to compare
  • Only test against Ruby 2 on Travis CI.
  • Remove rake all and rake travis and add rake test.
  • Add .freeze to VERSION.
  • Reorder development dependencies in gemspec.
  • Update .gitignore.
  • Update year to 2016.
  • Improve README and update badges.
  • Update Change Log to follow keepachangelog.com.

ruby-gem-v1.3.0

08 May 04:06
Compare
Choose a tag to compare
  • Add link to Omniref.
  • Update badges.
  • Use three backticks for code blocks in README.
  • Update Ruby versions for Travis CI.
  • Switch from Coveralls to Codecov.

v1.2.0

14 Feb 02:54
Compare
Choose a tag to compare
  • Add EditorConfig.
  • Use more liberal development dependency versions.

v1.0.1

05 Jan 04:06
Compare
Choose a tag to compare
  • Update all development dependencies.
  • Optimize and update Travis CI.

v1.0.0

19 Jun 03:22
Compare
Choose a tag to compare
  • Initial release.