rutema_elements 0.1.1 → 0.1.2
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/History.txt +2 -0
- data/lib/rutema/elements/general.rb +1 -1
- data/lib/rutema/elements/win32.rb +6 -5
- metadata +4 -4
data/History.txt
CHANGED
@@ -126,12 +126,13 @@ module Rutema
|
|
126
126
|
raise Rutema::ParserError,"Cannot find assembly file '#{assembly_path}' in mstest step" unless File.exists?(assembly_path)
|
127
127
|
#check to see if we apply the workaround
|
128
128
|
if cfg[:shared_path]
|
129
|
-
|
130
|
-
raise Rutema::ParserError,"Missing :share key for
|
131
|
-
raise Rutema::ParserError,"Missing :local key for
|
132
|
-
@logger.debug("Shared path manipulation (#{shared_path[:share]}=>#{shared_path[:local]}")
|
129
|
+
shared_path=cfg[:shared_path]
|
130
|
+
raise Rutema::ParserError,"Missing :share key for shared_path configuration" unless shared_path[:share]
|
131
|
+
raise Rutema::ParserError,"Missing :local key for shared_path configuration" unless shared_path[:local]
|
133
132
|
@logger.debug("Assembly path is '#{assembly_path}'")
|
134
|
-
|
133
|
+
@logger.debug("Shared path manipulation (#{shared_path[:share]}=>#{shared_path[:local]}")
|
134
|
+
assembly_path.gsub!(shared_path[:share],shared_path[:local])
|
135
|
+
@logger.debug("Assembly path is now '#{assembly_path}'")
|
135
136
|
end
|
136
137
|
#make the path windows compatible
|
137
138
|
assembly_path.gsub!('/',"\\\\")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rutema_elements
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vassilis Rizopoulos
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-11-
|
12
|
+
date: 2008-11-04 00:00:00 +01:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -40,7 +40,7 @@ dependencies:
|
|
40
40
|
requirements:
|
41
41
|
- - ">="
|
42
42
|
- !ruby/object:Gem::Version
|
43
|
-
version: 1.8.
|
43
|
+
version: 1.8.2
|
44
44
|
version:
|
45
45
|
description: "== DESCRIPTION: Rutema Elements modules are the easiest way to add functionality to rutema parsers. Just derive your parser from the basic rutema parser and include the module of your choice class MyParser < Rutema::MinimalXMLParser include Rutema::Elements::IIS include Rutema::Elements::Standard end and voila! your parser now understands how to reset IIS, wait and fail! == FEATURES/PROBLEMS: Easy addition of extra functionality for rutema IIS, MSTest and SQLServer modules are windows specific as they use the MS commandline tools"
|
46
46
|
email: riva@braveworld.net
|
@@ -86,7 +86,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
86
86
|
requirements: []
|
87
87
|
|
88
88
|
rubyforge_project: patir
|
89
|
-
rubygems_version: 1.3.
|
89
|
+
rubygems_version: 1.3.1
|
90
90
|
signing_key:
|
91
91
|
specification_version: 2
|
92
92
|
summary: rutema elements provides modules that can be used with custom parsers to add elements to rutema specifications
|