ruby-mass 0.1.0 → 0.1.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.
- data/CHANGELOG.rdoc +5 -1
- data/README.rdoc +1 -1
- data/VERSION +1 -1
- data/lib/core_ext/object.rb +1 -1
- data/lib/ruby-mass/version.rb +1 -1
- data/ruby-mass.gemspec +2 -2
- metadata +3 -2
data/CHANGELOG.rdoc
CHANGED
data/README.rdoc
CHANGED
@@ -147,7 +147,7 @@ Continueing with the previous example, you will get the following results:
|
|
147
147
|
# NOTE: Set foo1 to nil (within the block which only gets yielded after successfully detaching references) as it also is a pointer to the allocated memory
|
148
148
|
$ Mass.detach(foo1){foo1 = nil} #=> true
|
149
149
|
|
150
|
-
# NOTE: This ensures that Mass invokes GC.start but only after verifying that foo1 is nil pointer
|
150
|
+
# NOTE: This ensures that Mass invokes GC.start but only after verifying that foo1 is a nil pointer
|
151
151
|
$ Mass.gc!(foo1)
|
152
152
|
|
153
153
|
$ Mass.index(Foo) #=> {"Foo"=>[2155577620]}
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/lib/core_ext/object.rb
CHANGED
data/lib/ruby-mass/version.rb
CHANGED
data/ruby-mass.gemspec
CHANGED
@@ -5,12 +5,12 @@ Gem::Specification.new do |gem|
|
|
5
5
|
gem.email = ["paul.engel@holder.nl"]
|
6
6
|
gem.description = %q{Introspect the Ruby Heap by indexing, counting, locating references to and detaching (in order to release) objects - optionally narrowing by namespace}
|
7
7
|
gem.summary = %q{Introspect the Ruby Heap by indexing, counting, locating references to and detaching (in order to release) objects - optionally narrowing by namespace}
|
8
|
-
gem.homepage = "https://github.com/archan937/ruby-
|
8
|
+
gem.homepage = "https://github.com/archan937/ruby-mass"
|
9
9
|
|
10
10
|
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
11
11
|
gem.files = `git ls-files`.split("\n")
|
12
12
|
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
13
13
|
gem.name = "ruby-mass"
|
14
14
|
gem.require_paths = ["lib"]
|
15
|
-
gem.version = "0.1.
|
15
|
+
gem.version = "0.1.1"
|
16
16
|
end
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: ruby-mass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.1.
|
5
|
+
version: 0.1.1
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Paul Engel
|
@@ -39,7 +39,7 @@ files:
|
|
39
39
|
- script/console
|
40
40
|
- test/test_helper.rb
|
41
41
|
- test/unit/test_mass.rb
|
42
|
-
homepage: https://github.com/archan937/ruby-
|
42
|
+
homepage: https://github.com/archan937/ruby-mass
|
43
43
|
licenses: []
|
44
44
|
|
45
45
|
post_install_message:
|
@@ -69,3 +69,4 @@ summary: Introspect the Ruby Heap by indexing, counting, locating references to
|
|
69
69
|
test_files:
|
70
70
|
- test/test_helper.rb
|
71
71
|
- test/unit/test_mass.rb
|
72
|
+
has_rdoc:
|