scientist 0.0.0 → 0.0.1
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/CLA.md +54 -0
- data/CONTRIBUTING.md +3 -0
- data/Gemfile +0 -1
- data/README.md +413 -4
- data/lib/scientist/default.rb +21 -0
- data/lib/scientist/errors.rb +38 -0
- data/lib/scientist/experiment.rb +233 -0
- data/lib/scientist/observation.rb +92 -0
- data/lib/scientist/result.rb +77 -0
- data/lib/scientist/version.rb +1 -1
- data/lib/scientist.rb +39 -2
- data/scientist.gemspec +5 -3
- data/script/test +4 -1
- data/test/scientist/default_test.rb +23 -0
- data/test/scientist/experiment_test.rb +398 -0
- data/test/scientist/observation_test.rb +93 -0
- data/test/scientist/result_test.rb +111 -0
- data/test/scientist_test.rb +42 -4
- metadata +22 -21
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scientist
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Barnette
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-11-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: minitest
|
@@ -17,29 +17,15 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - "~>"
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 5.2
|
20
|
+
version: '5.2'
|
21
21
|
type: :development
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 5.2
|
28
|
-
|
29
|
-
name: mocha
|
30
|
-
requirement: !ruby/object:Gem::Requirement
|
31
|
-
requirements:
|
32
|
-
- - "~>"
|
33
|
-
- !ruby/object:Gem::Version
|
34
|
-
version: 1.0.0
|
35
|
-
type: :development
|
36
|
-
prerelease: false
|
37
|
-
version_requirements: !ruby/object:Gem::Requirement
|
38
|
-
requirements:
|
39
|
-
- - "~>"
|
40
|
-
- !ruby/object:Gem::Version
|
41
|
-
version: 1.0.0
|
42
|
-
description:
|
27
|
+
version: '5.2'
|
28
|
+
description: A Ruby library for carefully refactoring critical paths
|
43
29
|
email:
|
44
30
|
- jbarnette@github.com
|
45
31
|
- rick@github.com
|
@@ -48,15 +34,26 @@ extensions: []
|
|
48
34
|
extra_rdoc_files: []
|
49
35
|
files:
|
50
36
|
- ".gitignore"
|
37
|
+
- CLA.md
|
38
|
+
- CONTRIBUTING.md
|
51
39
|
- Gemfile
|
52
40
|
- LICENSE.txt
|
53
41
|
- README.md
|
54
42
|
- lib/scientist.rb
|
43
|
+
- lib/scientist/default.rb
|
44
|
+
- lib/scientist/errors.rb
|
45
|
+
- lib/scientist/experiment.rb
|
46
|
+
- lib/scientist/observation.rb
|
47
|
+
- lib/scientist/result.rb
|
55
48
|
- lib/scientist/version.rb
|
56
49
|
- scientist.gemspec
|
57
50
|
- script/bootstrap
|
58
51
|
- script/release
|
59
52
|
- script/test
|
53
|
+
- test/scientist/default_test.rb
|
54
|
+
- test/scientist/experiment_test.rb
|
55
|
+
- test/scientist/observation_test.rb
|
56
|
+
- test/scientist/result_test.rb
|
60
57
|
- test/scientist_test.rb
|
61
58
|
homepage: https://github.com/github/scientist
|
62
59
|
licenses:
|
@@ -70,7 +67,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
70
67
|
requirements:
|
71
68
|
- - ">="
|
72
69
|
- !ruby/object:Gem::Version
|
73
|
-
version:
|
70
|
+
version: 2.1.0
|
74
71
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
72
|
requirements:
|
76
73
|
- - ">="
|
@@ -78,9 +75,13 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
78
75
|
version: '0'
|
79
76
|
requirements: []
|
80
77
|
rubyforge_project:
|
81
|
-
rubygems_version: 2.2.
|
78
|
+
rubygems_version: 2.2.2
|
82
79
|
signing_key:
|
83
80
|
specification_version: 4
|
84
81
|
summary: Carefully test, measure, and track refactored code.
|
85
82
|
test_files:
|
83
|
+
- test/scientist/default_test.rb
|
84
|
+
- test/scientist/experiment_test.rb
|
85
|
+
- test/scientist/observation_test.rb
|
86
|
+
- test/scientist/result_test.rb
|
86
87
|
- test/scientist_test.rb
|