LitleOnline 8.29.1 → 8.29.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.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MTE0ZDE0YmMwMmZlNmUwMDNkOGZhOWVjODJhZmM4Y2M5ZTRkNWM4Mg==
4
+ ZjZkOTZlZDI2Mjg2NTZjM2I4MzIzMjQyNzllMjBjNjI3MmMzMTU0OA==
5
5
  data.tar.gz: !binary |-
6
- YmM4MTk1YmI2NjZhMTk3N2Y1NmU1MTgxMWQxYzE0OTdlZWM4NTNjMg==
6
+ N2I2ZDNlZjYwYTZhNDAyMWNiMjU1OTBkMTQxYWEwOTY1NTM3NjczMw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ODA4YmYzYzc4ZDZlNzMzNDg4ZmFkMGU1NmEyZTE4NzgzMDg4YmZmYTdkMmEx
10
- NDkwOTIwMTE1NGRlMDQ0MDY3YzFmOGYyZjBjZmEwMzA1ZTYxOGUwZGUwMDJk
11
- NmMyM2E5OTVjM2YwOGYyYjI3MWRmYTg5MjQyODBhOTVkZWMyMGY=
9
+ ZjY5YzlkZDc0Yzk1MTNmMzM3MWE5NmZhYjdkMDZhNmQyOWZmYzQ2OGE1YWYw
10
+ MTA4Nzc3ZjQyOGFhMzVjZThkOWMyNzU3NGVmZjM4ZjJiOGM1MDk2YTU1Y2Zh
11
+ MjNiZTllM2ZlMWM1ZGMwMDkwMjY4MjYzODVlZTI0MjE1NTYyYmE=
12
12
  data.tar.gz: !binary |-
13
- NDlhNGNjOWRkMTJlZmM0MWVmZTdjNmIxODJlNzQ0OTYxNThkYTA5NDJiMDM4
14
- MWFiZWNmNTM5Mjc3YWIyNDM0ZWQxOGJkMDg2YjUzYzA1NTBiNWM1NGUzZTU1
15
- Y2M2MTQ2ZDk5Mjc1Y2E1M2JmYjViODliZTg5YmZjNzlkYmU1ODM=
13
+ NWE4MzQxODQ1OTJiN2IwZTY5ZWU5ZTlhYWZkODc5MGFlYmFkYzkwYzBiYzk0
14
+ OGY0NDIyYzExNzNmYmE1NDRkYWY3ZDI0NmE3ZDU4OTY2MDI2NDkzNjczOTVj
15
+ M2M3MTRkYTZjOWU1NjRiOGVkYWJmNGI0NWRlZGYzMzBlNTgzMGI=
data/Rakefile CHANGED
@@ -34,7 +34,7 @@ spec = Gem::Specification.new do |s|
34
34
  s.description = File.read(File.join(File.dirname(__FILE__), 'DESCRIPTION'))
35
35
  s.requirements =
36
36
  [ 'Contact sdksupport@litle.com for more information' ]
37
- s.version = "8.29.1"
37
+ s.version = "8.29.2"
38
38
  s.author = "Litle & Co"
39
39
  s.email = "sdksupport@litle.com"
40
40
  s.homepage = "http://www.litle.com/developers"
