pvc 0.0.1

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/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ .DS_Store
2
+ *.sw*
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "http://rubygems.org"
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,24 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ pvc (0.0.1)
5
+
6
+ GEM
7
+ remote: http://rubygems.org/
8
+ specs:
9
+ diff-lcs (1.1.3)
10
+ rspec (2.12.0)
11
+ rspec-core (~> 2.12.0)
12
+ rspec-expectations (~> 2.12.0)
13
+ rspec-mocks (~> 2.12.0)
14
+ rspec-core (2.12.2)
15
+ rspec-expectations (2.12.1)
16
+ diff-lcs (~> 1.1.3)
17
+ rspec-mocks (2.12.1)
18
+
19
+ PLATFORMS
20
+ ruby
21
+
22
+ DEPENDENCIES
23
+ pvc!
24
+ rspec
data/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # PVC
2
+
3
+ Pipe between processes as easily as in the shell
4
+
5
+ ## Check it out
6
+
7
+ # run the specs
8
+ bundle exec rspec spec
9
+
10
+ # run the simulation interactively (see description below)
11
+ ./bin/gorobo
12
+
13
+ ## Install it as a RubyGem
14
+
15
+ This code is packaged as a Gem. If you like, you can build and install it by running:
16
+
17
+ gem build pvc.gemspec
18
+ gem install pvc-*.gem
19
+
20
+ ## Description
21
+
22
+
23
+ ## Compatibility
24
+
25
+ Written and tested with Ruby 1.9.3.
26
+
27
+ ## Contact
28
+
29
+ [Chris Berkhout](http://chrisberkhout.com/about)
30
+
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,3 @@
1
+ module PVC
2
+ VERSION = "0.0.1"
3
+ end
data/lib/pvc.rb ADDED
File without changes
data/pvc.gemspec ADDED
@@ -0,0 +1,24 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "pvc/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "pvc"
7
+ s.version = PVC::VERSION
8
+ s.authors = ["Chris Berkhout"]
9
+ s.email = ["chrisberkhout@gmail.com"]
10
+ s.homepage = "http://chrisberkhout.com"
11
+ s.summary = %q{Easy piping between processes}
12
+
13
+ s.rubyforge_project = "pvc"
14
+
15
+ s.files = `git ls-files`.split("\n")
16
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
+ s.require_paths = ["lib"]
19
+
20
+ # specify any dependencies here; for example:
21
+ s.add_development_dependency "rspec"
22
+
23
+ s.required_ruby_version = '>= 1.9.0'
24
+ end
File without changes
metadata ADDED
@@ -0,0 +1,72 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pvc
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Chris Berkhout
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-01-26 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rspec
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ description:
31
+ email:
32
+ - chrisberkhout@gmail.com
33
+ executables: []
34
+ extensions: []
35
+ extra_rdoc_files: []
36
+ files:
37
+ - .gitignore
38
+ - Gemfile
39
+ - Gemfile.lock
40
+ - README.md
41
+ - Rakefile
42
+ - lib/pvc.rb
43
+ - lib/pvc/version.rb
44
+ - pvc.gemspec
45
+ - spec/spec_helper.rb
46
+ homepage: http://chrisberkhout.com
47
+ licenses: []
48
+ post_install_message:
49
+ rdoc_options: []
50
+ require_paths:
51
+ - lib
52
+ required_ruby_version: !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ! '>='
56
+ - !ruby/object:Gem::Version
57
+ version: 1.9.0
58
+ required_rubygems_version: !ruby/object:Gem::Requirement
59
+ none: false
60
+ requirements:
61
+ - - ! '>='
62
+ - !ruby/object:Gem::Version
63
+ version: '0'
64
+ requirements: []
65
+ rubyforge_project: pvc
66
+ rubygems_version: 1.8.24
67
+ signing_key:
68
+ specification_version: 3
69
+ summary: Easy piping between processes
70
+ test_files:
71
+ - spec/spec_helper.rb
72
+ has_rdoc: