rails_ops 1.0.0.beta2 → 1.0.0.beta3
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/VERSION +1 -1
- data/lib/rails_ops/operation.rb +1 -1
- data/rails_ops.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6e73b572936a8b96e078c9643cda027cc2153cb3
|
|
4
|
+
data.tar.gz: 795bc1c05411d76172846bd426a97088b9b90bb8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c965f3510959ead719a946a9468ed483e4a96fda98926b9aeb813e32fbd334929e418a11850064365c5c0c0a9d0595ecf00852cc4236ccd9b60a48ee3f617e12
|
|
7
|
+
data.tar.gz: 369a5561ed04ea12c2065dcbb57e859b329d17d6c9c76d78f223c5ccc9b7a57803b120082ea6f16f2e09dd94d74433f13d10b06f3589d150f8f77ef24bef335f
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.0.
|
|
1
|
+
1.0.0.beta3
|
data/lib/rails_ops/operation.rb
CHANGED
|
@@ -92,7 +92,7 @@ class RailsOps::Operation
|
|
|
92
92
|
# be called once per operation instance. This is a bang method that raises at
|
|
93
93
|
# any validation exception.
|
|
94
94
|
def run!
|
|
95
|
-
ActiveSupport::Notifications.instrument('run.
|
|
95
|
+
ActiveSupport::Notifications.instrument('run.rails_ops', operation: self) do
|
|
96
96
|
::RailsOps::Profiler.profile(object_id, inspect) do
|
|
97
97
|
fail 'An operation can only be performed once.' if performed?
|
|
98
98
|
@performed = true
|
data/rails_ops.gemspec
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
# stub: rails_ops 1.0.0.
|
|
2
|
+
# stub: rails_ops 1.0.0.beta3 ruby lib
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "rails_ops".freeze
|
|
6
|
-
s.version = "1.0.0.
|
|
6
|
+
s.version = "1.0.0.beta3"
|
|
7
7
|
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1".freeze) if s.respond_to? :required_rubygems_version=
|
|
9
9
|
s.require_paths = ["lib".freeze]
|