@@ -0,0 +1,93 @@
1
+ =begin
2
+ Copyright (c) 2011 Litle & Co.
3
+
4
+ Permission is hereby granted, free of charge, to any person
5
+ obtaining a copy of this software and associated documentation
6
+ files (the "Software"), to deal in the Software without
7
+ restriction, including without limitation the rights to use,
8
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the
10
+ Software is furnished to do so, subject to the following
11
+ conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
18
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
20
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23
+ OTHER DEALINGS IN THE SOFTWARE.
24
+ =end
25
+ require 'rubygems'
26
+ require 'rubygems/package_task'
27
+ require 'rake/testtask'
28
+ require 'rake/clean'
29
+
30
+ spec = Gem::Specification.new do |s|
31
+ FileUtils.rm_rf('pkg')
32
+ s.name = "LitleOnline"
33
+ s.summary = "Ruby SDK produced by Litle & Co. for transaction processing using Litle XML format v8.29"
34
+ s.description = File.read(File.join(File.dirname(__FILE__), 'DESCRIPTION'))
35
+ s.requirements =
36
+ [ 'Contact sdksupport@litle.com for more information' ]
37
+ s.version = "8.29.1"
38
+ s.author = "Litle & Co"
39
+ s.email = "sdksupport@litle.com"
40
+ s.homepage = "http://www.litle.com/developers"
41
+ s.platform = Gem::Platform::RUBY
42
+ s.required_ruby_version = '>=1.8.7'
43
+ s.files = Dir['**/**']
44
+ s.executables = [ 'sample_driver.rb', 'Setup.rb' ]
45
+ s.test_files = Dir["test/unit/ts_unit.rb"]
46
+ s.has_rdoc = true
47
+ s.add_dependency('xml-object')
48
+ s.add_dependency('xml-mapping')
49
+ s.add_dependency('net-sftp')
50
+ s.add_dependency('libxml-ruby')
51
+ s.add_dependency('crack')
52
+ s.add_development_dependency('mocha')
53
+ end
54
+
55
+ Gem::PackageTask.new(spec) do |pkg|
56
+ pkg.gem_spec = spec
57
+ pkg.need_zip = true
58
+ pkg.need_tar = true
59
+ end
60
+
61
+ namespace :test do
62
+
63
+ Rake::TestTask.new do |t|
64
+ t.libs << '.'
65
+ t.name = 'unit'
66
+ t.test_files = FileList['test/unit/ts_unit.rb']
67
+ t.verbose = true
68
+ end
69
+
70
+ Rake::TestTask.new do |t|
71
+ t.libs << '.'
72
+ t.name = 'functional'
73
+ t.test_files = FileList['test/functional/ts_all.rb']
74
+ t.verbose = true
75
+ end
76
+
77
+ Rake::TestTask.new do |t|
78
+ t.libs << '.'
79
+ t.name = 'certification'
80
+ t.test_files = FileList['test/certification/certTest*.rb']
81
+ t.verbose = true
82
+ end
83
+
84
+ Rake::TestTask.new do |t|
85
+ t.libs << '.'
86
+ t.name = 'all'
87
+ t.test_files = FileList['test/**/*.rb']
88
+ t.verbose = true
89
+ end
90
+
91
+ end
92
+
93
+ task :default =>'gem'
@@ -0,0 +1,152 @@
1
+ 02/Apr 09:40:55 INFO eclipse.EclipsePlugin configureLog - Logging configured.
2
+ 02/Apr 09:40:55 DEBUG eclipse.EclipsePlugin start - Plugin started
3
+ 02/Apr 09:41:02 DEBUG eclipse.AccuRevStartUp earlyStartup - Accurev rev setup earlyStartup..
4
+ 02/Apr 09:41:02 DEBUG managers.LoginSessionManager loadLoginSessions - Started
5
+ 02/Apr 09:41:02 DEBUG actions.NewCommonCommandExecutorContext exec - Exec cmd:com.accurev.commons.commands.info.impl.InfoCommandImpl@46043b20
6
+ 02/Apr 09:41:02 DEBUG actions.NewCommonCommandExecutorContext run - Running command with null session.
7
+ java.lang.Throwable
8
+ at com.accurev.ide.eclipse.actions.NewCommonCommandExecutorContext$2.run(NewCommonCommandExecutorContext.java:325)
9
+ at com.accurev.ide.eclipse.ResourcesManager.performWithLoginLock(ResourcesManager.java:1268)
10
+ at com.accurev.ide.eclipse.actions.NewCommonCommandExecutorContext.runCommand(NewCommonCommandExecutorContext.java:342)
11
+ at com.accurev.ide.eclipse.actions.NewCommonCommandExecutorContext.exec(NewCommonCommandExecutorContext.java:197)
12
+ at com.accurev.ide.eclipse.operations.WorkspaceInformationOperations.getWorkspaceInformation(WorkspaceInformationOperations.java:126)
13
+ at com.accurev.ide.eclipse.operations.WorkspaceInformationOperations.getWorkspaceInformation(WorkspaceInformationOperations.java:75)
14
+ at com.accurev.common.utils.SecurityUtils.getAcClientFileBin(SecurityUtils.java:125)
15
+ at com.accurev.common.utils.SecurityUtils.parseServers(SecurityUtils.java:194)
16
+ at com.accurev.common.utils.SecurityUtils.getServers(SecurityUtils.java:309)
17
+ at com.accurev.ide.eclipse.managers.LoginSessionManager.loadLoginSessions(LoginSessionManager.java:114)
18
+ at com.accurev.ide.eclipse.AccuRevStartUp.earlyStartup(AccuRevStartUp.java:37)
19
+ at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87)
20
+ at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:66)
21
+ at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
22
+ at org.eclipse.ui.internal.Workbench$63.run(Workbench.java:2470)
23
+ at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
24
+ 02/Apr 09:41:02 DEBUG actions.NewCommonCommandExecutorContext exec - Exec completed cmd:com.accurev.commons.commands.info.impl.InfoCommandImpl@46043b20
25
+ 02/Apr 09:41:02 DEBUG utils.SecurityUtils parseServers - Found server:accurev1:5050
26
+ 02/Apr 09:41:02 ERROR utils.SecurityUtils getServersXml -
27
+ javax.xml.bind.UnmarshalException
28
+ - with linked exception:
29
+ [org.xml.sax.SAXParseException; lineNumber: 1; columnNumber: 1; Premature end of file.]
30
+ at javax.xml.bind.helpers.AbstractUnmarshallerImpl.createUnmarshalException(AbstractUnmarshallerImpl.java:314)
31
+ at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.createUnmarshalException(UnmarshallerImpl.java:514)
32
+ at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:215)
33
+ at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:184)
34
+ at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:136)
35
+ at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:183)
36
+ at com.accurev.common.utils.SecurityUtils.getServersXml(SecurityUtils.java:337)
37
+ at com.accurev.common.utils.SecurityUtils.getServers(SecurityUtils.java:310)
38
+ at com.accurev.ide.eclipse.managers.LoginSessionManager.loadLoginSessions(LoginSessionManager.java:114)
39
+ at com.accurev.ide.eclipse.AccuRevStartUp.earlyStartup(AccuRevStartUp.java:37)
40
+ at org.eclipse.ui.internal.EarlyStartupRunnable.runEarlyStartup(EarlyStartupRunnable.java:87)
41
+ at org.eclipse.ui.internal.EarlyStartupRunnable.run(EarlyStartupRunnable.java:66)
42
+ at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
43
+ at org.eclipse.ui.internal.Workbench$63.run(Workbench.java:2470)
44
+ at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
45
+ Caused by: org.xml.sax.SAXParseException; lineNumber: 1; columnNumber: 1; Premature end of file.
46
+ at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(ErrorHandlerWrapper.java:198)
47
+ at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.fatalError(ErrorHandlerWrapper.java:177)
48
+ at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:441)
49
+ at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:368)
50
+ at com.sun.org.apache.xerces.internal.impl.XMLScanner.reportFatalError(XMLScanner.java:1436)
51
+ at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl$PrologDriver.next(XMLDocumentScannerImpl.java:1019)
52
+ at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(XMLDocumentScannerImpl.java:606)
53
+ at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.next(XMLNSDocumentScannerImpl.java:117)
54
+ at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:510)
55
+ at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:848)
56
+ at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:777)
57
+ at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:141)
58
+ at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1213)
59
+ at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(SAXParserImpl.java:649)
60
+ at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:211)
61
+ ... 12 more
62
+ 02/Apr 09:41:02 DEBUG managers.LoginSessionManager loadLoginSessions - Server has no session:com.accurev.ide.eclipse.data.ServersData$Server@3bb18e03[name=accurev1,port=5050,lastUser=,session=]
63
+ 02/Apr 09:41:02 DEBUG managers.LoginSessionManager loadLoginSessions - No default server, using top of list
64
+ 02/Apr 09:41:02 DEBUG managers.LoginSessionManager loadLoginSessions - Ended
65
+ 02/Apr 09:41:02 DEBUG eclipse.WorkspaceInfoManager updateWorkspaceInformation - Ipath../usr/local/litle-home/sdkdev/git/litle-sandbox
66
+ 02/Apr 09:41:02 DEBUG managers.LoginSessionManager findTokenByWorkSpacePath - login session manager..findTokenByWorkSpacePath...path../usr/local/litle-home/sdkdev/git/litle-sandbox
67
+ 02/Apr 09:41:02 DEBUG actions.NewCommonCommandExecutorContext exec - Exec cmd:com.accurev.commons.commands.info.impl.InfoCommandImpl@64b4cab7
68
+ 02/Apr 09:41:02 DEBUG actions.NewCommonCommandExecutorContext run - Running command with null session.
69
+ java.lang.Throwable
70
+ at com.accurev.ide.eclipse.actions.NewCommonCommandExecutorContext$2.run(NewCommonCommandExecutorContext.java:325)
71
+ at com.accurev.ide.eclipse.ResourcesManager.performWithLoginLock(ResourcesManager.java:1268)
72
+ at com.accurev.ide.eclipse.actions.NewCommonCommandExecutorContext.runCommand(NewCommonCommandExecutorContext.java:342)
73
+ at com.accurev.ide.eclipse.actions.NewCommonCommandExecutorContext.exec(NewCommonCommandExecutorContext.java:197)
74
+ at com.accurev.ide.eclipse.operations.WorkspaceInformationOperations.getWorkspaceInformation(WorkspaceInformationOperations.java:126)
75
+ at com.accurev.ide.eclipse.operations.WorkspaceInformationOperations.getWorkspaceInformation(WorkspaceInformationOperations.java:75)
76
+ at com.accurev.ide.eclipse.operations.WorkspaceInformationOperations.getWorkspaceInformation(WorkspaceInformationOperations.java:58)
77
+ at com.accurev.ide.eclipse.WorkspaceInfoManager.updateWorkspaceInformation(WorkspaceInfoManager.java:122)
78
+ at com.accurev.ide.eclipse.WorkspaceInfoManager.getWorkspaceInfo(WorkspaceInfoManager.java:76)
79
+ at com.accurev.ide.eclipse.WorkspaceInfoManager.getWorkspaceInfo(WorkspaceInfoManager.java:98)
80
+ at com.accurev.ide.eclipse.ResourcesManager$3.run(ResourcesManager.java:705)
81
+ 02/Apr 09:41:02 DEBUG actions.NewCommonCommandExecutorContext exec - Exec completed cmd:com.accurev.commons.commands.info.impl.InfoCommandImpl@64b4cab7
82
+ 02/Apr 09:41:02 DEBUG eclipse.WorkspaceInfoManager updateWorkspaceInformation - Ipath../usr/local/litle-home/sdkdev/git/litle-sdk-for-java
83
+ 02/Apr 09:41:02 DEBUG managers.LoginSessionManager findTokenByWorkSpacePath - login session manager..findTokenByWorkSpacePath...path../usr/local/litle-home/sdkdev/git/litle-sdk-for-java
84
+ 02/Apr 09:41:02 DEBUG actions.NewCommonCommandExecutorContext exec - Exec cmd:com.accurev.commons.commands.info.impl.InfoCommandImpl@1f2d7887
85
+ 02/Apr 09:41:02 DEBUG actions.NewCommonCommandExecutorContext run - Running command with null session.
86
+ java.lang.Throwable
87
+ at com.accurev.ide.eclipse.actions.NewCommonCommandExecutorContext$2.run(NewCommonCommandExecutorContext.java:325)
88
+ at com.accurev.ide.eclipse.ResourcesManager.performWithLoginLock(ResourcesManager.java:1268)
89
+ at com.accurev.ide.eclipse.actions.NewCommonCommandExecutorContext.runCommand(NewCommonCommandExecutorContext.java:342)
90
+ at com.accurev.ide.eclipse.actions.NewCommonCommandExecutorContext.exec(NewCommonCommandExecutorContext.java:197)
91
+ at com.accurev.ide.eclipse.operations.WorkspaceInformationOperations.getWorkspaceInformation(WorkspaceInformationOperations.java:126)
92
+ at com.accurev.ide.eclipse.operations.WorkspaceInformationOperations.getWorkspaceInformation(WorkspaceInformationOperations.java:75)
93
+ at com.accurev.ide.eclipse.operations.WorkspaceInformationOperations.getWorkspaceInformation(WorkspaceInformationOperations.java:58)
94
+ at com.accurev.ide.eclipse.WorkspaceInfoManager.updateWorkspaceInformation(WorkspaceInfoManager.java:122)
95
+ at com.accurev.ide.eclipse.WorkspaceInfoManager.getWorkspaceInfo(WorkspaceInfoManager.java:76)
96
+ at com.accurev.ide.eclipse.WorkspaceInfoManager.getWorkspaceInfo(WorkspaceInfoManager.java:98)
97
+ at com.accurev.ide.eclipse.ResourcesManager$3.run(ResourcesManager.java:705)
98
+ 02/Apr 09:41:02 DEBUG actions.NewCommonCommandExecutorContext exec - Exec completed cmd:com.accurev.commons.commands.info.impl.InfoCommandImpl@1f2d7887
99
+ 02/Apr 09:41:02 DEBUG eclipse.WorkspaceInfoManager updateWorkspaceInformation - Ipath../usr/local/litle-home/sdkdev/git/litle-sdk-for-php
100
+ 02/Apr 09:41:02 DEBUG managers.LoginSessionManager findTokenByWorkSpacePath - login session manager..findTokenByWorkSpacePath...path../usr/local/litle-home/sdkdev/git/litle-sdk-for-php
101
+ 02/Apr 09:41:02 DEBUG actions.NewCommonCommandExecutorContext exec - Exec cmd:com.accurev.commons.commands.info.impl.InfoCommandImpl@2fcc9c48
102
+ 02/Apr 09:41:02 DEBUG actions.NewCommonCommandExecutorContext run - Running command with null session.
103
+ java.lang.Throwable
104
+ at com.accurev.ide.eclipse.actions.NewCommonCommandExecutorContext$2.run(NewCommonCommandExecutorContext.java:325)
105
+ at com.accurev.ide.eclipse.ResourcesManager.performWithLoginLock(ResourcesManager.java:1268)
106
+ at com.accurev.ide.eclipse.actions.NewCommonCommandExecutorContext.runCommand(NewCommonCommandExecutorContext.java:342)
107
+ at com.accurev.ide.eclipse.actions.NewCommonCommandExecutorContext.exec(NewCommonCommandExecutorContext.java:197)
108
+ at com.accurev.ide.eclipse.operations.WorkspaceInformationOperations.getWorkspaceInformation(WorkspaceInformationOperations.java:126)
109
+ at com.accurev.ide.eclipse.operations.WorkspaceInformationOperations.getWorkspaceInformation(WorkspaceInformationOperations.java:75)
110
+ at com.accurev.ide.eclipse.operations.WorkspaceInformationOperations.getWorkspaceInformation(WorkspaceInformationOperations.java:58)
111
+ at com.accurev.ide.eclipse.WorkspaceInfoManager.updateWorkspaceInformation(WorkspaceInfoManager.java:122)
112
+ at com.accurev.ide.eclipse.WorkspaceInfoManager.getWorkspaceInfo(WorkspaceInfoManager.java:76)
113
+ at com.accurev.ide.eclipse.WorkspaceInfoManager.getWorkspaceInfo(WorkspaceInfoManager.java:98)
114
+ at com.accurev.ide.eclipse.ResourcesManager$3.run(ResourcesManager.java:705)
115
+ 02/Apr 09:41:02 DEBUG actions.NewCommonCommandExecutorContext exec - Exec completed cmd:com.accurev.commons.commands.info.impl.InfoCommandImpl@2fcc9c48
116
+ 02/Apr 09:41:02 DEBUG eclipse.WorkspaceInfoManager updateWorkspaceInformation - Ipath../usr/local/litle-home/sdkdev/git/litle-sdk-for-python
117
+ 02/Apr 09:41:02 DEBUG managers.LoginSessionManager findTokenByWorkSpacePath - login session manager..findTokenByWorkSpacePath...path../usr/local/litle-home/sdkdev/git/litle-sdk-for-python
118
+ 02/Apr 09:41:02 DEBUG actions.NewCommonCommandExecutorContext exec - Exec cmd:com.accurev.commons.commands.info.impl.InfoCommandImpl@110987d5
119
+ 02/Apr 09:41:02 DEBUG actions.NewCommonCommandExecutorContext run - Running command with null session.
120
+ java.lang.Throwable
121
+ at com.accurev.ide.eclipse.actions.NewCommonCommandExecutorContext$2.run(NewCommonCommandExecutorContext.java:325)
122
+ at com.accurev.ide.eclipse.ResourcesManager.performWithLoginLock(ResourcesManager.java:1268)
123
+ at com.accurev.ide.eclipse.actions.NewCommonCommandExecutorContext.runCommand(NewCommonCommandExecutorContext.java:342)
124
+ at com.accurev.ide.eclipse.actions.NewCommonCommandExecutorContext.exec(NewCommonCommandExecutorContext.java:197)
125
+ at com.accurev.ide.eclipse.operations.WorkspaceInformationOperations.getWorkspaceInformation(WorkspaceInformationOperations.java:126)
126
+ at com.accurev.ide.eclipse.operations.WorkspaceInformationOperations.getWorkspaceInformation(WorkspaceInformationOperations.java:75)
127
+ at com.accurev.ide.eclipse.operations.WorkspaceInformationOperations.getWorkspaceInformation(WorkspaceInformationOperations.java:58)
128
+ at com.accurev.ide.eclipse.WorkspaceInfoManager.updateWorkspaceInformation(WorkspaceInfoManager.java:122)
129
+ at com.accurev.ide.eclipse.WorkspaceInfoManager.getWorkspaceInfo(WorkspaceInfoManager.java:76)
130
+ at com.accurev.ide.eclipse.WorkspaceInfoManager.getWorkspaceInfo(WorkspaceInfoManager.java:98)
131
+ at com.accurev.ide.eclipse.ResourcesManager$3.run(ResourcesManager.java:705)
132
+ 02/Apr 09:41:02 DEBUG actions.NewCommonCommandExecutorContext exec - Exec completed cmd:com.accurev.commons.commands.info.impl.InfoCommandImpl@110987d5
133
+ 02/Apr 09:41:02 DEBUG eclipse.WorkspaceInfoManager updateWorkspaceInformation - Ipath../usr/local/litle-home/sdkdev/git/litle-sdk-for-ruby
134
+ 02/Apr 09:41:02 DEBUG managers.LoginSessionManager findTokenByWorkSpacePath - login session manager..findTokenByWorkSpacePath...path../usr/local/litle-home/sdkdev/git/litle-sdk-for-ruby
135
+ 02/Apr 09:41:02 DEBUG actions.NewCommonCommandExecutorContext exec - Exec cmd:com.accurev.commons.commands.info.impl.InfoCommandImpl@60d2ed21
136
+ 02/Apr 09:41:02 DEBUG actions.NewCommonCommandExecutorContext run - Running command with null session.
137
+ java.lang.Throwable
138
+ at com.accurev.ide.eclipse.actions.NewCommonCommandExecutorContext$2.run(NewCommonCommandExecutorContext.java:325)
139
+ at com.accurev.ide.eclipse.ResourcesManager.performWithLoginLock(ResourcesManager.java:1268)
140
+ at com.accurev.ide.eclipse.actions.NewCommonCommandExecutorContext.runCommand(NewCommonCommandExecutorContext.java:342)
141
+ at com.accurev.ide.eclipse.actions.NewCommonCommandExecutorContext.exec(NewCommonCommandExecutorContext.java:197)
142
+ at com.accurev.ide.eclipse.operations.WorkspaceInformationOperations.getWorkspaceInformation(WorkspaceInformationOperations.java:126)
143
+ at com.accurev.ide.eclipse.operations.WorkspaceInformationOperations.getWorkspaceInformation(WorkspaceInformationOperations.java:75)
144
+ at com.accurev.ide.eclipse.operations.WorkspaceInformationOperations.getWorkspaceInformation(WorkspaceInformationOperations.java:58)
145
+ at com.accurev.ide.eclipse.WorkspaceInfoManager.updateWorkspaceInformation(WorkspaceInfoManager.java:122)
146
+ at com.accurev.ide.eclipse.WorkspaceInfoManager.getWorkspaceInfo(WorkspaceInfoManager.java:76)
147
+ at com.accurev.ide.eclipse.WorkspaceInfoManager.getWorkspaceInfo(WorkspaceInfoManager.java:98)
148
+ at com.accurev.ide.eclipse.ResourcesManager$3.run(ResourcesManager.java:705)
149
+ 02/Apr 09:41:02 DEBUG actions.NewCommonCommandExecutorContext exec - Exec completed cmd:com.accurev.commons.commands.info.impl.InfoCommandImpl@60d2ed21
150
+ 02/Apr 09:41:02 DEBUG eclipse.ResourcesManager refreshAllDecoratorIcons - Workspace: /usr/local/litle-home/sdkdev/workspace
151
+ 02/Apr 09:41:02 DEBUG common.CacheManager clearAllCaches - Started
152
+ 02/Apr 09:41:02 DEBUG common.CacheManager clearAllCaches - Ended
@@ -64,7 +64,8 @@ class Setup
64
64
  f.puts "fast_port: " + gets
