defer_proc 0.1.0
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 +7 -0
- data/.gitignore +11 -0
- data/.travis.yml +3 -0
- data/Gemfile +4 -0
- data/README.md +70 -0
- data/Rakefile +27 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/defer_proc.gemspec +25 -0
- data/lib/defer_proc.rb +45 -0
- data/lib/defer_proc/version.rb +3 -0
- metadata +124 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: a0b6a68f5efc24480758256d9edacdbef4ebebaf
|
4
|
+
data.tar.gz: 27ee0d11d670e7fd2adbd30c36f62ec617210e4b
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b79f42405d5f8859a3ce41a2866211825993cb1df60ced8f4f3cca82c8efff5b318181d41ce4d35d38b4a2264c7cf192659241f5803c07dc8b23ad8096393651
|
7
|
+
data.tar.gz: 1b73ba1f6c4a04e91857ee1b338257eb73314310397ff1f6c0111c4e0abae62cb588dc36e3ae475619c8367bcf46f5b08df249538b6d5ae8b45d52757eb6a5ad
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
# DeferProc
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/defer_proc`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'defer_proc'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install defer_proc
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
This gem can be used to defer execution of some blocks until certain conditions are met.
|
26
|
+
|
27
|
+
The `DeferProc` class takes a block on initialization to run at a later time. The `DeferProc#until` and `DeferProc#while` methods are used to specify the conditions for later execution:
|
28
|
+
|
29
|
+
```ruby
|
30
|
+
2.2.1 :001 > require 'defer_proc'
|
31
|
+
=> true
|
32
|
+
2.2.1 :002 > trigger = false
|
33
|
+
=> false
|
34
|
+
2.2.1 :003 > DeferProc.new { puts "Hello, World!" }.until { trigger }
|
35
|
+
=> #<Thread:0xa3c8e58@/path/to/lib/defer_proc.rb:16 run>
|
36
|
+
2.2.1 :004 > trigger = true
|
37
|
+
=> true
|
38
|
+
Hello, World
|
39
|
+
```
|
40
|
+
|
41
|
+
The method `DeferProc#until` defers execution *until* the block provided is true, and the method `DeferProc#while` defers execution *while* the block provided is true. The block provided to `DeferProc#until` or `DeferProc#while` runs in a separate thread, which polls the value of the conditional at specified intervals. By default, polling occurs every 1/10 of a second, although the interval can be specified when `DeferProc` is initialized:
|
42
|
+
|
43
|
+
```ruby
|
44
|
+
require 'defer_proc'
|
45
|
+
|
46
|
+
# Defer usage of class until it exists, polling every second
|
47
|
+
DeferProc.new(1.0) { FutureClass.do_something }.until { defined?(FutureClass) }
|
48
|
+
|
49
|
+
class FutureClass
|
50
|
+
# Class definition
|
51
|
+
end
|
52
|
+
|
53
|
+
# FutureClass.do_something gets called
|
54
|
+
```
|
55
|
+
|
56
|
+
This gem was written for use in the [`dotfile`](https://github.com/tedstudley/dotfile.git) gem, to enable certain Rails features to be wrapped from inside the .irbrc or .pryrc ruby dotfiles.
|
57
|
+
|
58
|
+
## Development
|
59
|
+
|
60
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
|
61
|
+
|
62
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
63
|
+
|
64
|
+
## Contributing
|
65
|
+
|
66
|
+
1. Fork it ( https://github.com/TedStudley/defer_proc/fork )
|
67
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
68
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
69
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
70
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
require 'bundler/gem_tasks'
|
2
|
+
require 'rdoc/task'
|
3
|
+
require 'rake/testtask'
|
4
|
+
|
5
|
+
Rake::RDocTask.new do |rdoc|
|
6
|
+
rdoc.main = 'README.md'
|
7
|
+
|
8
|
+
if rdoc.respond_to? :markup=
|
9
|
+
rdoc.markup = 'markdown'
|
10
|
+
end
|
11
|
+
rdoc.generator = 'fivefish'
|
12
|
+
|
13
|
+
rdoc.rdoc_files.include(rdoc.main, 'lib/**/*.rb')
|
14
|
+
end
|
15
|
+
|
16
|
+
Rake::TestTask.new do |test|
|
17
|
+
test.libs.push 'test'
|
18
|
+
test.pattern = 'test/**/test_*.rb'
|
19
|
+
test.warning = true
|
20
|
+
test.verbose = true
|
21
|
+
end
|
22
|
+
|
23
|
+
desc 'Generates a coverage report'
|
24
|
+
task :coverage do
|
25
|
+
ENV['COVERAGE'] = 'true'
|
26
|
+
Rake::Task['test'].execute
|
27
|
+
end
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "defer"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
data/defer_proc.gemspec
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'defer_proc/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "defer_proc"
|
8
|
+
spec.version = DeferProc::VERSION
|
9
|
+
spec.authors = ["tedstudley"]
|
10
|
+
spec.email = ["tedstudley@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Defer execution of a block until certain requirements are met.}
|
13
|
+
spec.homepage = "https://github.com/tedstudley/defer_proc.git"
|
14
|
+
|
15
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
16
|
+
spec.bindir = "exe"
|
17
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
18
|
+
spec.require_paths = ["lib"]
|
19
|
+
|
20
|
+
spec.add_development_dependency 'bundler', '~> 1.9'
|
21
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
22
|
+
spec.add_development_dependency 'pry', '~> 0.10'
|
23
|
+
spec.add_development_dependency 'rdoc-generator-fivefish', '~> 0.1'
|
24
|
+
spec.add_development_dependency 'minitest'
|
25
|
+
end
|
data/lib/defer_proc.rb
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
require "defer_proc/version"
|
2
|
+
|
3
|
+
# Class to defer execution of a block
|
4
|
+
class DeferProc
|
5
|
+
|
6
|
+
# Initialize with the block for deferred execution
|
7
|
+
def initialize(interval=0.1, &block)
|
8
|
+
# `Procrastinate` requires a block be passed to initialization
|
9
|
+
throw ArgumentError.new("DeferProc must be initialized with a block") if block.nil?
|
10
|
+
# Interval must be a positive number
|
11
|
+
throw ArgumentError.new("Polling interval must be a number.") unless interval.is_a? Numeric
|
12
|
+
throw ArgumentError.new("Polling interval must be positive.") unless interval > 0
|
13
|
+
|
14
|
+
@interval = interval
|
15
|
+
@deferred_block = block
|
16
|
+
end
|
17
|
+
|
18
|
+
# Defer execution until the provided block is satisfied
|
19
|
+
def until(&conditional)
|
20
|
+
# `DeferProc#until` must be passed a conditional block
|
21
|
+
throw ArgumentError.new("A conditional block is required") if conditional.nil?
|
22
|
+
|
23
|
+
# forward the (negated) block to `DeferProc#while`
|
24
|
+
conditional_proc = Proc.new { not conditional.call }
|
25
|
+
self.while(&conditional_proc)
|
26
|
+
end
|
27
|
+
|
28
|
+
# Defer execution of the @deferred_block while the provided block is satisfied
|
29
|
+
def while(&conditional)
|
30
|
+
# `DeferProc#while` must be passed a conditional block
|
31
|
+
throw ArgumentError.new("A conditional block is required") if conditional.nil?
|
32
|
+
|
33
|
+
Thread.new {
|
34
|
+
# Lower the priority for the polling thread
|
35
|
+
Thread.current.priority = -2
|
36
|
+
|
37
|
+
while yield do
|
38
|
+
# Poll ever `@interval` seconds until the conditional block is satisfied.
|
39
|
+
sleep @interval
|
40
|
+
end
|
41
|
+
# Call the deferred block
|
42
|
+
@deferred_block.call
|
43
|
+
}
|
44
|
+
end
|
45
|
+
end
|
metadata
ADDED
@@ -0,0 +1,124 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: defer_proc
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- tedstudley
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-05-17 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.9'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.9'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: pry
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0.10'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0.10'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rdoc-generator-fivefish
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0.1'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0.1'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: minitest
|
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
|
+
description:
|
84
|
+
email:
|
85
|
+
- tedstudley@gmail.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- ".gitignore"
|
91
|
+
- ".travis.yml"
|
92
|
+
- Gemfile
|
93
|
+
- README.md
|
94
|
+
- Rakefile
|
95
|
+
- bin/console
|
96
|
+
- bin/setup
|
97
|
+
- defer_proc.gemspec
|
98
|
+
- lib/defer_proc.rb
|
99
|
+
- lib/defer_proc/version.rb
|
100
|
+
homepage: https://github.com/tedstudley/defer_proc.git
|
101
|
+
licenses: []
|
102
|
+
metadata: {}
|
103
|
+
post_install_message:
|
104
|
+
rdoc_options: []
|
105
|
+
require_paths:
|
106
|
+
- lib
|
107
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - ">="
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '0'
|
112
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0'
|
117
|
+
requirements: []
|
118
|
+
rubyforge_project:
|
119
|
+
rubygems_version: 2.4.6
|
120
|
+
signing_key:
|
121
|
+
specification_version: 4
|
122
|
+
summary: Defer execution of a block until certain requirements are met.
|
123
|
+
test_files: []
|
124
|
+
has_rdoc:
|