mutx 0.1.67 → 0.1.68
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/Gemfile.lock +4 -4
- data/lib/mutx/database/mongo_connector.rb +2 -2
- data/lib/mutx/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9a6c7713437e8e4983f496e0b0f762363db81e8d
|
4
|
+
data.tar.gz: c92160615c037d83c774a08489763fb9558bfdf3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b48c7fa1243e65c2a2f2d2d6b7e5a09c615f00136ff9ef7d479e917602c1ba1f18b04e3386c607609c8dcd149c146ffcd060cf34182e32de8a7f9225f82ee230
|
7
|
+
data.tar.gz: 5a7bd7865fe3c4ae9f8e38bfa8644824648e63431474f53d17eed4e0ee5a23cb5a9c89cfc3c7287a850f59ef2cbd2a8598dca6f06f1d671f5f6a3d63e6985868
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
mutx (0.1.
|
4
|
+
mutx (0.1.68)
|
5
5
|
basica
|
6
6
|
bson_ext
|
7
7
|
byebug
|
@@ -68,7 +68,7 @@ GEM
|
|
68
68
|
cucumber-wire (0.0.1)
|
69
69
|
diff-lcs (1.3)
|
70
70
|
gherkin (4.0.0)
|
71
|
-
github-markup (1.4.
|
71
|
+
github-markup (1.4.1)
|
72
72
|
gmail (0.6.0)
|
73
73
|
gmail_xoauth (>= 0.3.0)
|
74
74
|
mail (>= 2.2.1)
|
@@ -95,9 +95,9 @@ GEM
|
|
95
95
|
raindrops (0.17.0)
|
96
96
|
rake (12.0.0)
|
97
97
|
redcarpet (3.4.0)
|
98
|
-
redis (3.3.
|
98
|
+
redis (3.3.3)
|
99
99
|
require_all (1.4.0)
|
100
|
-
rufus-scheduler (3.3.
|
100
|
+
rufus-scheduler (3.3.3)
|
101
101
|
tzinfo
|
102
102
|
shotgun (0.9.2)
|
103
103
|
rack (>= 1.0)
|
@@ -101,8 +101,8 @@ module Mutx
|
|
101
101
|
def set_results_collection
|
102
102
|
Mutx::Support::Log.debug "Setting db results collection" if Mutx::Support::Log
|
103
103
|
$results = $db.collection("results")
|
104
|
-
|
105
|
-
|
104
|
+
$results.ensure_index({"started_at" => 1})
|
105
|
+
$results.ensure_index({"_id" => 1})
|
106
106
|
end
|
107
107
|
|
108
108
|
def set_documentation_collection
|
data/lib/mutx/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mutx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.68
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Roman Rodriguez
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|