dump_hook 0.0.4 → 0.0.5
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/dump_hook.gemspec +5 -3
- data/lib/dump_hook/version.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '078fe1531c13f72d0e4433e5a50941cdd65bb0b26229d1c110ced8d61d727d39'
|
|
4
|
+
data.tar.gz: 215d3b1c335cb419dce2ab7f11b761ee3a08523fed3267f9f1d6ce14aab87f2c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cb86e1692a482a9f43d1bf7d0327ea520ba9e48f08c0bc438bcee175e64dcf84aa809c5a1569b572e48e5dd6944772fb7a55213efd044ece15340d0c839f2a27
|
|
7
|
+
data.tar.gz: 99c66c10ae82d9d4ade593e3286686c82807777e9f271ed0216500c48da4e03ccb1d859631f1e186ae46a46ecb5c9f6ea292a0931a622e89500a01013bc814cd
|
data/dump_hook.gemspec
CHANGED
|
@@ -9,9 +9,11 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Alexander Ryazantsev"]
|
|
10
10
|
spec.email = ["shurik.v.r@gmail.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary =
|
|
13
|
-
spec.description =
|
|
14
|
-
|
|
12
|
+
spec.summary = "Speed up acceptance and system tests by caching and restoring database state"
|
|
13
|
+
spec.description = "DumpHook speeds up your Rails system and acceptance tests by dumping and restoring " \
|
|
14
|
+
"database state instead of recreating it from scratch on every run. " \
|
|
15
|
+
"Supports PostgreSQL and MySQL. Works with Capybara, RSpec, Cucumber, and Minitest."
|
|
16
|
+
spec.homepage = "https://github.com/alvir/dump_hook"
|
|
15
17
|
spec.license = "MIT"
|
|
16
18
|
|
|
17
19
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
data/lib/dump_hook/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dump_hook
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexander Ryazantsev
|
|
@@ -108,7 +108,9 @@ dependencies:
|
|
|
108
108
|
- - ">="
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
110
|
version: '0'
|
|
111
|
-
description:
|
|
111
|
+
description: DumpHook speeds up your Rails system and acceptance tests by dumping
|
|
112
|
+
and restoring database state instead of recreating it from scratch on every run.
|
|
113
|
+
Supports PostgreSQL and MySQL. Works with Capybara, RSpec, Cucumber, and Minitest.
|
|
112
114
|
email:
|
|
113
115
|
- shurik.v.r@gmail.com
|
|
114
116
|
executables:
|
|
@@ -130,7 +132,7 @@ files:
|
|
|
130
132
|
- dump_hook.gemspec
|
|
131
133
|
- lib/dump_hook.rb
|
|
132
134
|
- lib/dump_hook/version.rb
|
|
133
|
-
homepage: https://github.com/
|
|
135
|
+
homepage: https://github.com/alvir/dump_hook
|
|
134
136
|
licenses:
|
|
135
137
|
- MIT
|
|
136
138
|
metadata: {}
|
|
@@ -152,5 +154,5 @@ requirements: []
|
|
|
152
154
|
rubygems_version: 3.1.6
|
|
153
155
|
signing_key:
|
|
154
156
|
specification_version: 4
|
|
155
|
-
summary:
|
|
157
|
+
summary: Speed up acceptance and system tests by caching and restoring database state
|
|
156
158
|
test_files: []
|