Skip to content

Commit

Permalink
Increased version
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Stastny aka Botanicus committed Jan 25, 2010
1 parent 96dd25e commit dcae8ec
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions nake.gemspec
Expand Up @@ -4,21 +4,23 @@
# NOTE: we can't use require_relative because when we run gem build, it use eval for executing this file
#$:.unshift(File.join(File.dirname(__FILE__), "lib"))
#require "nake"
require "base64"

Gem::Specification.new do |s|
s.name = "nake"
s.version = "0.0.8"
s.version = "0.0.9"
s.authors = ["Jakub Šťastný aka Botanicus"]
s.homepage = "http://github.com/botanicus/nake"
s.summary = "Nake is light-weight and highly flexible Rake replacement with much better arguments parsing"
s.description = "" # TODO: long description
s.cert_chain = nil
s.email = ["knava.bestvinensis", "gmail.com"].join("@")
s.email = Base64.decode64("c3Rhc3RueUAxMDFpZGVhcy5jeg==\n")
s.has_rdoc = true

# files
s.files = Dir.glob("**/*")
s.executables = ["nake"]
s.files = `git ls-files`.split("\n")

Dir["bin/*"].map(&File.method(:basename))
s.default_executable = "nake"
s.require_paths = ["lib"]

Expand Down

0 comments on commit dcae8ec

Please sign in to comment.