Skip to content

Commit

Permalink
Merge pull request s3krit#7 from chevdor/wk-no-pry
Browse files Browse the repository at this point in the history
Remove pry
  • Loading branch information
s3krit authored Nov 15, 2021
2 parents 8414ef7 + 0b0fc4d commit 81e8a96
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }

gem 'octokit', '~> 4'

gem 'pry', '~> 0.13.1'
gem 'pry', '~> 0.13.1', group: :dev

gem 'git_diff_parser', '~> 3'

Expand Down
8 changes: 5 additions & 3 deletions bin/changelogerator
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ logger.level = Logger::WARN
logger.debug('Starting')

OptionParser.new do |opts|
opts.banner = "Changelogerator helps generate a template friendly context made of the changes
between 2 references on your Github project.
opts.banner = 'Changelogerator
This utility helps generate a template friendly context made
of the changes between 2 references on your Github project.
Usage:
changelogerator <repo> [options]"
changelogerator <repo> [options]'

opts.on('-v', '--[no-]verbose', 'Run verbosely') do |v|
@options[:verbose] = v
Expand Down
2 changes: 0 additions & 2 deletions lib/changelogerator.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# frozen_string_literal: true

require 'pry'

# A small wrapper class for more easily generating and manipulating Github/Git
# changelogs. Given two different git objects (sha, tag, whatever), it will
# find all PRs that made up that diff and store them as a list. Also allows
Expand Down

0 comments on commit 81e8a96

Please sign in to comment.