nservicebus 2.0.0.1281 → 2.0.0.1281.20100811

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.
@@ -0,0 +1,34 @@
1
+ require 'FileUtils'
2
+ require 'thor'
3
+ require 'yaml'
4
+
5
+ module NServiceBus
6
+ class CLI < Thor
7
+ include Thor::Actions
8
+
9
+
10
+ desc "configure TRANSPORTTYPE", "configures the given transport"
11
+ def configure(name)
12
+ puts msmq_runner
13
+ cmd = msmq_runner + ' /i'
14
+ if name.downcase == 'msmq'
15
+ puts `#{cmd}`
16
+ end
17
+ end
18
+
19
+ desc "verify TRANSPORTTYPE", "verifies that the given transport is installed correctly"
20
+ def verify(name)
21
+ cmd = msmq_runner
22
+ if name.downcase == 'msmq'
23
+ puts `#{cmd}`
24
+ end
25
+ end
26
+
27
+ private
28
+
29
+ def msmq_runner
30
+ File.dirname(__FILE__) + '/tools/msmqutils/runner.exe'
31
+ end
32
+
33
+ end
34
+ end
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/ruby
2
+
3
+ require 'cli'
4
+
5
+ begin
6
+ NServiceBus::CLI.start
7
+ rescue Interrupt
8
+ puts 'quitting'
9
+ exit 1
10
+ end
@@ -0,0 +1,3 @@
1
+ require './cli.rb'
2
+
3
+ NServiceBus::CLI.start
Binary file
Binary file
Binary file
@@ -0,0 +1,53 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <configuration>
3
+ <configSections>
4
+ <section name="MsmqTransportConfig" type="NServiceBus.Config.MsmqTransportConfig, NServiceBus.Core" />
5
+ <section name="UnicastBusConfig" type="NServiceBus.Config.UnicastBusConfig, NServiceBus.Core" />
6
+
7
+ <sectionGroup name="common">
8
+ <section name="logging" type="Common.Logging.ConfigurationSectionHandler, NServiceBus.Core" />
9
+ </sectionGroup>
10
+ <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" />
11
+ </configSections>
12
+
13
+ <MsmqTransportConfig
14
+ InputQueue="client"
15
+ ErrorQueue="error"
16
+ NumberOfWorkerThreads="1"
17
+ MaxRetries="5"
18
+ />
19
+
20
+ <appSettings>
21
+ <add key="NameSpace" value="http://www.UdiDahan.com"/>
22
+ <!-- relevant for a xml serialization only -->
23
+ <add key="Serialization" value="xml"/>
24
+ <!-- can be either "xml", or "binary" -->
25
+ </appSettings>
26
+
27
+ <common>
28
+ <logging>
29
+ <factoryAdapter type="Common.Logging.Log4Net.Log4NetLoggerFactoryAdapter, NServiceBus.Core">
30
+ <arg key="configType" value="INLINE" />
31
+ </factoryAdapter>
32
+ </logging>
33
+ </common>
34
+
35
+ <log4net debug="false">
36
+ <appender name="console" type="log4net.Appender.ConsoleAppender" >
37
+ <layout type="log4net.Layout.PatternLayout">
38
+ <param name="ConversionPattern" value="%d [%t] %-5p %c [%x] &lt;%X{auth}&gt; - %m%n" />
39
+ </layout>
40
+ </appender>
41
+
42
+ <root>
43
+ <level value="ALL" />
44
+ <appender-ref ref="console" />
45
+ </root>
46
+
47
+ <logger name="Spring">
48
+ <level value="ERROR" />
49
+ </logger>
50
+
51
+ </log4net>
52
+
53
+ </configuration>
Binary file
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nservicebus
3
3
  version: !ruby/object:Gem::Version
4
- hash: 2669
4
+ hash: 40204653
5
5
  prerelease: false
6
6
  segments:
7
7
  - 2
8
8
  - 0
9
9
  - 0
10
10
  - 1281
11
- version: 2.0.0.1281
11
+ - 20100811
12
+ version: 2.0.0.1281.20100811
12
13
  platform: ruby
13
14
  authors:
14
15
  - Udi Dahan
@@ -18,7 +19,7 @@ autorequire:
18
19
  bindir: bin
19
20
  cert_chain: []
20
21
 
21
- date: 2010-07-29 00:00:00 +02:00
22
+ date: 2010-08-11 00:00:00 +02:00
22
23
  default_executable:
23
24
  dependencies:
24
25
  - !ruby/object:Gem::Dependency
@@ -44,21 +45,40 @@ description: "\t\tThe most popular open-source service bus for .net \n\
44
45
  \t\tEnterprise development, done right.\n\n\
45
46
  \t\tZero Install - working pub/sub messaging in under 5 minutes.\n"
46
47
  email: andreas_ohlund@hotmail.com
47
- executables: []
48
-
48
+ executables:
49
+ - nservicebus
49
50
  extensions: []
50
51
 
51
52
  extra_rdoc_files: []
52
53
 
53
54
  files:
54
- - ./lib/NServiceBus.Core.dll
55
- - ./lib/NServiceBus.dll
56
- - ./lib/NServiceBus.Testing.dll
57
- - ./lib/NServiceBus.Host.exe
58
- - ./lib/NServiceBus.Core.xml
59
- - ./lib/NServiceBus.Host.xml
60
- - ./lib/NServiceBus.Testing.xml
61
- - ./lib/NServiceBus.xml
55
+ - lib/NServiceBus.Core.dll
56
+ - lib/NServiceBus.Core.xml
57
+ - lib/NServiceBus.dll
58
+ - lib/NServiceBus.Host.exe
59
+ - lib/NServiceBus.Host.xml
60
+ - lib/NServiceBus.Testing.dll
61
+ - lib/NServiceBus.Testing.xml
62
+ - lib/NServiceBus.xml
63
+ - bin/cli.rb
64
+ - bin/nservicebus
65
+ - bin/runner.rb
66
+ - bin/tools/Grid.dll
67
+ - bin/tools/Interop.MSMQ.dll
68
+ - bin/tools/log4net.dll
69
+ - bin/tools/MsmqUtils/Common.Logging.dll
70
+ - bin/tools/MsmqUtils/Common.Logging.Log4Net.dll
71
+ - bin/tools/MsmqUtils/log4net.dll
72
+ - bin/tools/MsmqUtils/NServiceBus.Utils.dll
73
+ - bin/tools/MsmqUtils/NServiceBus.Utils.Reflection.dll
74
+ - bin/tools/MsmqUtils/Runner.exe
75
+ - bin/tools/NServiceBus.Core.dll
76
+ - bin/tools/NServiceBus.dll
77
+ - bin/tools/NServiceBus.Tools.Management.Errors.ReturnToSourceQueue.dll
78
+ - bin/tools/ReturnToSourceQueue.exe
79
+ - bin/tools/UI.exe
80
+ - bin/tools/UI.exe.config
81
+ - bin/tools/XsdGenerator.exe
62
82
  has_rdoc: true
63
83
  homepage: http://nservicebus.com
64
84
  licenses: []