Repository: buildr
Updated Branches:
  refs/heads/master 7b12cddad -> d909f4981


Prefer %w syntax


Project: http://git-wip-us.apache.org/repos/asf/buildr/repo
Commit: http://git-wip-us.apache.org/repos/asf/buildr/commit/5639bbbd
Tree: http://git-wip-us.apache.org/repos/asf/buildr/tree/5639bbbd
Diff: http://git-wip-us.apache.org/repos/asf/buildr/diff/5639bbbd

Branch: refs/heads/master
Commit: 5639bbbd3561e468ea08f46e8948e7a57a4454ce
Parents: 7b12cdd
Author: Peter Donald <[email protected]>
Authored: Tue Jun 9 09:56:13 2015 +1000
Committer: Peter Donald <[email protected]>
Committed: Tue Jun 9 09:56:13 2015 +1000

----------------------------------------------------------------------
 buildr.gemspec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/buildr/blob/5639bbbd/buildr.gemspec
----------------------------------------------------------------------
diff --git a/buildr.gemspec b/buildr.gemspec
index 0c9f706..2d3a347 100644
--- a/buildr.gemspec
+++ b/buildr.gemspec
@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
   spec.email          = '[email protected]'
   spec.homepage       = 'http://buildr.apache.org/'
   spec.summary        = 'Build like you code'
-  spec.licenses        = ['Apache-2.0']
+  spec.licenses        = %w(Apache-2.0)
   spec.description    = <<-TEXT
 Apache Buildr is a build system for Java-based applications, including support
 for Scala, Groovy and a growing number of JVM languages and tools.  We wanted
@@ -43,7 +43,7 @@ for those one-off tasks, with a language that's a joy to use.
   spec.platform       = $platform
 
   spec.files          = Dir['{addon,bin,doc,etc,lib,rakelib,spec}/**/*', 
'*.{gemspec,buildfile}'] +
-                        ['LICENSE', 'NOTICE', 'CHANGELOG', 'README.rdoc', 
'Rakefile', '_buildr', '_jbuildr']
+                        %w(LICENSE NOTICE CHANGELOG README.rdoc Rakefile 
_buildr _jbuildr)
   spec.require_paths  = 'lib', 'addon'
   spec.bindir         = 'bin'                               # Use these for 
applications.
   spec.executable     = 'buildr'

Reply via email to