rubyw_helper 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Rakefile +1 -0
  2. data/lib/rubyw_helper.rb +1 -1
  3. data/tasks/git.rake +1 -1
  4. metadata +12 -3
data/Rakefile CHANGED
@@ -11,6 +11,7 @@ PROJ.email = 'raggi@rubyforge.org'
11
11
  PROJ.url = 'http://github.com/raggi/rubyw_helper'
12
12
  PROJ.rubyforge.name = 'libraggi'
13
13
  PROJ.version = RubywHelper.version
14
+ PROJ.gem.dependencies << 'exception_string'
14
15
 
15
16
  PROJ.exclude = %w(tmp$ bak$ ~$ CVS \.git \.hg \.svn ^pkg ^doc \.DS_Store \.cvs
16
17
  \.svn \.hgignore \.gitignore \.dotest \.swp$ ~$ \.bin$ \.h$ \.rc$ \.res$)
data/lib/rubyw_helper.rb CHANGED
@@ -3,7 +3,7 @@ require 'exception_string'
3
3
 
4
4
  class RubywHelper
5
5
 
6
- Version = VERSION = '0.1.1'
6
+ Version = VERSION = '0.1.2'
7
7
  def self.version; Version; end
8
8
 
9
9
  app_name = File.basename($0)
data/tasks/git.rake CHANGED
@@ -34,7 +34,7 @@ namespace :git do
34
34
 
35
35
  end # namespace :git
36
36
 
37
- # task 'gem:release' => 'git:create_tag'
37
+ task 'gem:release' => 'git:create_tag'
38
38
 
39
39
  end # if HAVE_GIT
40
40
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubyw_helper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Tucker
@@ -11,8 +11,17 @@ cert_chain: []
11
11
 
12
12
  date: 2009-01-16 00:00:00 +00:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: exception_string
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
16
25
  description: A simple redirector for use when you just want to safely redirect stdio. Simply encapsulates a few different safety mechanisms when redirecting stdio, with the primary goal of making it easier to write apps that run under rubyw.exe, where ruby loads with stdio closed. Whilst the primary intention for use is under win32, and was actually developed as an external helper for specifically win32-service usage, this gem may be useful to some other folks on other platforms. It is not win32 specific.
17
26
  email: raggi@rubyforge.org
18
27
  executables: []