Sha256: 62700be16f7dde0cd3454973c4ca428df332a230a006b0ae8a4c7c51ea0e51ed
Contents?: true
Size: 1.44 KB
Versions: 12
Compression:
Stored size: 1.44 KB
Contents
# coding: utf-8 require File.expand_path(File.join(File.dirname(__FILE__),"files.rb")) ### Specification for the new Gem Gem::Specification.new do |spec| spec.name = "procemon" spec.version = File.open(File.join(File.dirname(__FILE__),"VERSION")).read.split("\n")[0].chomp.gsub(' ','') spec.authors = ["Adam Luzsi"] spec.email = ["adamluzsi@gmail.com"] spec.description = %q{This is a collection of my Ruby Procs in the adventure of becoming the best! In short this provides extra tools in Application configs, argumens processing,daemonise, eval,port check, require relative files, or directories, string to duck parsing, system tmp_dir using, meta-programing, and a lot of monkey patch for extra functionality } spec.summary = %q{Gotta catch em all!} spec.homepage = "https://github.com/adamluzsi/procemon" spec.license = "MIT" spec.files = SpecFiles 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"] ##=======Runtime-ENV================## ### Terminal like commands #spec.add_runtime_dependency "commander", ['~>4.1.3'] ## Node.JS #spec.add_runtime_dependency "execjs" ##=======Development-ENV============## #spec.add_development_dependency "commander",['~>4.1.3'] #spec.add_development_dependency "rake" #spec.add_development_dependency "bundle" end
Version data entries
12 entries across 12 versions & 1 rubygems