Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
Move colorize from Gemfile to gemspec (#68)
Browse files Browse the repository at this point in the history
* Move colorize from Gemfile to gemspec

* Update to 0.1.19
  • Loading branch information
thomasrockhu authored Jul 7, 2020
1 parent cded239 commit 10b2ef1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### `0.1.19`

- fix colorize

### `0.1.18`

- refactor and move to use v2 endpoint
Expand Down
2 changes: 0 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@

source 'https://rubygems.org'
gemspec

gem "colorize", "~> 0.8.1"
7 changes: 4 additions & 3 deletions codecov.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = 'codecov'
s.version = '0.1.18'
s.version = '0.1.19'
s.platform = Gem::Platform::RUBY
s.authors = ['codecov']
s.email = ['[email protected]']
Expand All @@ -14,8 +14,9 @@ Gem::Specification.new do |s|
s.test_files = ['test/test_codecov.rb']
s.require_paths = ['lib']

s.add_dependency "json"
s.add_dependency "simplecov"
s.add_dependency 'colorize'
s.add_dependency 'json'
s.add_dependency 'simplecov'

s.add_development_dependency 'minitest'
s.add_development_dependency 'mocha'
Expand Down
2 changes: 1 addition & 1 deletion lib/codecov.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
require 'zlib'

class SimpleCov::Formatter::Codecov
VERSION = '0.1.18'
VERSION = '0.1.19'

### CIs
RECOGNIZED_CIS = [
Expand Down

0 comments on commit 10b2ef1

Please sign in to comment.