Sha256: 3145a9d3620393f448c5b2f08accf5be3f6a93be58e9935b5fa35988b289f860

Contents?: true

Size: 1.07 KB

Versions: 12

Compression:

Stored size: 1.07 KB

Contents

require 'rubygems'
require 'rake/gempackagetask'
require 'lib/new_relic/version.rb'

GEM_NAME = "newrelic_rpm"
GEM_VERSION = NewRelic::VERSION::STRING
AUTHOR = "Bill Kayser"
EMAIL = "bkayser@newrelic.com"
HOMEPAGE = "http://www.newrelic.com"
SUMMARY = "New Relic Ruby Performance Monitoring Agent"

spec = Gem::Specification.new do |s|
  s.rubyforge_project = 'newrelic'
  s.name = GEM_NAME
  s.version = GEM_VERSION
  s.platform = Gem::Platform::RUBY
  s.has_rdoc = true
  s.extra_rdoc_files = ["README", "LICENSE"]
  s.summary = SUMMARY
  s.description = s.summary
  s.author = AUTHOR
  s.email = EMAIL
  s.homepage = HOMEPAGE
  s.require_path = 'lib'
  s.files = %w(install.rb LICENSE README newrelic.yml Rakefile) + Dir.glob("{lib,bin,recipes,test,ui}/**/*") 
  s.bindir = "bin" # Use these for applications.
  s.executables = ["newrelic_cmd"]
  s.default_executable = "newrelic_cmd"
end

Rake::GemPackageTask.new(spec) do |pkg|
  pkg.gem_spec = spec
end

desc "Create a gemspec file"
task :gemspec do
  File.open("#{GEM_NAME}.gemspec", "w") do |file|
    file.puts spec.to_ruby
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
makevoid-newrelic_rpm-2.8.999 Rakefile
newrelic_rpm-2.8.10 Rakefile
newrelic_rpm-2.8.11 Rakefile
newrelic_rpm-2.8.2 Rakefile
newrelic_rpm-2.8.3 Rakefile
newrelic_rpm-2.8.4 Rakefile
newrelic_rpm-2.8.1 Rakefile
newrelic_rpm-2.8.6 Rakefile
newrelic_rpm-2.8.7 Rakefile
newrelic_rpm-2.8.5 Rakefile
newrelic_rpm-2.8.9 Rakefile
newrelic_rpm-2.8.8 Rakefile