Sha256: dbbe5e2869e1bcd1e6bc98dcc6a1eaff270f04d0c558aeb128eef4e1b8a7aefe
Contents?: true
Size: 892 Bytes
Versions: 1
Compression:
Stored size: 892 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'option_initializer/version' Gem::Specification.new do |gem| gem.name = "option_initializer" gem.version = OptionInitializer::VERSION gem.authors = ["Junegunn Choi"] gem.email = ["junegunn.c@gmail.com"] gem.description = %q{Object construction with method chaining} gem.summary = %q{Object construction with method chaining} gem.homepage = "https://github.com/junegunn/option_initializer" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.add_development_dependency 'simplecov' gem.add_development_dependency 'minitest' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
option_initializer-1.5.1 | option_initializer.gemspec |