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 CHANGED
@@ -1,5 +1,9 @@
1
1
  = RubyMass CHANGELOG
2
2
 
3
- == Version 0.1.0 (June 9, 2012)
3
+ == Version 0.1.1 (June 11, 2012)
4
+
5
+ * Renamed Object.references to Object._references
6
+
7
+ == Version 0.1.0 (June 11, 2012)
4
8
 
5
9
  * Initial release
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.0
1
+ 0.1.1
@@ -21,7 +21,7 @@ class Object
21
21
 
22
22
  # A convenience method for Mass.references
23
23
  #
24
- def references(*mods)
24
+ def _references(*mods)
25
25
  Mass.references(self, *mods)
26
26
  end
27
27
 
@@ -1,7 +1,7 @@
1
1
  module RubyMass #:nodoc:
2
2
  MAJOR = 0
3
3
  MINOR = 1
4
- TINY = 0
4
+ TINY = 1
5
5
 
6
6
  VERSION = [MAJOR, MINOR, TINY].join(".")
7
7
  end
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-objects"
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.0"
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.0
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-objects
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: