Skip to content

Commit

Permalink
Include missing files (#47)
Browse files Browse the repository at this point in the history
* include missing files in the gem release

* move to version 6.03
  • Loading branch information
nic-lan authored Apr 1, 2021
1 parent 613fb4f commit 5a0c694
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* 6.0.3
Include missing gem files in the release

* 6.0.2
Fix broken gemspec

Expand Down
5 changes: 3 additions & 2 deletions bing-ads-reporting.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ Gem::Specification.new do |gem|
gem.summary = 'Allows easily pull reports from Bing Ads'
gem.homepage = 'https://github.com/forward3d/bing-ads-reporting'

gem.files = ['lib/bing_ads_reporting.rb',
'lib/bing-ads-reporting/version.rb']
gem.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|bin)/}) }
end

gem.executables = [] # gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = [] # gem.files.grep(%r{^(test|spec|features)/})
Expand Down
2 changes: 1 addition & 1 deletion lib/bing-ads-reporting/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module BingAdsReporting
VERSION = '6.0.2'.freeze
VERSION = '6.0.3'.freeze
end

0 comments on commit 5a0c694

Please sign in to comment.