instance_tracker 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e07a37fdbc098d6c237777fb8a8fe015a282cdb7
4
+ data.tar.gz: d29f55338021f42da49ef5b255221add952eec30
5
+ SHA512:
6
+ metadata.gz: 8ae681ade48cc0a46b1f89150731ef971da8907491789058df97479af2e2f6e0d97bf9389221a9205e0728f713644b6497f2339d0ed089c87dbd66d59cc2aafe
7
+ data.tar.gz: 02296562de4f8bf331da08f5c181927d1cdd27e18804591a1288d5764962a6d61974512b78f36a94e48eef33079f0ac7eccb702fae1c7528424c46bc26df55af
data/.gitignore ADDED
@@ -0,0 +1,27 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+
19
+ # Vim
20
+ *.swp
21
+ *.swo
22
+
23
+ # Backup
24
+ *~
25
+
26
+ # Mac
27
+ .DS_Store
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.0.0-p247
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in instance_tracker.gemspec
4
+ gemspec
data/Guardfile ADDED
@@ -0,0 +1,24 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ guard 'rspec', :cli => "--color --format documentation --fail-fast", :all_on_start => false, :all_after_pass => false do
5
+ watch(%r{^spec/.+_spec\.rb$})
6
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
7
+ watch('spec/spec_helper.rb') { "spec" }
8
+
9
+ # Rails example
10
+ watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
11
+ watch(%r{^app/(.*)(\.erb|\.haml)$}) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
12
+ watch(%r{^app/controllers/(.+)_(controller)\.rb$}) { |m| ["spec/routing/#{m[1]}_routing_spec.rb", "spec/#{m[2]}s/#{m[1]}_#{m[2]}_spec.rb", "spec/acceptance/#{m[1]}_spec.rb"] }
13
+ watch(%r{^spec/support/(.+)\.rb$}) { "spec" }
14
+ watch('config/routes.rb') { "spec/routing" }
15
+ watch('app/controllers/application_controller.rb') { "spec/controllers" }
16
+
17
+ # Capybara features specs
18
+ watch(%r{^app/views/(.+)/.*\.(erb|haml)$}) { |m| "spec/features/#{m[1]}_spec.rb" }
19
+
20
+ # Turnip features and steps
21
+ watch(%r{^spec/acceptance/(.+)\.feature$})
22
+ watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'spec/acceptance' }
23
+ end
24
+
data/MIT-LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Michael de Silva
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,50 @@
1
+ # InstanceTracker
2
+
3
+ A Simple Ruby DSL for Instance Tracking.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'instance_tracker'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install instance_tracker
18
+
19
+ ## API Summary
20
+
21
+ Start by including `InstanceTracker::Trackable` within classes in which
22
+ you want to track an instance variable; this provides the class
23
+ a `track` class method which allows you to define which instance
24
+ variable to track.
25
+
26
+ ```ruby
27
+ class Foo
28
+ include InstanceTracker::Trackable
29
+ track :wrapper
30
+
31
+ def initialize(wrapper)
32
+ @wrapper = wrapper
33
+ end
34
+ end
35
+ ```
36
+
37
+ You are now able to access the `wrapper` by simply calling
38
+ `trackable_instance` from any instance of your class.
39
+
40
+ ## Contributing
41
+
42
+ 1. Fork it
43
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
44
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
45
+ 4. Push to the branch (`git push origin my-new-feature`)
46
+ 5. Create new Pull Request
47
+
48
+ ## License
49
+
50
+ This project rocks and uses MIT-LICENSE.
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,30 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'instance_tracker/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "instance_tracker"
8
+ spec.version = InstanceTracker::VERSION
9
+ spec.authors = ["Michael de Silva"]
10
+ spec.email = ["michael@mwdesilva.com"]
11
+ spec.homepage = "http://mwdesilva.com"
12
+ spec.summary = "A Simple Ruby DSL for Instance Tracking"
13
+ spec.description = spec.summary
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.required_ruby_version = '>= 1.9.3'
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.3"
24
+ spec.add_development_dependency "rake"
25
+ spec.add_development_dependency "rspec"
26
+ spec.add_development_dependency "pry"
27
+ spec.add_development_dependency "mocha"
28
+ spec.add_development_dependency "guard-rspec"
29
+ spec.add_development_dependency "yard"
30
+ end
@@ -0,0 +1,72 @@
1
+ # encoding: utf-8
2
+
3
+ module InstanceTracker
4
+
5
+ module Trackable
6
+
7
+ # The instance of {CleanRoom} is used to store our instance.
8
+
9
+ class CleanRoom
10
+ attr_reader :instance
11
+
12
+ def initialize(instance)
13
+ @instance = instance
14
+ end
15
+
16
+ end
17
+
18
+ class << self
19
+
20
+ def included _klass
21
+ _klass.class_eval do
22
+ include InstanceMethods
23
+ extend ClassMethods
24
+ end
25
+ end
26
+
27
+ end
28
+
29
+ module InstanceMethods
30
+
31
+ # @api private
32
+ #
33
+ # The instance of {CleanRoom} is memoised and returned
34
+ # accordingly.
35
+ #
36
+ # @return [CleanRoom]
37
+ # @raise [NotImplementedError] if the instance variable tracked has not been defined within the included _klass.
38
+
39
+ def trackable
40
+ @trackable ||= begin
41
+ entity = instance_variable_get(:"@#{singleton_class.trackable_instance}")
42
+ raise NotImplementedError unless entity
43
+ Class.new(CleanRoom).new(entity)
44
+ end
45
+ end
46
+
47
+ # Returns the instance tracked by {CleanRoom}
48
+
49
+ def trackable_instance
50
+ trackable.instance
51
+ end
52
+
53
+ end
54
+
55
+ module ClassMethods
56
+
57
+ # Sets the instance variable to be tracked.
58
+ #
59
+ # @param name [String] the instance variable to track
60
+
61
+ def track(name)
62
+ singleton_class.class_eval do
63
+ define_method :trackable_instance do
64
+ name
65
+ end
66
+ end
67
+ end
68
+ end
69
+
70
+ end
71
+
72
+ end
@@ -0,0 +1,3 @@
1
+ module InstanceTracker
2
+ VERSION = "0.1.1"
3
+ end
@@ -0,0 +1,6 @@
1
+ # encoding: utf-8
2
+ require "instance_tracker/version"
3
+
4
+ module InstanceTracker
5
+ autoload :Trackable, 'instance_tracker/trackable'
6
+ end
@@ -0,0 +1,24 @@
1
+ # encoding: utf-8
2
+ require 'spec_helper'
3
+
4
+ module InstanceTracker
5
+ describe Trackable do
6
+
7
+ class SpecHarness
8
+ include InstanceTracker::Trackable
9
+ track :context
10
+
11
+ def initialize
12
+ @context = "Foo"
13
+ end
14
+ end
15
+
16
+ let(:subject) { SpecHarness.new }
17
+
18
+ it "should respond to `#trackable_instance`" do
19
+ expect(subject.respond_to? :trackable_instance).to be
20
+ expect(subject.trackable_instance).to eq("Foo")
21
+ end
22
+
23
+ end
24
+ end
@@ -0,0 +1,29 @@
1
+ # encoding: utf-8
2
+ require 'instance_tracker'
3
+ require 'mocha/api'
4
+ require 'pry'
5
+
6
+ # This file was generated by the `rspec --init` command. Conventionally, all
7
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
8
+ # Require this file using `require "spec_helper"` to ensure that it is only
9
+ # loaded once.
10
+ #
11
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
12
+ RSpec.configure do |config|
13
+ config.mock_with :mocha
14
+
15
+ config.treat_symbols_as_metadata_keys_with_true_values = true
16
+ config.run_all_when_everything_filtered = true
17
+ config.filter_run :focus
18
+
19
+ # Run specs in random order to surface order dependencies. If you find an
20
+ # order dependency and want to debug it, you can fix the order by providing
21
+ # the seed, which is printed after each run.
22
+ # --seed 1234
23
+ config.order = 'random'
24
+
25
+ # Disable should syntax
26
+ config.expect_with :rspec do |c|
27
+ c.syntax = :expect
28
+ end
29
+ end
metadata ADDED
@@ -0,0 +1,159 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: instance_tracker
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Michael de Silva
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-11-04 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: mocha
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: guard-rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '>='
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: yard
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - '>='
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - '>='
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description: A Simple Ruby DSL for Instance Tracking
112
+ email:
113
+ - michael@mwdesilva.com
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - .gitignore
119
+ - .rspec
120
+ - .ruby-version
121
+ - Gemfile
122
+ - Guardfile
123
+ - MIT-LICENSE
124
+ - README.md
125
+ - Rakefile
126
+ - instance_tracker.gemspec
127
+ - lib/instance_tracker.rb
128
+ - lib/instance_tracker/trackable.rb
129
+ - lib/instance_tracker/version.rb
130
+ - spec/plugin/trackable_spec.rb
131
+ - spec/spec_helper.rb
132
+ homepage: http://mwdesilva.com
133
+ licenses:
134
+ - MIT
135
+ metadata: {}
136
+ post_install_message:
137
+ rdoc_options: []
138
+ require_paths:
139
+ - lib
140
+ required_ruby_version: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - '>='
143
+ - !ruby/object:Gem::Version
144
+ version: 1.9.3
145
+ required_rubygems_version: !ruby/object:Gem::Requirement
146
+ requirements:
147
+ - - '>='
148
+ - !ruby/object:Gem::Version
149
+ version: '0'
150
+ requirements: []
151
+ rubyforge_project:
152
+ rubygems_version: 2.0.3
153
+ signing_key:
154
+ specification_version: 4
155
+ summary: A Simple Ruby DSL for Instance Tracking
156
+ test_files:
157
+ - spec/plugin/trackable_spec.rb
158
+ - spec/spec_helper.rb
159
+ has_rdoc: