diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29..6fd720f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# CHANGELOG + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [0.1.0] - Unreleased + +### Added + +- Initial extraction \ No newline at end of file diff --git a/Gemfile b/Gemfile index f4f459f..27771ad 100644 --- a/Gemfile +++ b/Gemfile @@ -8,5 +8,6 @@ gem "rake" gem "rspec" gem "debug" +gem "reissue" gem "simplecov" gem "standard" diff --git a/Gemfile.lock b/Gemfile.lock index 32e777c..190e5a3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - SOF-cycle (0.1.0) + sof-cycle (0.1.0) activesupport (>= 6.0) forwardable @@ -53,6 +53,8 @@ GEM rdoc (6.7.0) psych (>= 4.0.0) regexp_parser (2.9.2) + reissue (0.2.0) + rake reline (0.5.9) io-console (~> 0.5) rexml (3.3.1) @@ -116,11 +118,12 @@ PLATFORMS ruby DEPENDENCIES - SOF-cycle! debug rake + reissue rspec simplecov + sof-cycle! standard BUNDLED WITH diff --git a/Rakefile b/Rakefile index 8d9b179..9cc1771 100644 --- a/Rakefile +++ b/Rakefile @@ -9,3 +9,9 @@ RSpec::Core::RakeTask.new(:spec) do |t| end task default: :spec + +require "reissue/gem" + +Reissue::Task.create do |task| + task.version_file = "lib/sof/cycle/version.rb" +end \ No newline at end of file