We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64fc5de commit 17290ecCopy full SHA for 17290ec
ruby_gnuplot.gemspec
@@ -18,5 +18,6 @@ Gem::Specification.new do |s|
18
s.require_paths = ["lib"]
19
20
s.add_development_dependency 'minitest'
21
- s.add_development_dependency 'rspec', '3.9.0'
+ s.add_development_dependency 'rspec', '3.9.0'
22
+ s.add_development_dependency 'simplecov', '0.17.0'
23
end
spec/spec_helper.rb
@@ -13,6 +13,11 @@
13
# it.
14
#
15
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
16
+require 'simplecov'
17
+SimpleCov.start do
+ add_filter '/spec/'
+end
+
require "gnuplot"
RSpec.configure do |config|
0 commit comments