diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ruby.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index cea020a87c..7036d12c77 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -5004,6 +5004,33 @@ support to both Ruby and JRuby. It uses @code{unf_ext} on CRuby and "https://github.com/janlelis/ruby_version") (license license:expat))) +(define-public ruby-webmock + (package + (name "ruby-webmock") + (version "1.22.3") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "webmock" version)) + (sha256 + (base32 + "0la47vzbikhvnx8qcj8jli87agzzffwh11ggm7rpq43iz2rwp0sl")))) + (build-system ruby-build-system) + (arguments + '(#:tests? #f)) + (propagated-inputs + `(("bundler" ,bundler) + ("ruby-addressable" ,ruby-addressable) + ("ruby-crack" ,ruby-crack) + ("ruby-rspec" ,ruby-rspec) + ("ruby-hashdiff" ,ruby-hashdiff))) + (synopsis + "WebMock allows stubbing HTTP requests and setting expectations on HTTP requests.") + (description + "WebMock allows stubbing HTTP requests and setting expectations on HTTP requests.") + (home-page "http://github.com/bblimke/webmock") + (license license:expat))) + (define-public ruby-domain-name (package (name "ruby-domain-name") |