rspec-stopwatch 0.1.2 → 0.1.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 44b8e7b5115aa21e0033d4255e38ec5c3f01b997
4
- data.tar.gz: 55a930669473d73b341a558b795117a19ea489be
3
+ metadata.gz: 17346292d3e6f2344d7b18e104fa554b5bc1b09e
4
+ data.tar.gz: cb9f47448462ff3553d95014fcf9cbb8cf2f0793
5
5
  SHA512:
6
- metadata.gz: 652699c69c929c6e47f888fc5ecd5a565b9c9c4a94e936a4444b25b28e157d43c789d3677042d40fc7948b50eaec169bd829235775bba3193047397b435d92ef
7
- data.tar.gz: db37ae3062e0892be00df76ce528cc82e4b63b3f47146c8c7b4e155ddd52ae5da992cbe92d4a1031671666ac704d69ff4ad76dfa9d6450258ebe14dd1160a024
6
+ metadata.gz: 81c2be7558e28a88ed2146631c08f83db4f2833b780291a506db8ec1395e56de1b4f8205cd9c426f0f0c2bb3dd4437bc42c49ce6354e0010f8ac220d7faf311d
7
+ data.tar.gz: 9664cde41db0fa980ec4a742f53eb9e3869e462a8c9d81a814d91f9ca9e3e50e3df2e08cf362c470ed69627adc54a70965130f948c070b0dc6ce71ccfe25fa2a
@@ -0,0 +1,4 @@
1
+ require 'rspec'
2
+
3
+ require_relative './stopwatch/matchers/run_for_matcher'
4
+
@@ -1,5 +1,3 @@
1
- require 'rspec'
2
-
3
1
  require 'active_support/core_ext/numeric/time'
4
2
  require 'benchmark'
5
3
 
@@ -1,6 +1,6 @@
1
1
  module RSpec
2
2
  module Stopwatch
3
- VERSION = '0.1.2'
3
+ VERSION = '0.1.3'
4
4
  end
5
5
  end
6
6
 
@@ -1,4 +1,4 @@
1
- require 'rspec-stopwatch'
1
+ require 'rspec/stopwatch'
2
2
 
3
3
  describe :run_for, :matcher => true do
4
4
  describe 'timing' do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-stopwatch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henry J. Wylde
@@ -40,16 +40,16 @@ dependencies:
40
40
  version: '4'
41
41
  description: Provides a matcher that checks the run time of a block
42
42
  email:
43
- - public@hjwylde.com
43
+ - hjwylde@powershop.co.nz
44
44
  executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
- - lib/rspec-stopwatch.rb
48
+ - lib/rspec/stopwatch.rb
49
49
  - lib/rspec/stopwatch/matchers/run_for_matcher.rb
50
50
  - lib/rspec/stopwatch/version.rb
51
51
  - spec/matchers/run_for_spec.rb
52
- homepage: https://git.powershop.co.nz/hjwylde/rspec-stopwatch-gem
52
+ homepage: https://github.com/powershop/rspec-stopwatch
53
53
  licenses:
54
54
  - MIT
55
55
  metadata: {}
@@ -72,6 +72,6 @@ rubyforge_project:
72
72
  rubygems_version: 2.4.6
73
73
  signing_key:
74
74
  specification_version: 4
75
- summary: Ruby gem for writing performance specs
75
+ summary: Provides a matcher that checks the run time of a block
76
76
  test_files:
77
77
  - spec/matchers/run_for_spec.rb
@@ -1,2 +0,0 @@
1
- require_relative './rspec/stopwatch/matchers/run_for_matcher'
2
-