Sha256: a7d6f88ac858085476acd7361910c980537793fde7d5221b300d124a8b21b1db

Contents?: true

Size: 775 Bytes

Versions: 1

Compression:

Stored size: 775 Bytes

Contents

require 'rubygems'

SPEC = Gem::Specification.new do |s|
    s.name        = "assert_same"
    s.version     = "0.1"
    s.author      = "Pluron, Inc."
    s.email       = "support@pluron.com"
    s.homepage    = "http://github.com/acunote/assert_same"
    s.platform    = Gem::Platform::RUBY
    s.description = "assert_same assertion"
    s.summary     = "Assert which checks that two strings (expected and actual) are same and which can magically replace expected value with the actual in case the new behavior (and new actual value) is correct"

    s.add_development_dependency('bundler', '>= 1.0.0')

    s.files         = `git ls-files`.split("\n")
    s.test_files    = `git ls-files -- test/*`.split("\n")

    s.require_path  = "lib"
    s.has_rdoc      = true
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
assert_same-0.1 assert_same.gemspec