blueprints_boy.gemspec
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'blueprints_boy/version'
Gem::Specification.new do |s|
s.name = 'blueprints_boy'
s.version = BlueprintsBoy::VERSION
s.authors = ['Andrius Chamentauskas']
s.email = ['andrius.chamentauskas@gmail.com']
s.homepage = 'http://andriusch.github.io/blueprints_boy/'
s.summary = 'The ultimate solution to managing test data.'
s.description = 'The ultimate DRY and fast solution to managing any kind of test data. Based on Blueprints.'
s.metadata = {'rubygems_mfa_required' => 'true'}
s.rubyforge_project = 'blueprints_boy'
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.4'
s.add_development_dependency 'appraisal'
s.add_development_dependency 'cucumber'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rubocop'
s.add_runtime_dependency 'activesupport', '>= 3.0.0'
s.add_runtime_dependency 'database_cleaner-core'
end