Sha256: dfaad2746891d44926431b3dedbe25a54429df5475f407e44fa504f4cf2afb5e
Contents?: true
Size: 1.78 KB
Versions: 1
Compression:
Stored size: 1.78 KB
Contents
lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'trailblazer/version' Gem::Specification.new do |spec| spec.name = "trailblazer" spec.version = Trailblazer::Version::VERSION spec.authors = ["Nick Sutterer"] spec.email = ["apotonick@gmail.com"] spec.description = %q{A high-level architecture introducing new abstractions such as operations and control flow, form objects and policies.} spec.summary = %q{A high-level architecture for Ruby and Rails.} spec.homepage = "http://trailblazer.to" spec.license = "LGPL-3.0" spec.metadata = { "bug_tracker_uri" => "https://github.com/trailblazer/trailblazer/issues", "changelog_uri" => "https://github.com/trailblazer/trailblazer/blob/master/CHANGES.md", "documentation_uri" => "https://trailblazer.to/docs", "homepage_uri" => "https://trailblazer.to/", "mailing_list_uri" => "https://trailblazer.zulipchat.com/", "source_code_uri" => "https://github.com/trailblazer/trailblazer", "wiki_uri" => "https://github.com/trailblazer/trailblazer/wiki" } spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|doc)/}) end spec.test_files = `git ls-files -z test`.split("\x0") spec.require_paths = ["lib"] spec.add_dependency "trailblazer-macro", ">= 2.1.12", "< 2.2.0" spec.add_dependency "trailblazer-macro-contract", ">= 2.1.4", "< 2.2.0" spec.add_dependency "trailblazer-operation", ">= 0.9.0", "< 1.0.0" spec.add_development_dependency "bundler" spec.add_development_dependency "rake" spec.add_development_dependency "minitest" spec.add_development_dependency "minitest-line" spec.required_ruby_version = '>= 2.1.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
trailblazer-2.1.2 | trailblazer.gemspec |