Browse Source

Bump version and publish gem

tags/v0.4.0
Adrian Short 6 years ago
parent
commit
6794114d45
3 changed files with 5 additions and 4 deletions
  1. +1
    -0
      .gitignore
  2. +1
    -1
      lib/petrify/version.rb
  3. +3
    -3
      petrify.gemspec

+ 1
- 0
.gitignore View File

@@ -7,3 +7,4 @@
/pkg/ /pkg/
/spec/reports/ /spec/reports/
/tmp/ /tmp/
*.gem

+ 1
- 1
lib/petrify/version.rb View File

@@ -1,3 +1,3 @@
module Petrify module Petrify
VERSION = "0.3.0"
VERSION = "0.3.1"
end end

+ 3
- 3
petrify.gemspec View File

@@ -7,8 +7,8 @@ Gem::Specification.new do |spec|
spec.name = "petrify" spec.name = "petrify"
spec.version = Petrify::VERSION spec.version = Petrify::VERSION
spec.authors = ["Adrian Short"] spec.authors = ["Adrian Short"]
spec.email = []
spec.email = ['rubygems@adrianshort.org']
spec.licenses = ['MIT']
spec.summary = %q{A data(base)-driven static site generator with Haml templates.} spec.summary = %q{A data(base)-driven static site generator with Haml templates.}
#spec.description = %q{TODO: Write a longer description or delete this line.} #spec.description = %q{TODO: Write a longer description or delete this line.}
spec.homepage = "https://github.com/adrianshort/petrify/" spec.homepage = "https://github.com/adrianshort/petrify/"
@@ -31,5 +31,5 @@ Gem::Specification.new do |spec|


spec.add_development_dependency "bundler", "~> 1.15" spec.add_development_dependency "bundler", "~> 1.15"
spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rake", "~> 10.0"
spec.add_runtime_dependency "haml"
spec.add_runtime_dependency "haml", "~> 5.0"
end end

Loading…
Cancel
Save