Sha256: 1a4c9209fc97a631a8564da274d28d34c85bc292e6177bea9f80a2cdcbe25783
Contents?: true
Size: 1.04 KB
Versions: 4
Compression:
Stored size: 1.04 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'maroon/version' Gem::Specification.new do |gem| gem.name = 'maroon' gem.version = Maroon::VERSION gem.authors = ['Rune Funch Søltoft'] gem.email = %w(funchsoltoft@gmail.com) gem.description = %q{maroon 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 maroon is on par with code using regular method invocation. For examples on how to use maroon look at the examples found at the home page} gem.summary = %q{maroon} 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 'sourcify', '~>0.3', '>=0.3.10' gem.add_runtime_dependency 'sorcerer' end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
maroon-0.8.0 | maroon.gemspec |
maroon-0.7.1 | maroon.gemspec |
maroon-0.7.0 | maroon.gemspec |
maroon-0.6.5 | maroon.gemspec |