Skip to content

Commit

Permalink
Prepare gem for release (add license, bump version and pin dependency…
Browse files Browse the repository at this point in the history
… versions)
  • Loading branch information
mpm committed Mar 24, 2016
1 parent e3f7672 commit 532fd3e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
8 changes: 8 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
The MIT License (MIT)
Copyright (c) 2015-2016 Malte Münchert

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2 changes: 1 addition & 1 deletion lib/taxger/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Taxger
VERSION = "0.1.0"
VERSION = "0.2.0"
end
9 changes: 5 additions & 4 deletions taxger.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,17 @@ Gem::Specification.new do |spec|
spec.name = "taxger"
spec.version = Taxger::VERSION
spec.authors = ["Malte Münchert"]
spec.license = 'MIT'
spec.email = ["[email protected]"]

spec.summary = %q{Calculate taxes in Germany}
spec.description = %q{Calculate income taxes (Lohnsteuer) based on the official guidelines}
spec.description = %q{Calculate income taxes (Lohnsteuer and Einkommensteuer) based on the official guidelines}
spec.homepage = "https://github.com/mpm/taxger"

# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
# delete this section to allow pushing this gem to any host.
if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
spec.metadata['allowed_push_host'] = "https://rubygems.org"
else
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
end
Expand All @@ -28,6 +29,6 @@ Gem::Specification.new do |spec|

spec.add_development_dependency "bundler", "~> 1.10"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec"
spec.add_development_dependency "nokogiri"
spec.add_development_dependency "rspec", "~> 3.4"
spec.add_development_dependency "nokogiri", "~> 1.6"
end

0 comments on commit 532fd3e

Please sign in to comment.