65
65
 
66
66
  f.puts "printxml: false"
67
- f.puts "timeout: 65"
67
+ #default http timeout set to 500 ms
68
+ f.puts "timeout: 500"
68
69
 
69
70
  end
70
71
  end
@@ -283,7 +283,7 @@ module LitleOnline
283
283
  end
284
284
 
285
285
  def get_merchant_sdk(options)
286
- options['merchantSdk'] || 'Ruby;8.29.1'
286
+ options['merchantSdk'] || 'Ruby;8.29.2'
287
287
  end
288
288
 
289
289
  def get_report_group(options)
@@ -243,7 +243,7 @@ module LitleOnline
243
243
  #Explicit - used for integrations
244
244
  assert_equal 'ActiveMerchant;3.2', litle.send(:get_merchant_sdk, {'merchantSdk'=>'ActiveMerchant;3.2'})
245
245
  #Implicit - used raw when nothing is specified
246
- assert_equal 'Ruby;8.29.1', litle.send(:get_merchant_sdk, {'NotMerchantSdk'=>'ActiveMerchant;3.2'})
246
+ assert_equal 'Ruby;8.29.2', litle.send(:get_merchant_sdk, {'NotMerchantSdk'=>'ActiveMerchant;3.2'})
247
247
  end
248
248
 
249
249
  def test_sale_paypal_order_complete_typo
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: LitleOnline
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.29.1
4
+ version: 8.29.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Litle & Co
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-11 00:00:00.000000000 Z
11
+ date: 2015-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: xml-object
@@ -117,7 +117,9 @@ files:
117
117
  - LICENSE
118
118
  - README.md
119
119
  - Rakefile
120
+ - Rakefile~
120
121
  - SETUP.md
122
+ - accurev_plugin.log
121
123
  - bin/Setup.rb
122
124
  - bin/sample_batch_driver.rb
123
125
  - bin/sample_driver.rb