# Copyright 2014 Lou Parslow # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # require 'semver' v=SemVer.find Gem::Specification.new do |s| s.name = 'dev_tasks' s.version = "#{v.major}.#{v.minor}.#{v.patch}" s.date = '2014-10-11' s.summary = "development rake tasks" s.description = "A simple hello world gem" s.authors = ["Lou Parslow"] s.email = 'lou.parslow@gmail.com' s.files = Dir["{lib}/**/*.{rb,gemspec}","LICENSE","README","lib/.semver"] s.homepage = 'http://rubygems.org/gems/dev_tasks' s.license = 'Apache 2.0' s.add_runtime_dependency "term-ansicolor" s.add_runtime_dependency "semver" s.add_runtime_dependency "rake" s.add_development_dependency "rspec" end