Remove changelog
This commit is contained in:
parent
33cb964225
commit
df07cc6e21
3 changed files with 6 additions and 68 deletions
49
CHANGELOG.md
49
CHANGELOG.md
|
@ -1,49 +0,0 @@
|
|||
# Change Log
|
||||
|
||||
## [v0.4.0](https://github.com/toxon/lita-tox/tree/v0.4.0) (2017-07-20)
|
||||
[Full Changelog](https://github.com/toxon/lita-tox/compare/v0.3.0...v0.4.0)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Transfer repo [\#27](https://github.com/toxon/lita-tox/pull/27) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
- Use newer Lita version [\#26](https://github.com/toxon/lita-tox/pull/26) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
- Use external Tox gem [\#25](https://github.com/toxon/lita-tox/pull/25) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
- Fix CI build [\#24](https://github.com/toxon/lita-tox/pull/24) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
- Change license from MIT to GPL-3.0 [\#23](https://github.com/toxon/lita-tox/pull/23) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
- Remove group chats [\#22](https://github.com/toxon/lita-tox/pull/22) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
|
||||
## [v0.3.0](https://github.com/toxon/lita-tox/tree/v0.3.0) (2015-09-15)
|
||||
[Full Changelog](https://github.com/toxon/lita-tox/compare/v0.2.0...v0.3.0)
|
||||
|
||||
**Closed issues:**
|
||||
|
||||
- Setup Tox user nickname and status [\#21](https://github.com/toxon/lita-tox/issues/21)
|
||||
|
||||
## [v0.2.0](https://github.com/toxon/lita-tox/tree/v0.2.0) (2015-09-14)
|
||||
[Full Changelog](https://github.com/toxon/lita-tox/compare/v0.1.0...v0.2.0)
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Implement group chats [\#20](https://github.com/toxon/lita-tox/pull/20) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
- Save Tox state [\#19](https://github.com/toxon/lita-tox/pull/19) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
|
||||
## [v0.1.0](https://github.com/toxon/lita-tox/tree/v0.1.0) (2015-09-13)
|
||||
**Merged pull requests:**
|
||||
|
||||
- Add instructions [\#13](https://github.com/toxon/lita-tox/pull/13) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
- Basic implementation [\#12](https://github.com/toxon/lita-tox/pull/12) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
- Basic "tox" extension implementation [\#11](https://github.com/toxon/lita-tox/pull/11) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
- Add code documentation [\#10](https://github.com/toxon/lita-tox/pull/10) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
- Initialize Lita adapter [\#9](https://github.com/toxon/lita-tox/pull/9) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
- Add changelog generator [\#8](https://github.com/toxon/lita-tox/pull/8) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
- Use YARD [\#7](https://github.com/toxon/lita-tox/pull/7) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
- Configure Coveralls [\#6](https://github.com/toxon/lita-tox/pull/6) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
- Configure Travis CI [\#5](https://github.com/toxon/lita-tox/pull/5) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
- Add README [\#4](https://github.com/toxon/lita-tox/pull/4) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
- Configure testing [\#3](https://github.com/toxon/lita-tox/pull/3) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
- Configure linting [\#2](https://github.com/toxon/lita-tox/pull/2) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
- Initialize gem [\#1](https://github.com/toxon/lita-tox/pull/1) ([braiden-vasco](https://github.com/braiden-vasco))
|
||||
|
||||
|
||||
|
||||
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
11
Rakefile
11
Rakefile
|
@ -2,11 +2,6 @@
|
|||
|
||||
require 'bundler/gem_tasks'
|
||||
|
||||
GEMSPEC = Gem::Specification.load 'lita-tox.gemspec'
|
||||
|
||||
github_user, github_project =
|
||||
GEMSPEC.homepage.scan(%r{^https://github\.com/([^/]+)/([^/]+)/?$})[0]
|
||||
|
||||
task default: %i[spec lint]
|
||||
|
||||
task lint: :rubocop
|
||||
|
@ -26,9 +21,3 @@ begin
|
|||
rescue LoadError
|
||||
nil
|
||||
end
|
||||
|
||||
desc 'Generate changelog'
|
||||
task :changelog, [:token] do |_t, args|
|
||||
raise 'please provide access token' unless args[:token]
|
||||
sh "github_changelog_generator -u #{github_user} -p #{github_project} -t #{args[:token]}"
|
||||
end
|
||||
|
|
|
@ -33,8 +33,6 @@ Gem::Specification.new do |spec|
|
|||
spec.add_development_dependency 'rubocop', '~> 0.49.1'
|
||||
spec.add_development_dependency 'rspec', '~> 3.3'
|
||||
spec.add_development_dependency 'simplecov', '~> 0.10'
|
||||
spec.add_development_dependency 'redcarpet', '~> 3.3'
|
||||
spec.add_development_dependency 'github_changelog_generator', '~> 1.6'
|
||||
spec.add_development_dependency 'pry', '~> 0.10'
|
||||
|
||||
spec.add_runtime_dependency 'lita', '~> 4.7'
|
||||
|
|
Reference in a new issue