Skip to content

Commit 63dae66

Browse files
authored
Merge pull request #102 from bastelfreak/gcg
GCG: move it to dedicated gem group
2 parents e307a27 + 97e13bb commit 63dae66

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Gemfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ group(:development, optional: true) do
6868
end
6969

7070
group(:packaging) do
71-
gem 'github_changelog_generator'
7271
gem 'packaging', *location_for(ENV['PACKAGING_LOCATION'] || '~> 0.99')
7372
end
7473

@@ -79,6 +78,11 @@ group(:documentation, optional: true) do
7978
gem 'pandoc-ruby', require: false, platforms: [:ruby]
8079
end
8180

81+
group :release, optional: true do
82+
gem 'faraday-retry', require: false
83+
gem 'github_changelog_generator', require: false
84+
end
85+
8286
if File.exist? "#{__FILE__}.local"
8387
eval(File.read("#{__FILE__}.local"), binding)
8488
end

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,6 @@ begin
165165
end
166166
rescue LoadError
167167
task :changelog do
168-
abort("Run `bundle install --with packaging` to install the `github_changelog_generator` gem.")
168+
abort("Run `bundle install --with release` to install the `github_changelog_generator` gem.")
169169
end
170170
end

0 commit comments

Comments
 (0)