cutter 0.8.3 → 0.8.4
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.
- data/README.md +5 -1
- data/lib/cutter.rb +0 -3
- data/lib/cutter/stamper.rb +0 -1
- data/lib/cutter/version.rb +1 -1
- metadata +2 -4
- data/lib/cutter/array.rb +0 -6
- data/lib/cutter/railtie.rb +0 -7
data/README.md
CHANGED
@@ -103,7 +103,7 @@ is called on every variable.
|
|
103
103
|
# method: `maximal' (maximal tracing)
|
104
104
|
# called from class: RSpec::Core::ExampleGroup::Nested_1::Nested_1
|
105
105
|
# local_variables:
|
106
|
-
#
|
106
|
+
# args: [1, :two, "three", {:four=>5}]
|
107
107
|
# instance_variables:
|
108
108
|
# @example: #<RSpec::Core::Example:0xa1d378 >
|
109
109
|
# ...
|
@@ -142,6 +142,10 @@ Very! Very simple!
|
|
142
142
|
|
143
143
|
## II) #stamper
|
144
144
|
|
145
|
+
```ruby
|
146
|
+
bundle exec rspec spec/stamper/demo_spec.rb
|
147
|
+
```
|
148
|
+
|
145
149
|
Description is coming...
|
146
150
|
|
147
151
|
Acts as self.benchmark{} (in Rails) or Benchmark.measure{} (common Ruby) but with stamps in any position in block executed.
|
data/lib/cutter.rb
CHANGED
data/lib/cutter/stamper.rb
CHANGED
data/lib/cutter/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cutter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -84,10 +84,8 @@ extra_rdoc_files:
|
|
84
84
|
- README.md
|
85
85
|
files:
|
86
86
|
- lib/cutter.rb
|
87
|
-
- lib/cutter/array.rb
|
88
87
|
- lib/cutter/colored_outputs.rb
|
89
88
|
- lib/cutter/inspection.rb
|
90
|
-
- lib/cutter/railtie.rb
|
91
89
|
- lib/cutter/stamper.rb
|
92
90
|
- lib/cutter/version.rb
|
93
91
|
- LICENSE.txt
|
@@ -107,7 +105,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
107
105
|
version: '0'
|
108
106
|
segments:
|
109
107
|
- 0
|
110
|
-
hash:
|
108
|
+
hash: 804264787
|
111
109
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
112
110
|
none: false
|
113
111
|
requirements:
|
data/lib/cutter/array.rb
DELETED