Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

I've changed the method of listing files in the gem so that it doesn't call a git subprocess. #7

Merged
merged 1 commit into from Feb 5, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 1 addition & 3 deletions newrelic_moped.gemspec
Expand Up @@ -8,9 +8,7 @@ Gem::Specification.new do |gem|
gem.summary = %q{New Relic Instrumentation for Moped & Mongoid 3}
gem.homepage = ""

gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.files = Dir["{lib}/**/*.rb", "LICENSE", "*.md"]
gem.name = "newrelic_moped"
gem.require_paths = ["lib"]
gem.version = NewrelicMoped::VERSION
Expand Down