timers 3.0.0.pre → 3.0.0
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 +4 -4
- data/CHANGES.md +3 -2
- data/lib/timers/version.rb +1 -1
- data/spec/group_spec.rb +1 -1
- data/spec/spec_helper.rb +11 -0
- data/spec/timeout_spec.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d2232fddadad4b9e14c2798cff52260842c4fab
|
4
|
+
data.tar.gz: 44cabddf628adc171fa07820eaa11242773aa4f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94bd5155f6775c678e9f3df86ca5cf5736128f8c7349225907a00ff29d2beeac76ee3300cb5ef5526a7fe2ddc3d6f4f408228ef6552252c997d27cc3ddb27da8
|
7
|
+
data.tar.gz: 484711333673f915bc847adb6a10fe940324b60b23ba8ef3ef3d0fdd31594c90fd79a8fadfdf02e5b052f1209ea1094e31ca946d6247a727e3e5b60ba187f99f
|
data/CHANGES.md
CHANGED
data/lib/timers/version.rb
CHANGED
data/spec/group_spec.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
@@ -6,3 +6,14 @@ require 'timers'
|
|
6
6
|
|
7
7
|
# Level of accuracy enforced by tests (50ms)
|
8
8
|
TIMER_QUANTUM = 0.05
|
9
|
+
|
10
|
+
RSpec.configure do |config|
|
11
|
+
# Setting this config option `false` removes rspec-core's monkey patching of the
|
12
|
+
# top level methods like `describe`, `shared_examples_for` and `shared_context`
|
13
|
+
# on `main` and `Module`. The methods are always available through the `RSpec`
|
14
|
+
# module like `RSpec.describe` regardless of this setting.
|
15
|
+
# For backwards compatibility this defaults to `true`.
|
16
|
+
#
|
17
|
+
# https://relishapp.com/rspec/rspec-core/v/3-0/docs/configuration/global-namespace-dsl
|
18
|
+
config.expose_dsl_globally = false
|
19
|
+
end
|
data/spec/timeout_spec.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: timers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.0
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tony Arcieri
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-06-
|
11
|
+
date: 2014-06-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: hitimes
|
@@ -93,9 +93,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
93
93
|
version: '0'
|
94
94
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
95
95
|
requirements:
|
96
|
-
- - "
|
96
|
+
- - ">="
|
97
97
|
- !ruby/object:Gem::Version
|
98
|
-
version:
|
98
|
+
version: '0'
|
99
99
|
requirements: []
|
100
100
|
rubyforge_project:
|
101
101
|
rubygems_version: 2.2.2
|