teamforge 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2897ce9b337d03404811bab7936d7dac8df513a8
4
+ data.tar.gz: 3345e8dea900253aed0d6b0d7e50ff50809b9e28
5
+ SHA512:
6
+ metadata.gz: 50e9d18075cc0b15551cce125bc88e90dd256aaeae57ec76cd527c1a17be6bc4b4b393f3e02ea1e55eb0883d2320e55761f4d8f73348fed3f852fa6dd3f98e72
7
+ data.tar.gz: 08f3a1b83905117a1728f1cb28eafc3a43ebd6685e3740c2721957f55213365c542c0891c7a3a39fdfe8f87b4ca385b9edce5b29e88a124d9ab0f00a1cb2ac06
data/lib/teamforge.rb CHANGED
@@ -29,6 +29,8 @@ module TeamForge
29
29
  autoload :SimpleFileStorageApp, "teamforge/services/simplefilestorageapp"
30
30
  autoload :IntegrationDataApp, "teamforge/services/integrationdataapp"
31
31
  autoload :PluggableApp, "teamforge/services/pluggableapp"
32
+ autoload :PageApp, "teamforge/services/pageapp"
33
+ autoload :NewsApp, "teamforge/services/newsapp"
32
34
 
33
35
  def self.proxy
34
36
  @proxy
@@ -37,8 +37,8 @@ module TeamForge
37
37
  response_msg = "#{method}Response".to_sym
38
38
  return_msg = "#{method}Return".to_sym
39
39
 
40
-
41
- fq_path = @server + SERVICE_PATH + @endpoint
40
+ soap_service_path = (@endpoint == 'ScmListener') ? '/ce-soap/services/' : SERVICE_PATH
41
+ fq_path = @server + soap_service_path + @endpoint
42
42
 
43
43
 
44
44
  @verbose ||= false
@@ -208,4 +208,4 @@ module TeamForge
208
208
  #end
209
209
 
210
210
  end
211
-
211
+
@@ -10,6 +10,7 @@ module TeamForge
10
10
  CreateRepository = TFSoapRequest.new(:session_id, :project_id, :external_system_id, :repository_directory, :title, :description, :id_required_on_commit, :hide_monitoring_details, :comment)
11
11
  GetAuthorizedKeysForUser = TFSoapRequest.new(:session_id, :username)
12
12
  GetAuthorizedKeys = TFSoapRequest.new(:session_id)
13
+ GetCommitData2 = TFSoapRequest.new(:session_id, :commit_id)
13
14
  GetCommitData = TFSoapRequest.new(:session_id, :commit_id)
14
15
  GetCommitId = TFSoapRequest.new(:session_id, :revision, :external_system_id, :repo_path)
15
16
  GetCommitList = TFSoapRequest.new(:session_id, :repository_id, :filters)
@@ -34,6 +35,7 @@ module TeamForge
34
35
  # ScmApp Types
35
36
  ######################
36
37
 
38
+ Commit2SoapDO = TFType.new(:commit_message,:created_by,:created_by_fullname,:created_date,:files,:folder_id,:id,:last_modified_by,:last_modified_date,:path,:title,:version, :attributes!)
37
39
  CommitSoapDO = TFType.new(:commit_message,:created_by,:created_by_fullname,:created_date,:files,:folder_id,:id,:last_modified_by,:last_modified_date,:path,:title,:version, :attributes!)
38
40
  CommitSoapRow = TFType.new(:commit_message,:created_by,:created_by_fullname,:date_created,:folder_path_string,:id,:project_id,:project_path_string,:project_title,:title, :attributes!)
39
41
  ReplicableScmExternalSystemSoapRow = TFType.new(:description,:id,:is_svn_edge,:title, :attributes!)
@@ -42,6 +44,7 @@ module TeamForge
42
44
  RepositoryParameter2SoapDO = TFType.new(:param_key,:param_value, :attributes!)
43
45
  RepositorySoapDO = TFType.new(:created_by,:created_date,:description,:hide_monitoring_details,:id,:id_required_on_commit,:is_on_managed_scm_server,:last_modified_by,:last_modified_date,:parent_folder_id,:path,:project_id,:repository_directory,:scm_adapter_name,:scm_viewer_url,:system_id,:system_title,:title,:version, :attributes!)
44
46
  RepositorySoapRow = TFType.new(:commits_this_week,:created_by,:created_on,:description,:id,:last_modified_by,:last_modified_on,:parent_folder_id,:path,:project_id,:repository_path,:title, :attributes!)
47
+ ScmFile2SoapRow = TFType.new(:filename,:id,:ref_filename,:status,:version, :attributes!)
45
48
  ScmFileSoapRow = TFType.new(:commit_message,:filename,:id,:ref_filename,:status,:version, :attributes!)
46
49
  SoapFilter = TFType.new(:name,:value, :attributes!)
47
50
  SoapNamedValues = TFType.new(:names,:values, :attributes!)
@@ -1,5 +1,5 @@
1
1
  module TeamForge
2
2
 
3
- VERSION = "0.1.7"
3
+ VERSION = "0.1.8"
4
4
 
5
5
  end
metadata CHANGED
@@ -1,27 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: teamforge
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
5
- prerelease:
4
+ version: 0.1.8
6
5
  platform: ruby
7
6
  authors:
8
7
  - Patrick Wolf
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-06-24 00:00:00.000000000Z
11
+ date: 2013-10-04 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: savon
16
- requirement: &2154064580 !ruby/object:Gem::Requirement
17
- none: false
15
+ requirement: !ruby/object:Gem::Requirement
18
16
  requirements:
19
17
  - - ~>
20
18
  - !ruby/object:Gem::Version
21
19
  version: '1.0'
22
20
  type: :runtime
23
21
  prerelease: false
24
- version_requirements: *2154064580
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
25
27
  description: A Ruby SOAP wrapper to communicate with TeamForge WebServices
26
28
  email: pwolf@collab.net
27
29
  executables: []
@@ -54,26 +56,25 @@ files:
54
56
  - README.rdoc
55
57
  homepage: http://collab.net/
56
58
  licenses: []
59
+ metadata: {}
57
60
  post_install_message:
58
61
  rdoc_options: []
59
62
  require_paths:
60
63
  - lib
61
64
  required_ruby_version: !ruby/object:Gem::Requirement
62
- none: false
63
65
  requirements:
64
66
  - - ! '>='
65
67
  - !ruby/object:Gem::Version
66
68
  version: '0'
67
69
  required_rubygems_version: !ruby/object:Gem::Requirement
68
- none: false
69
70
  requirements:
70
71
  - - ! '>='
71
72
  - !ruby/object:Gem::Version
72
73
  version: '0'
73
74
  requirements: []
74
75
  rubyforge_project:
75
- rubygems_version: 1.8.17
76
+ rubygems_version: 2.0.7
76
77
  signing_key:
77
- specification_version: 3
78
+ specification_version: 4
78
79
  summary: CollabNet TeamForge
79
80
  test_files: []