that_object_is_so_basic 0.0.1 → 0.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f9af0a5fe953ea304b33209a1da78518769623a401a7d2c38b7a732608236443
4
- data.tar.gz: 755b02c7516eda6947d3041e7a91dc128c7b72ad191335bd3b16a86615e27feb
3
+ metadata.gz: a03295eac342f2c2d70888054c2cfab6bd6b6c30bb418da208623e7b9c81d62d
4
+ data.tar.gz: 5beaf35ffcfab4d257a61768327c0bf0eec369ad4d85ad166f291460aa041ac3
5
5
  SHA512:
6
- metadata.gz: 6fd1f94eb94734c78af8de202d0ba65d42c8cbb4e6a4f6e7733b635cc4da96948757881f9b439ca1f3ce9c4cbe82fcb792fd6a91ecc78d86b78e6ac467cafe82
7
- data.tar.gz: 882896667eb6aa9ac22c93455ba7233ec6abede79bb7f7dc454608a3531306e284a3cf7bfa052ee7e23ca2e05648ba1f89ab156c1b591b22412cbc917df4bb5a
6
+ metadata.gz: 9402a5a10ba77da4ce3adf4c1ed4e703748f39744964d0b118de5b8e3130a3d9c313b5d26dde7fcabe90ba6945c344bcaefc2b89f50f5a140766fa6d5fecbabe
7
+ data.tar.gz: c6dbf0a1afffbed5e48ac75566c1c2002ac601f35354d07213331b95acb738beb0f07f468a57d869877bce31dc5e3231847baeaaade09c78443224594d448717
@@ -0,0 +1,3 @@
1
+ module TOISB
2
+ VERSION = "0.0.2"
3
+ end
data/lib/toisb/wrapper.rb CHANGED
@@ -1,8 +1,4 @@
1
- require_relative "helper"
2
-
3
1
  module TOISB; class Wrapper
4
- include Helper
5
-
6
2
  def initialize object, trace = nil
7
3
  @object = object
8
4
  @trace = caller
@@ -1,6 +1,11 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "toisb/version"
5
+
1
6
  Gem::Specification.new do |gem|
2
7
  gem.name = "that_object_is_so_basic"
3
- gem.version = "0.0.1"
8
+ gem.version = TOISB::VERSION
4
9
  gem.summary = "That Object is So Basic (TOISB) is a BasicObject handler."
5
10
  gem.description = "TOISB provides a wrapper class and a helper module for dealing with BasicObjects in style!"
6
11
  gem.authors = ["Anthony M. Cook"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: that_object_is_so_basic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anthony M. Cook
@@ -68,6 +68,7 @@ files:
68
68
  - README.markdown
69
69
  - lib/that_object_is_so_basic.rb
70
70
  - lib/toisb.rb
71
+ - lib/toisb/version.rb
71
72
  - lib/toisb/wrapper.rb
72
73
  - that_object_is_so_basic.gemspec
73
74
  - uspec/toisb_spec.rb