Sha256: 24c5a18664f13d523c99a88fb28f6218eedef8be5752f08a3ebbf7b9b9c98a76
Contents?: true
Size: 984 Bytes
Versions: 2
Compression:
Stored size: 984 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'interfaces/version' Gem::Specification.new do |spec| spec.name = "interfaces" spec.version = Interfaces::VERSION spec.authors = ["Justin Schumacher"] spec.email = ["justin@thethinkingtree.com"] spec.description = %q{This library provides a concept of Interfaces and abstract classes to the ruby language} spec.summary = %q{Interfaces for ruby} spec.homepage = "https://github.com/thinkingtree/ruby-interfaces" 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"] spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
interfaces-0.2.0 | interfaces.gemspec |
interfaces-0.0.2.pre | interfaces.gemspec |