Sha256: 17d31009e1d2846a032e9ba51a1c415b9ad14f8118c5161fa552eef98a5f9274
Contents?: true
Size: 1.46 KB
Versions: 3
Compression:
Stored size: 1.46 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================## #spec.add_runtime_dependency "commander", ['~>4.1.3'] #spec.add_runtime_dependency "activesupport" ## 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
procemon-0.3.3 | procemon.gemspec |
procemon-0.3.2 | procemon.gemspec |
procemon-0.3.1 | procemon.gemspec |