Skip to content

Commit

Permalink
Merge pull request rubygems#1998 from postmodern/patch-1
Browse files Browse the repository at this point in the history
Fixed typo. $/ and NOT $\
  • Loading branch information
radar committed Jun 22, 2012
2 parents 7ae0c4d + 312fb52 commit accdd1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/bundler/templates/newgem/newgem.gemspec.tt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |gem|
gem.summary = %q{TODO: Write a gem summary}
gem.homepage = ""

gem.files = `git ls-files`.split($\)
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.require_paths = ["lib"]
Expand Down

0 comments on commit accdd1c

Please sign in to comment.