File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,6 @@ group(:development, optional: true) do
6868end
6969
7070group ( :packaging ) do
71- gem 'github_changelog_generator'
7271 gem 'packaging' , *location_for ( ENV [ 'PACKAGING_LOCATION' ] || '~> 0.99' )
7372end
7473
@@ -79,6 +78,11 @@ group(:documentation, optional: true) do
7978 gem 'pandoc-ruby' , require : false , platforms : [ :ruby ]
8079end
8180
81+ group :release , optional : true do
82+ gem 'faraday-retry' , require : false
83+ gem 'github_changelog_generator' , require : false
84+ end
85+
8286if File . exist? "#{ __FILE__ } .local"
8387 eval ( File . read ( "#{ __FILE__ } .local" ) , binding )
8488end
Original file line number Diff line number Diff line change @@ -165,6 +165,6 @@ begin
165165 end
166166rescue 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
170170end
You can’t perform that action at this time.
0 commit comments