We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4109bbf commit a664447Copy full SHA for a664447
4 files changed
.gitignore
@@ -6,3 +6,4 @@
6
/pkg/
7
/spec/reports/
8
/tmp/
9
+/Gemfile.lock
Gemfile
@@ -1,4 +1,6 @@
1
source "https://rubygems.org"
2
3
+gemspec
4
+
5
gem "rake"
gem "test-unit"
drb.gemspec
@@ -27,4 +27,6 @@ Gem::Specification.new do |spec|
27
spec.bindir = "exe"
28
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
29
spec.require_paths = ["lib"]
30
31
+ spec.add_dependency "ruby2_keywords"
32
end
test/lib/helper.rb
require "test/unit"
require_relative "core_assertions"
+require "ruby2_keywords"
Test::Unit::TestCase.include Test::Unit::CoreAssertions
0 commit comments