Sha256: 65a0852d5909481761c005b5eb01270a75c3d664a8cc1aeafde2bf3b61ee42c8
Contents?: true
Size: 1.17 KB
Versions: 2
Compression:
Stored size: 1.17 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'Moby/version' Gem::Specification.new do |gem| gem.name = 'Moby' gem.version = Moby::VERSION gem.authors = ['Rune Funch Søltoft'] gem.email = %w(funchsoltoft@gmail.com) gem.description = %q{Moby makes DCI a DSL for Ruby it's mainly based on the work gone into Marvin, the first language to support injectionless DCI. The performance of code written using Moby is on par with code using regular method invocation. For examples on how to use Moby look at the examples} gem.summary = %q{Moby} gem.homepage = 'https://github.com/runefs/Moby' 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_runtime_dependency 'sexp_processor', '~>3.2', '=3.2.0' gem.add_runtime_dependency 'ruby_parser', '~>2.0', '=2.0.6' gem.add_runtime_dependency 'ruby2ruby', '~>1.3', '>=1.3.1' gem.add_runtime_dependency 'live_ast', '~>1.0', '>=1.0.2' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
Moby-0.5.1 | Moby.gemspec |
Moby-0.5.0 | Moby.gemspec |