Sha256: 5c0587398cc0647a1326dd36efbf748bb85d78300c35cc3fcba815e5f8a058d9

Contents?: true

Size: 836 Bytes

Versions: 8

Compression:

Stored size: 836 Bytes

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'smart_init/version'

Gem::Specification.new do |gem|
  gem.name          = "smart_init"
  gem.version       = SmartInit::VERSION
  gem.authors       = ["pawurb"]
  gem.email         = ["p.urbanek89@gmail.com"]
  gem.summary       = %q{ Remove Ruby initializer boilerplate code }
  gem.description   = %q{ A smart DSL for ruby initializers boilerplate }
  gem.homepage      = "http://github.com/pawurb/smart_init"
  gem.files         = `git ls-files`.split("\n")
  gem.test_files    = gem.files.grep(%r{^(test)/})
  gem.require_paths = ["lib"]
  gem.license       = "MIT"
  gem.add_development_dependency "rake"
  gem.add_development_dependency "byebug"
  gem.add_development_dependency "test-unit"
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
smart_init-5.0.1 smart_init.gemspec
smart_init-5.0.0 smart_init.gemspec
smart_init-4.2.1 smart_init.gemspec
smart_init-4.2.0 smart_init.gemspec
smart_init-4.1.1 smart_init.gemspec
smart_init-4.1.0 smart_init.gemspec
smart_init-4.0.1 smart_init.gemspec
smart_init-4.0.0 smart_init.gemspec