Sha256: e85e4bda1fd5484d17b65857ea5fef345a15d34d3243ded95ba07e79de1624ca
Contents?: true
Size: 1.39 KB
Versions: 3
Compression:
Stored size: 1.39 KB
Contents
# coding: utf-8 lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "minispec/rails/version" Gem::Specification.new do |spec| spec.name = "minispec-rails" spec.version = Minispec::Rails::VERSION spec.authors = ["Jared Ning"] spec.email = ["jared@redningja.com"] spec.summary = %q{Minimal Minitest::Spec in Rails.} spec.description = %q{Get Minitest::Spec in Rails with very few lines and no other features.} spec.homepage = "https://github.com/ordinaryzelig/minispec-rails" spec.license = "MIT" # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata) spec.metadata["allowed_push_host"] = "https://rubygems.org" else raise "RubyGems 2.0 or newer is required to protect against " \ "public gem pushes." end spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.15" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "minitest", "~> 5.0" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
minispec-rails-0.3.0 | minispec-rails.gemspec |
minispec-rails-0.2.0 | minispec-rails.gemspec |
minispec-rails-0.1.0 | minispec-rails.gemspec |