Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small gemspec fixes #2116

Merged
merged 3 commits into from
Jul 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .build_ignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.github
.github/
.gitignore
.project
.rubocop.yml
Expand Down
1 change: 1 addition & 0 deletions lib/new_relic/cli/command.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ def self.run
extra = []
options = ARGV.options do |opts|
script_name = File.basename($0)
# TODO: MAJOR VERSION - remove newrelic_cmd, deprecated since version 2.13
if /newrelic_cmd$/.match?(script_name)
$stdout.puts "warning: the 'newrelic_cmd' script has been renamed 'newrelic'"
script_name = 'newrelic'
Expand Down
3 changes: 2 additions & 1 deletion newrelic_rpm.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Gem::Specification.new do |s|
https://github.com/newrelic/newrelic-ruby-agent/
EOS
s.email = '[email protected]'
# TODO: MAJOR VERSION - remove newrelic_cmd, deprecated since version 2.13
s.executables = %w[newrelic_cmd newrelic nrdebug]
s.extra_rdoc_files = [
'CHANGELOG.md',
Expand All @@ -44,7 +45,7 @@ Gem::Specification.new do |s|
file_list << build_file_path if File.exist?(build_file_path)
s.files = file_list

s.homepage = 'https://github.com/newrelic/rpm'
s.homepage = 'https://github.com/newrelic/newrelic-ruby-agent'
s.require_paths = ['lib']
s.summary = 'New Relic Ruby Agent'
s.add_development_dependency 'bundler'
Expand Down