procemon 0.3.3 → 0.3.4

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.3
1
+ 0.3.4
@@ -0,0 +1,15 @@
1
+ #
2
+ #class SafeThread < Thread
3
+ #
4
+ # undef_method :initialize
5
+ #
6
+ #end
7
+ #
8
+ #
9
+ #test1 = SafeThread.new { sleep(5); 2*2 }
10
+ #
11
+ #puts "hello world!"
12
+ #
13
+ #test2 = SafeThread.new { "hy" }
14
+ #
15
+ #puts test1.value
data/procemon.gemspec CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.version = File.open(File.join(File.dirname(__FILE__),"VERSION")).read.split("\n")[0].chomp.gsub(' ','')
10
10
  spec.authors = ["Adam Luzsi"]
11
11
  spec.email = ["adamluzsi@gmail.com"]
12
- spec.description = %q{This is a collection of my Ruby Procs in the adventure of becoming the best! In short this provides extra tools in Application configs, argumens processing,daemonise, eval,port check, require relative files, or directories, string to duck parsing, system tmp_dir using, meta-programing, and a lot of monkey patch for extra functionality }
12
+ spec.description = %q{This is a collection of my Ruby Procs in the adventure of becoming the best! In short this provides extra tools in Application configs, argumens processing,daemonise,eval, getting source of a block,method,process and work with it, or even fuse them into a new proc , require relative files, or directories, string to duck parsing, system tmp_dir using, meta-programing stuffs,async dsl for easy concurrency patterns, micro framework that can be used alongside with any framework and a lot of monkey patch for extra functions :) follow me on github if you like my work! }
13
13
  spec.summary = %q{Gotta catch em all!}
14
14
  spec.homepage = "https://github.com/adamluzsi/procemon"
15
15
  spec.license = "MIT"
@@ -31,4 +31,4 @@ Gem::Specification.new do |spec|
31
31
  #spec.add_development_dependency "rake"
32
32
  #spec.add_development_dependency "bundle"
33
33
 
34
- end
34
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: procemon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,12 +9,15 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-01-06 00:00:00.000000000 Z
12
+ date: 2014-01-08 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: ! 'This is a collection of my Ruby Procs in the adventure of becoming
15
- the best! In short this provides extra tools in Application configs, argumens processing,daemonise,
16
- eval,port check, require relative files, or directories, string to duck parsing,
17
- system tmp_dir using, meta-programing, and a lot of monkey patch for extra functionality '
15
+ the best! In short this provides extra tools in Application configs, argumens processing,daemonise,eval,
16
+ getting source of a block,method,process and work with it, or even fuse them into
17
+ a new proc , require relative files, or directories, string to duck parsing, system
18
+ tmp_dir using, meta-programing stuffs,async dsl for easy concurrency patterns, micro
19
+ framework that can be used alongside with any framework and a lot of monkey patch
20
+ for extra functions :) follow me on github if you like my work! '
18
21
  email:
19
22
  - adamluzsi@gmail.com
20
23
  executables: []
@@ -38,6 +41,7 @@ files:
38
41
  - lib/procemon/function/argv.rb
39
42
  - lib/procemon/function/async/async.rb
40
43
  - lib/procemon/function/async/kernel.rb
44
+ - lib/procemon/function/async/safe_thread.rb
41
45
  - lib/procemon/function/binding/binding.rb
42
46
  - lib/procemon/function/binding/bindless.rb
43
47
  - lib/procemon/function/daemon.rb