RubyInlineWithoutZenTest 3.12.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,39 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'inline/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "RubyInlineWithoutZenTest"
8
+ spec.version = Inline::VERSION
9
+ spec.authors = ["Paul Kmiec"]
10
+ spec.email = ["paul.kmiec@appfolio.com"]
11
+ spec.description = %q{See https://github.com/seattlerb/zentest/issues/28. Tired of wasting time with ZenTest.}
12
+ spec.summary = %q{RubyInline without the ZenTest dependency}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+ spec.requirements = [%q{A POSIX environment and a compiler for your language.}]
16
+
17
+ spec.files = `git ls-files`.split($/)
18
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
19
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
20
+ spec.require_paths = ["lib"]
21
+
22
+ if spec.respond_to? :specification_version then
23
+ spec.specification_version = 3
24
+
25
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
26
+ spec.add_development_dependency(%q<minitest>, ["~> 4.7"])
27
+ spec.add_development_dependency(%q<rdoc>, ["~> 4.0"])
28
+ spec.add_development_dependency(%q<rake>, [">= 0"])
29
+ else
30
+ spec.add_dependency(%q<minitest>, ["~> 4.7"])
31
+ spec.add_dependency(%q<rdoc>, ["~> 4.0"])
32
+ spec.add_dependency(%q<rake>, [">= 0"])
33
+ end
34
+ else
35
+ spec.add_dependency(%q<minitest>, ["~> 4.7"])
36
+ spec.add_dependency(%q<rdoc>, ["~> 4.0"])
37
+ spec.add_dependency(%q<rake>, [">= 0"])
38
+ end
39
+ end