Sha256: d21c91e603aa44870274a657ceba191d5a5c66fe6822791dd6a3fbc3da578b38
Contents?: true
Size: 1.79 KB
Versions: 1
Compression:
Stored size: 1.79 KB
Contents
#-*- coding: utf-8 -*- # GITSHA: <%= `git rev-parse HEAD` %> Gem::Specification.new do |s| s.name = "wd_newrelic_rpm" s.version = "<%= version_string %>" s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version= s.authors = [ "Jason Clark", "Sam Goldstein", "Jon Guymon", "Ben Weintraub" ] s.date = "<%= date %>" s.description = <<-EOS Weasel Diesel compatible version of rpm. New Relic is a performance management system, developed by New Relic, Inc (http://www.newrelic.com). New Relic provides you with deep information about the performance of your web application as it runs in production. The New Relic Ruby Agent is dual-purposed as a either a Gem or plugin, hosted on http://github.com/newrelic/rpm/ EOS s.email = "support@newrelic.com" s.executables = [ "mongrel_rpm", "newrelic_cmd", "newrelic" ] s.extra_rdoc_files = [ "CHANGELOG", "LICENSE", "README.md", "GUIDELINES_FOR_CONTRIBUTING.md", "newrelic.yml" ] s.files = [<% files.each do |file| %> "<%= file %>",<% end %> ] s.homepage = "http://www.github.com/newrelic/rpm" <% # Print this version's CHANGELOG as a post_install_message. version_count = 0 changes = [] File.read(File.join(File.dirname(__FILE__), 'CHANGELOG')).each_line do |line| if line.match(/##\s+v[\d.]+\s+##/) version_count += 1 end break if version_count >= 2 changes << line.chomp end %> s.post_install_message = <<'EOS' <%= changes.join("\n") %> See https://github.com/newrelic/rpm/blob/master/CHANGELOG for a full list of changes. EOS s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "New Relic Ruby Agent"] s.require_paths = ["lib"] s.rubygems_version = "<%= gem_version %>" s.summary = "New Relic Ruby Agent" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wd_newrelic_rpm-3.5.5 | newrelic_rpm.gemspec.erb |