Sha256: 315b36b9bf2e87a2b5ba87e1aca83310d3c9e256d75c493ae10f8c4b1d4f6f87
Contents?: true
Size: 903 Bytes
Versions: 2
Compression:
Stored size: 903 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "gitscape/version" Gem::Specification.new do |s| s.name = "gitscape" s.version = Gitscape::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Jon Botelho", "Xavier Matos"] s.email = ["gitscape@eachscape.com"] s.homepage = "https://github.com/eachscape/gitscape" s.summary = "Various Git utilities for workflows." s.description = "Provides a series of shell commands that allow you to control 3 timestreams of" "git branches for development, testing and deployment environments." s.add_dependency "git", "~> 1.2.5" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gitscape-1.7.3 | gitscape.gemspec |
gitscape-1.7.2 | gitscape.gemspec |