p4ruby 1.0.9 → 1.0.10
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +19 -0
- data/README +19 -0
- data/install.rb +6 -1
- data/p4ruby.gemspec +3 -3
- metadata +13 -11
data/CHANGES
CHANGED
@@ -1,6 +1,25 @@
|
|
1
1
|
|
2
2
|
= p4ruby
|
3
3
|
|
4
|
+
== version 1.0.10
|
5
|
+
|
6
|
+
**** NOTE ****
|
7
|
+
|
8
|
+
This is a temporary fork of the p4ruby gem which works around an
|
9
|
+
ongoing problem of missing files on the Perforce server.
|
10
|
+
|
11
|
+
This fork is hard-coded to download version r10.2 only.
|
12
|
+
|
13
|
+
In the past Perforce has ignored such problems with their ftp server.
|
14
|
+
Since these issues are ongoing and beyond my control, I have
|
15
|
+
transferred ownership of the gem to Perforce, who may or may not
|
16
|
+
resolve the matter. Please send bug reports to them.
|
17
|
+
|
18
|
+
Sincerely,
|
19
|
+
James M. Lawrence
|
20
|
+
|
21
|
+
**** NOTE ****
|
22
|
+
|
4
23
|
== version 1.0.9
|
5
24
|
|
6
25
|
* Non-universal p4api darwin libs were removed from Perforce ftp server
|
data/README
CHANGED
@@ -1,4 +1,23 @@
|
|
1
1
|
|
2
|
+
**** NOTE ****
|
3
|
+
|
4
|
+
This is a temporary fork of the p4ruby gem which works around an
|
5
|
+
ongoing problem of missing files on the Perforce server.
|
6
|
+
|
7
|
+
This fork is hard-coded to download version r10.2 only.
|
8
|
+
|
9
|
+
In the past Perforce has ignored such problems with their ftp server.
|
10
|
+
Since these issues are ongoing and beyond my control, I have
|
11
|
+
transferred ownership of the gem to Perforce, who may or may not
|
12
|
+
resolve the matter. Please send bug reports to them.
|
13
|
+
|
14
|
+
Sincerely,
|
15
|
+
James M. Lawrence
|
16
|
+
|
17
|
+
**** NOTE ****
|
18
|
+
|
19
|
+
=============================================================
|
20
|
+
|
2
21
|
= P4Ruby -- Ruby interface to the Perforce API
|
3
22
|
|
4
23
|
This is only an installer for the P4Ruby package by Perforce Software.
|
data/install.rb
CHANGED
@@ -141,7 +141,12 @@ class Installer
|
|
141
141
|
end
|
142
142
|
|
143
143
|
@s.attribute(:version_dir) {
|
144
|
-
|
144
|
+
#
|
145
|
+
# **** NOTE ****
|
146
|
+
#
|
147
|
+
# TODO: remove this workaround for missing files on the server
|
148
|
+
#
|
149
|
+
SERVER_TOP_DIR + "r10.2" # "r#{@s.version}"
|
145
150
|
}
|
146
151
|
|
147
152
|
@s.p4api.attribute(:remote) {
|
data/p4ruby.gemspec
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
|
2
2
|
Gem::Specification.new { |t|
|
3
3
|
t.name = "p4ruby"
|
4
|
-
t.version = "1.0.
|
4
|
+
t.version = "1.0.10"
|
5
5
|
t.summary = "Ruby interface to the Perforce API"
|
6
|
-
t.author = "Perforce Software
|
7
|
-
t.email = "
|
6
|
+
t.author = "Perforce Software"
|
7
|
+
t.email = "support@perforce.com"
|
8
8
|
t.homepage = "http://p4ruby.rubyforge.org"
|
9
9
|
t.rubyforge_project = "p4ruby"
|
10
10
|
t.extensions << "Rakefile"
|
metadata
CHANGED
@@ -1,29 +1,31 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: p4ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
prerelease:
|
5
|
+
version: 1.0.10
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
|
-
- Perforce Software
|
8
|
+
- Perforce Software
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
12
|
|
12
|
-
date:
|
13
|
+
date: 2011-04-01 00:00:00 -04:00
|
13
14
|
default_executable:
|
14
15
|
dependencies:
|
15
16
|
- !ruby/object:Gem::Dependency
|
16
17
|
name: rake
|
17
|
-
|
18
|
-
|
19
|
-
|
18
|
+
prerelease: false
|
19
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
20
|
+
none: false
|
20
21
|
requirements:
|
21
22
|
- - ">="
|
22
23
|
- !ruby/object:Gem::Version
|
23
24
|
version: "0"
|
24
|
-
|
25
|
+
type: :runtime
|
26
|
+
version_requirements: *id001
|
25
27
|
description:
|
26
|
-
email:
|
28
|
+
email: support@perforce.com
|
27
29
|
executables: []
|
28
30
|
|
29
31
|
extensions:
|
@@ -58,21 +60,21 @@ require_paths:
|
|
58
60
|
- lib
|
59
61
|
- ext
|
60
62
|
required_ruby_version: !ruby/object:Gem::Requirement
|
63
|
+
none: false
|
61
64
|
requirements:
|
62
65
|
- - ">="
|
63
66
|
- !ruby/object:Gem::Version
|
64
67
|
version: "0"
|
65
|
-
version:
|
66
68
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
69
|
+
none: false
|
67
70
|
requirements:
|
68
71
|
- - ">="
|
69
72
|
- !ruby/object:Gem::Version
|
70
73
|
version: "0"
|
71
|
-
version:
|
72
74
|
requirements: []
|
73
75
|
|
74
76
|
rubyforge_project: p4ruby
|
75
|
-
rubygems_version: 1.
|
77
|
+
rubygems_version: 1.6.2
|
76
78
|
signing_key:
|
77
79
|
specification_version: 3
|
78
80
|
summary: Ruby interface to the Perforce API
|