rutema_elements 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,5 @@
1
+ === 0.1.2 / 2008-11-04
2
+ * shared_path handling in mstest fixed
1
3
  === 0.1.1 / 2008-11-03
2
4
  * script_root and assembly_root configuration options are now overiddable in the specs
3
5
  === 0.1.0 / 2008-10-28
@@ -9,7 +9,7 @@ module Rutema
9
9
  module Version
10
10
  MAJOR=0
11
11
  MINOR=1
12
- TINY=1
12
+ TINY=2
13
13
  STRING=[ MAJOR, MINOR, TINY ].join( "." )
14
14
  end
15
15
  module Web
@@ -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
- tfsbuild=cfg[:shared_path]
130
- raise Rutema::ParserError,"Missing :share key for tfsbuild configuration" unless shared_path[:share]
131
- raise Rutema::ParserError,"Missing :local key for tfsbuild configuration" unless shared_path[:local]
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
- assembly_path.gsub!(tfsbuild[:share],tfsbuild[:local])
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.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-03 00:00:00 +01:00
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.1
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.0
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