All notable changes to this project will be documented in this file.
0.6.1 - 2017-09-22
- Example code for the
working
method when generating a new Agent gem
- Use
.env.example
file from Huginn when running the specs and no custom.env
file is found, allows to run the specs as long as all Huginn dependencies are installed
0.6.0 - 2017-04-12
- Run the specs without redirecting STDOUT and STDIN which allows the usage of debuggers like
pry
(@dsander)
- Agent gem development dependencies are not available when running the specs (@mandrews)
- Nested spec files are not loaded when running the specs (@mandrews)
0.5.0 - 2017-02-04
- Generate Agent gem code coverage report with
COVERAGE=true rake spec
and allow to report to coveralls (@stesie)
-
Generator: Do not include
spec/huginn
files in build gem (@stesie)The
gemspec
of existing gems needs to be updated manually:- spec.test_files = Dir['spec/**/*.rb'] + spec.test_files = Dir['spec/**/*.rb'].reject { |f| f[%r{^spec/huginn}] }
-
Generator: Do not run Agent specs on ruby
2.1
(@stesie)The
.travis.yml
of existing gems needs to be updated manually:rvm: -- 2.1 -- 2.2 +- 2.2.2 - 2.3.0
0.4.3 - 2016-09-07
- Exclude Huginn spec files when running Agent gem specs (@dsander)
0.4.2 - 2016-08-10
- Run all Agent spec files in the spec directory recursively (@dsander)
0.4.1 - 2016-06-23
-
Generator: Do not lock the
huginn_agent
gem version (@dsander)The
gemspec
of existing gems needs to be updated manually:- spec.add_runtime_dependency "huginn_agent", '~> 0.2' + spec.add_runtime_dependency "huginn_agent"
0.4.0 - 2016-06-20
- First official and working release