Sha256: a59f8d3f8a3ca0b315faf67d602edf2837c166adaa070a946df6ee374be18e55
Contents?: true
Size: 1.15 KB
Versions: 1
Compression:
Stored size: 1.15 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 = '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{ easy to use File loader that allow directories/project both Lazy Load and Eager load for files and constants. The Eager load for relative directory made for gems by default } spec.summary = %q{ easy to use File loader that allow directories/project both Lazy Load and Eager load for files and constants. The Eager load for relative directory made for gems by default } spec.homepage = 'https://github.com/adamluzsi/loader' 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'] spec.add_development_dependency('rspec') spec.add_development_dependency('rake') end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
loader-2.2.1 | loader.gemspec |