Skip to content

Commit

Permalink
Fix #44 git ls-files returned empty list in i18n.gemspec. Skip listin…
Browse files Browse the repository at this point in the history
…g app dir, as it no longer exists
  • Loading branch information
knapo committed Jun 19, 2010
1 parent 88c3410 commit 188d924
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion i18n.gemspec
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.summary = "New wave Internationalization support for Ruby"
s.description = "New wave Internationalization support for Ruby."

s.files = `git ls-files {app,lib}`.split("\n") + %w(README.textile MIT-LICENSE CHANGELOG.textile)
s.files = `git ls-files lib`.split("\n") + %w(README.textile MIT-LICENSE CHANGELOG.textile)
s.platform = Gem::Platform::RUBY
s.require_path = 'lib'
s.rubyforge_project = '[none]'
Expand Down

0 comments on commit 188d924

Please sign in to comment.