Sha256: cddb8cb53023c2ba7ba53e76271f4a1d4e171dab3d315952c08c667743150202
Contents?: true
Size: 1.27 KB
Versions: 1
Compression:
Stored size: 1.27 KB
Contents
# 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dev_tasks-0.0.13 | lib/dev_tasks.gemspec |