dynamic_vars 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ # Add dependencies to develop your gem here.
7
+ # Include everything needed to run rake, tests, features, etc.
8
+ group :development do
9
+ gem "bundler", "~> 1.0.0"
10
+ gem "jeweler", "~> 1.5.2"
11
+ gem "rcov", ">= 0"
12
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,18 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ git (1.2.5)
5
+ jeweler (1.5.2)
6
+ bundler (~> 1.0.0)
7
+ git (>= 1.2.5)
8
+ rake
9
+ rake (0.8.7)
10
+ rcov (0.9.8)
11
+
12
+ PLATFORMS
13
+ ruby
14
+
15
+ DEPENDENCIES
16
+ bundler (~> 1.0.0)
17
+ jeweler (~> 1.5.2)
18
+ rcov
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 Rob Di Marco
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,19 @@
1
+ = dynamic_vars
2
+
3
+ Dynamic variable gem inspired by (http://chneukirchen.org/blog/archive/2005/04/dynamic-variables-in-ruby.html)
4
+
5
+ == Contributing to dynamic_vars
6
+
7
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
8
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
9
+ * Fork the project
10
+ * Start a feature/bugfix branch
11
+ * Commit and push until you are happy with your contribution
12
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2011 Rob Di Marco. See LICENSE.txt for
18
+ further details.
19
+
data/Rakefile ADDED
@@ -0,0 +1,53 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ begin
4
+ Bundler.setup(:default, :development)
5
+ rescue Bundler::BundlerError => e
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
+ end
10
+ require 'rake'
11
+
12
+ require 'jeweler'
13
+ Jeweler::Tasks.new do |gem|
14
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
15
+ gem.name = "dynamic_vars"
16
+ gem.homepage = "http://github.com/robdimarco/dynamic_vars"
17
+ gem.license = "MIT"
18
+ gem.summary = "Dynamic Variables library to allow for conditional setting of variables in a scope"
19
+ gem.description = "Dynamic Variables library to allow for conditional setting of variables in a scope"
20
+ gem.email = "rob@innovationontherun.com"
21
+ gem.authors = ["Rob Di Marco"]
22
+ # Include your dependencies below. Runtime dependencies are required when using your gem,
23
+ # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
24
+ # gem.add_runtime_dependency 'jabber4r', '> 0.1'
25
+ # gem.add_development_dependency 'rspec', '> 1.2.3'
26
+ end
27
+ Jeweler::RubygemsDotOrgTasks.new
28
+
29
+ require 'rake/testtask'
30
+ Rake::TestTask.new(:test) do |test|
31
+ test.libs << 'lib' << 'test'
32
+ test.pattern = 'test/**/test_*.rb'
33
+ test.verbose = true
34
+ end
35
+
36
+ require 'rcov/rcovtask'
37
+ Rcov::RcovTask.new do |test|
38
+ test.libs << 'test'
39
+ test.pattern = 'test/**/test_*.rb'
40
+ test.verbose = true
41
+ end
42
+
43
+ task :default => :test
44
+
45
+ require 'rake/rdoctask'
46
+ Rake::RDocTask.new do |rdoc|
47
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
48
+
49
+ rdoc.rdoc_dir = 'rdoc'
50
+ rdoc.title = "dynamic_vars #{version}"
51
+ rdoc.rdoc_files.include('README*')
52
+ rdoc.rdoc_files.include('lib/**/*.rb')
53
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 1.0.0
@@ -0,0 +1,72 @@
1
+ module DynamicVars
2
+ class << self
3
+ Thread.main[:DYNAMIC] = Hash.new { |hash, key|
4
+ raise NameError, "no such dynamic variable: #{key}"
5
+ }
6
+
7
+ def here!
8
+ Thread.current[:DYNAMIC] = Hash.new { |hash, key|
9
+ raise NameError, "no such dynamic variable: #{key}"
10
+ }.update Thread.main[:DYNAMIC]
11
+ end
12
+
13
+ def variables
14
+ Thread.current[:DYNAMIC] or here!
15
+ end
16
+
17
+ def variable(definition)
18
+ case definition
19
+ when Symbol
20
+ if variables.has_key? definition
21
+ raise NameError, "dynamic variable `#{definition}' already exists"
22
+ end
23
+ variables[definition] = nil
24
+ when Hash
25
+ definition.each { |key, value|
26
+ if variables.has_key? key
27
+ raise NameError, "dynamic variable `#{key}' already exists"
28
+ end
29
+ variables[key] = value
30
+ }
31
+ else
32
+ raise ArgumentError,
33
+ "can't create a new dynamic variable from #{definition.class}"
34
+ end
35
+ end
36
+
37
+ def [](key)
38
+ variables[key]
39
+ end
40
+
41
+ def []=(key, value)
42
+ variables[key] = value
43
+ end
44
+
45
+ def undefine(*keys)
46
+ keys.each { |key|
47
+ self[key]
48
+ variables.delete key
49
+ }
50
+ end
51
+
52
+ def let(bindings, &block)
53
+ save = {}
54
+ bindings.to_hash.collect { |key, value|
55
+ save[key] = self[key]
56
+ self[key] = value
57
+ }
58
+ block.call
59
+ variables.update save
60
+ end
61
+
62
+ def method_missing(name, *args)
63
+ if match = /=\Z/.match(name.to_s) # setter?
64
+ raise ArgumentError, "invalid setter call" unless args.size == 1
65
+ self[match.pre_match.intern] = args.first
66
+ else
67
+ raise ArgumentError, "invalid getter call" unless args.empty?
68
+ self[name]
69
+ end
70
+ end
71
+ end
72
+ end
data/test/helper.rb ADDED
@@ -0,0 +1,17 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ begin
4
+ Bundler.setup(:default, :development)
5
+ rescue Bundler::BundlerError => e
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
+ end
10
+ require 'test/unit'
11
+
12
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
13
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
14
+ require 'dynamic_vars'
15
+
16
+ class Test::Unit::TestCase
17
+ end
@@ -0,0 +1,96 @@
1
+ require 'helper'
2
+
3
+ class TestDynamicVars < Test::Unit::TestCase
4
+ def test_01_variable
5
+ DynamicVars.variable :foo
6
+ assert_nil DynamicVars[:foo]
7
+
8
+ DynamicVars.variable :bar => 5
9
+ assert_equal 5, DynamicVars[:bar]
10
+ end
11
+
12
+ def test_02_raise
13
+ assert_raise(NameError) {
14
+ DynamicVars[:notyethere]
15
+ }
16
+ DynamicVars.variable :notyethere
17
+ assert_nil DynamicVars[:notyethere]
18
+
19
+ assert_raise(NameError) {
20
+ DynamicVars.variable :notyethere
21
+ }
22
+ assert_raise(NameError) {
23
+ DynamicVars.variable :notyethere => 9
24
+ }
25
+ assert_raise(NameError) {
26
+ DynamicVars.undefine :blub
27
+ }
28
+ end
29
+
30
+ def test_03_set
31
+ DynamicVars.variable :setme
32
+ assert_nil DynamicVars[:setme]
33
+ DynamicVars[:setme] = 23
34
+ assert_equal 23, DynamicVars[:setme]
35
+ DynamicVars[:setme] = 32
36
+ assert_equal 32, DynamicVars[:setme]
37
+ end
38
+
39
+ def test_04_convenience
40
+ DynamicVars.variable :bla => 4
41
+ assert_equal 4, DynamicVars[:bla]
42
+ assert_equal 4, DynamicVars.bla
43
+ DynamicVars.bla = 5
44
+ assert_equal 5, DynamicVars.bla
45
+ DynamicVars.bla = nil
46
+ assert_nil DynamicVars.bla
47
+ DynamicVars.undefine :bla
48
+ assert_raise(NameError) {
49
+ DynamicVars.bla
50
+ }
51
+ end
52
+
53
+ def test_05_let
54
+ DynamicVars.variable :one => :one
55
+ DynamicVars.variable :two => :two
56
+ DynamicVars.variable :three => :three
57
+
58
+ assert_equal [:one, :two, :three],
59
+ [DynamicVars.one, DynamicVars.two, DynamicVars.three]
60
+
61
+ DynamicVars.let(:one => 1, :two => :zwei) {
62
+ # Check new binding
63
+ assert_equal [1, :zwei, :three],
64
+ [DynamicVars.one, DynamicVars.two, DynamicVars.three]
65
+
66
+ # Check update
67
+ DynamicVars.two = 2
68
+ assert_equal [1, 2, :three],
69
+ [DynamicVars.one, DynamicVars.two, DynamicVars.three]
70
+
71
+ # Check propagation
72
+ DynamicVars.three = 3
73
+ assert_equal [1, 2, 3],
74
+ [DynamicVars.one, DynamicVars.two, DynamicVars.three]
75
+ }
76
+
77
+ # Only three has propgated
78
+ assert_equal [:one, :two, 3],
79
+ [DynamicVars.one, DynamicVars.two, DynamicVars.three]
80
+ end
81
+
82
+ def test_06_thread
83
+ DynamicVars.variable :threaded_a => :a
84
+ DynamicVars.variable :threaded_b => :b
85
+
86
+ th = Thread.new {
87
+ assert_equal :a, DynamicVars.threaded_a
88
+ assert_equal :b, DynamicVars.threaded_b
89
+ DynamicVars.threaded_a = 1 # Will not propagate, due to thread locality
90
+ }
91
+ th.join
92
+
93
+ assert_equal :a, DynamicVars.threaded_a
94
+ assert_equal :b, DynamicVars.threaded_b
95
+ end
96
+ end
metadata ADDED
@@ -0,0 +1,123 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dynamic_vars
3
+ version: !ruby/object:Gem::Version
4
+ hash: 23
5
+ prerelease:
6
+ segments:
7
+ - 1
8
+ - 0
9
+ - 0
10
+ version: 1.0.0
11
+ platform: ruby
12
+ authors:
13
+ - Rob Di Marco
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-02-25 00:00:00 -05:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ type: :development
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ hash: 23
29
+ segments:
30
+ - 1
31
+ - 0
32
+ - 0
33
+ version: 1.0.0
34
+ name: bundler
35
+ version_requirements: *id001
36
+ prerelease: false
37
+ - !ruby/object:Gem::Dependency
38
+ type: :development
39
+ requirement: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ~>
43
+ - !ruby/object:Gem::Version
44
+ hash: 7
45
+ segments:
46
+ - 1
47
+ - 5
48
+ - 2
49
+ version: 1.5.2
50
+ name: jeweler
51
+ version_requirements: *id002
52
+ prerelease: false
53
+ - !ruby/object:Gem::Dependency
54
+ type: :development
55
+ requirement: &id003 !ruby/object:Gem::Requirement
56
+ none: false
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ hash: 3
61
+ segments:
62
+ - 0
63
+ version: "0"
64
+ name: rcov
65
+ version_requirements: *id003
66
+ prerelease: false
67
+ description: Dynamic Variables library to allow for conditional setting of variables in a scope
68
+ email: rob@innovationontherun.com
69
+ executables: []
70
+
71
+ extensions: []
72
+
73
+ extra_rdoc_files:
74
+ - LICENSE.txt
75
+ - README.rdoc
76
+ files:
77
+ - .document
78
+ - Gemfile
79
+ - Gemfile.lock
80
+ - LICENSE.txt
81
+ - README.rdoc
82
+ - Rakefile
83
+ - VERSION
84
+ - lib/dynamic_vars.rb
85
+ - test/helper.rb
86
+ - test/test_dynamic_vars.rb
87
+ has_rdoc: true
88
+ homepage: http://github.com/robdimarco/dynamic_vars
89
+ licenses:
90
+ - MIT
91
+ post_install_message:
92
+ rdoc_options: []
93
+
94
+ require_paths:
95
+ - lib
96
+ required_ruby_version: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ">="
100
+ - !ruby/object:Gem::Version
101
+ hash: 3
102
+ segments:
103
+ - 0
104
+ version: "0"
105
+ required_rubygems_version: !ruby/object:Gem::Requirement
106
+ none: false
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ hash: 3
111
+ segments:
112
+ - 0
113
+ version: "0"
114
+ requirements: []
115
+
116
+ rubyforge_project:
117
+ rubygems_version: 1.5.2
118
+ signing_key:
119
+ specification_version: 3
120
+ summary: Dynamic Variables library to allow for conditional setting of variables in a scope
121
+ test_files:
122
+ - test/helper.rb
123
+ - test/test_dynamic_vars.rb