Sha256: 52f573f9c461c9113126b5069ee2cd2749c3e1c263634c87194bfc18789fa4a6
Contents?: true
Size: 1.41 KB
Versions: 1
Compression:
Stored size: 1.41 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'moosex/version' Gem::Specification.new do |spec| spec.name = "moosex" spec.version = MooseX::VERSION spec.authors = ["Tiago Peczenyj"] spec.email = ["tiago.peczenyj@gmail.com"] spec.summary = %q{A postmodern object DSL for Ruby} spec.description = %q{MooseX is an extension of Ruby object DSL. The main goal of MooseX is to make Ruby Object Oriented programming easier, more consistent, and less tedious. With MooseX you can think more about what you want to do and less about the mechanics of OOP. It is a port of Moose/Moo from Perl to Ruby world, providing method delegation, type check, traits, monads, plugins, lazy attributes, aspects and much more.} spec.homepage = "http://github.com/peczenyj/MooseX" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") 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.required_ruby_version = '~> 2.0' spec.add_development_dependency "bundler", "~> 1.5" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" spec.add_development_dependency "simplecov", ">= 0.8.2" spec.add_development_dependency 'coveralls', '>= 0.7.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
moosex-0.0.21 | moosex.gemspec |