Sha256: b050cbe4cbef74d84d03b22b474fc056ce82f87f3d7c0aa82e6b8c7623372ded
Contents?: true
Size: 998 Bytes
Versions: 8
Compression:
Stored size: 998 Bytes
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 = "loader" 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{ dsl for gem helper calls such like relative folder calls that independ on the Dir.pwd or File.expand tricks and config loader stuffs, Check out the GIT! } spec.summary = %q{DSL for helping make file require easy just like build configuration objects } spec.homepage = "https://github.com/adamluzsi/loader" spec.license = "MIT" spec.files = `git ls-files`.split($/) 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"] end
Version data entries
8 entries across 8 versions & 1 rubygems