Skip to content

Commit

Permalink
Merge pull request #46 from tagliala/chore/introduce-rubocop-packaging
Browse files Browse the repository at this point in the history
Chore/introduce rubocop packaging
  • Loading branch information
tagliala authored Jul 22, 2023
2 parents 885c270 + 6456b36 commit 5f959d9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
require:
- rubocop-packaging
- rubocop-performance
- rubocop-rake
- rubocop-rspec
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.28.0 / 2023-07-22

* [ENHANCEMENT] Reduce gem size

## 0.27.0 / 2023-02-14

* [FEATURE] Add Buildkite CI support [#43](https://github.com/tagliala/coveralls-ruby-reborn/pull/43)
Expand Down
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ source 'https://rubygems.org'
gemspec

platforms :jruby do
gem 'jruby-openssl', '~> 0.14.1'
gem 'jruby-openssl', '~> 0.14.2'
end

gem 'bundler', '~> 2.0'
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.12'
gem 'rubocop', '~> 1.50'
gem 'rubocop-packaging', '~> 0.5.2'
gem 'rubocop-performance', '~> 1.17'
gem 'rubocop-rake', '~> 0.6.0'
gem 'rubocop-rspec', '~> 2.20'
Expand Down
2 changes: 1 addition & 1 deletion coveralls-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |gem|
gem.homepage = 'https://coveralls.io'
gem.license = 'MIT'

gem.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
gem.files = Dir.glob('{CHANGELOG.md,LICENSE,README.md,lib/**/*.rb,bin/coveralls}', File::FNM_DOTMATCH)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.name = 'coveralls_reborn'
gem.require_paths = ['lib']
Expand Down
2 changes: 1 addition & 1 deletion lib/coveralls/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Coveralls
VERSION = '0.27.0'
VERSION = '0.28.0'
end

0 comments on commit 5f959d9

Please sign in to comment.