Skip to content

Commit

Permalink
Merge branch 'release/v0.1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
melriffe committed Sep 26, 2014
2 parents 4a5f643 + 8649dad commit 8db1969
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion flat.gemspec
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
spec.homepage = "https://github.com/juicyparts/flat"
spec.license = "MIT"

spec.files = `git ls-files -z`.split("\x0")
spec.files = `git ls-files -z`.split("\x0").reject { |name| name.match(/^\.|^G.*|^Rakefile$|^spec.*/) }
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
Expand All @@ -25,6 +25,7 @@ Gem::Specification.new do |spec|
"source_code" => 'https://github.com/juicyparts/flat',
"documentation" => 'http://rubydoc.info/github/juicyparts/flat',
"issue_tracker" => "https://github.com/juicyparts/flat/issues",
"wiki" => "https://github.com/juicyparts/flat/wiki",
}

spec.add_runtime_dependency "extlib", "~> 0.9.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/flat/version.rb
@@ -1,3 +1,3 @@
module Flat #:nodoc:
VERSION = "0.1.1"
VERSION = "0.1.2"
end
2 changes: 1 addition & 1 deletion spec/lib/flat_spec.rb
Expand Up @@ -5,7 +5,7 @@

describe 'Version' do
it 'should verify current gem version' do
expect(Flat::VERSION).to eq('0.1.1')
expect(Flat::VERSION).to eq('0.1.2')
end
end

Expand Down

0 comments on commit 8db1969

Please sign in to comment.