Skip to content

Commit

Permalink
Next release 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
davydovanton committed Feb 7, 2016
1 parent 5c4d333 commit 91dd7d4
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions hanami-bootstrap.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'hanami/bootstrap/version'

Gem::Specification.new do |spec|
spec.name = "hanami-bootstrap"
spec.version = Hanami::Bootstrap::VERSION
spec.authors = ["Anton Davydov"]
spec.email = ["antondavydov.o@gmail.com"]

spec.summary = %q{Twitter bootstrap library for hanami applications}
spec.description = %q{Twitter bootstrap library for hanami applications}
spec.homepage = "https://github.com/davydovanton/hanami-bootstrap"
spec.license = "MIT"

spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency "hanami-assets", "~> 0.2.1"

spec.add_development_dependency "bundler", "~> 1.11"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "minitest", "~> 5.0"
end
2 changes: 1 addition & 1 deletion lib/hanami/bootstrap/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Hanami
module Bootstrap
VERSION = "0.1.0"
VERSION = '0.2.0'
end
end

0 comments on commit 91dd7d4

Please sign in to comment.