Sha256: 8b3e97ef2b9428c6c0a38870ebac0c0ef80bb5f068a4f3185e5d43b3104224bc
Contents?: true
Size: 1.47 KB
Versions: 2
Compression:
Stored size: 1.47 KB
Contents
# -*- encoding: utf-8 -*- require 'rubygems' unless Object.const_defined?(:Gem) require File.dirname(__FILE__) + "/lib/boson/version" Gem::Specification.new do |s| s.name = "bosonson" s.version = Boson.version s.authors = ["Tom Bombadil", "Gabriel Horner"] s.email = "amanibhavam@destructuring.org" s.homepage = "https://HeSYINUvSBZfxqA.github.com/bosonson" s.summary = "A command/task framework similar to rake and thor that opens your ruby universe to the commandline and irb, forked from boson" s.description = "bosonson is a command/task framework with the power to turn any ruby method into a full-fledged executable with options. Some unique features that differentiate it from rake and thor include being usable from irb and the commandline, optional automated views generated by hirb and allowing libraries to be written as plain ruby. For my libraries that use this, see irbfiles. Works with all major ruby versions. Forked from boson" s.required_rubygems_version = ">= 1.3.6" s.executables = ['bss'] s.add_dependency 'hirb', '>= 0.5.0' s.add_dependency 'alias', '>= 0.2.2' s.add_development_dependency 'mocha' s.add_development_dependency 'bacon', '>= 1.1.0' s.add_development_dependency 'mocha-on-bacon' s.add_development_dependency 'bacon-bits' s.files = Dir.glob(%w[{lib,test}/**/*.rb bin/* [A-Z]*.{txt,rdoc} ext/**/*.{rb,c}]) + %w{bosonson.gemspec} s.extra_rdoc_files = ["README.rdoc", "LICENSE.txt"] s.license = 'MIT' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bosonson-0.304.3 | bosonson.gemspec |
bosonson-0.304.2 | bosonson.gemspec |