Sha256: 676ebe7517f3dfe6e15d1bdeaa353ab9e5439fb05516111cf13334bffd2a5e77
Contents?: true
Size: 1.56 KB
Versions: 1
Compression:
Stored size: 1.56 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'space2hyphen/version' Gem::Specification.new do |spec| spec.name = 'space2hyphen' spec.version = Space2hyphen::VERSION spec.authors = ['sachin21'] spec.email = ['sachin21.developer@gmail.com'] spec.description = 'Change the space into hyphen' spec.summary = 'Change the space into hyphen' spec.homepage = 'http://github.com/sachin21/space2hyphen' spec.license = 'MIT' spec.files = `git ls-files`.split($RS) 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'] spec.post_install_message = <<-EOF.gsub(' ', '') .......................................................... __________________________________________________________ Thank you for installing space2hyphen. ************************* Usage ************************** From the command line: $ space2hyphen new branch -c => Switched to the new branch 'new-branch’ Or $ git branch -m $(space2hyphen renamed branch) ---------------------------------------------------------- .......................................................... EOF spec.add_development_dependency 'bundler', '~> 1.3' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec' spec.add_development_dependency 'pry' spec.add_development_dependency 'rubocop' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
space2hyphen-0.0.1 | space2hyphen.gemspec |