p4ruby 2017.1.1699426-x64-mingw32 → 2021.1.2156749-x64-mingw32
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 +5 -5
- data/LICENSE.txt +451 -20
- data/README.md +3 -879
- data/ext/P4/clientprogressruby.cpp +0 -1
- data/ext/P4/clientuserruby.cpp +155 -0
- data/ext/P4/clientuserruby.h +44 -0
- data/ext/P4/extconf.rb +69 -13
- data/ext/P4/p4.cpp +84 -9
- data/ext/P4/p4clientapi.cpp +64 -6
- data/ext/P4/p4clientapi.h +11 -2
- data/ext/P4/p4result.cpp +1 -0
- data/ext/P4/p4specdata.cpp +29 -0
- data/ext/P4/p4specdata.h +2 -0
- data/ext/P4/specmgr.cpp +63 -89
- data/lib/2.6/P4.so +0 -0
- data/lib/2.7/P4.so +0 -0
- data/lib/3.0/P4.so +0 -0
- data/lib/P4.rb +1 -1
- data/lib/P4.so +0 -0
- data/lib/P4/version.rb +3 -3
- metadata +15 -16
- data/lib/2.0/P4.so +0 -0
- data/lib/2.1/P4.so +0 -0
- data/lib/2.2/P4.so +0 -0
- data/lib/2.3/P4.so +0 -0
- data/lib/2.4/P4.so +0 -0
data/lib/P4.rb
CHANGED
data/lib/P4.so
ADDED
Binary file
|
data/lib/P4/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
class P4
|
2
|
-
|
3
|
-
end
|
1
|
+
class P4
|
2
|
+
Version = VERSION = '2021.1.2156749'
|
3
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: p4ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2021.1.2156749
|
5
5
|
platform: x64-mingw32
|
6
6
|
authors:
|
7
7
|
- Perforce Software, Inc.
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Ruby extensions to the C++ Perforce API.
|
14
14
|
email: support@perforce.com
|
@@ -43,35 +43,34 @@ files:
|
|
43
43
|
- ext/P4/specmgr.cpp
|
44
44
|
- ext/P4/specmgr.h
|
45
45
|
- ext/P4/undefdups.h
|
46
|
-
- lib/2.
|
47
|
-
- lib/2.
|
48
|
-
- lib/
|
49
|
-
- lib/2.3/P4.so
|
50
|
-
- lib/2.4/P4.so
|
46
|
+
- lib/2.6/P4.so
|
47
|
+
- lib/2.7/P4.so
|
48
|
+
- lib/3.0/P4.so
|
51
49
|
- lib/P4.rb
|
50
|
+
- lib/P4.so
|
52
51
|
- lib/P4/version.rb
|
53
|
-
homepage: https://
|
52
|
+
homepage: https://github.com/perforce/p4ruby
|
54
53
|
licenses:
|
55
54
|
- MIT
|
56
|
-
metadata:
|
57
|
-
|
55
|
+
metadata:
|
56
|
+
documentation_uri: https://www.perforce.com/manuals/p4ruby/Content/P4Ruby/Home-p4ruby.html
|
57
|
+
post_install_message:
|
58
58
|
rdoc_options: []
|
59
59
|
require_paths:
|
60
60
|
- lib
|
61
61
|
required_ruby_version: !ruby/object:Gem::Requirement
|
62
62
|
requirements:
|
63
|
-
- -
|
63
|
+
- - ">="
|
64
64
|
- !ruby/object:Gem::Version
|
65
65
|
version: '0'
|
66
66
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
67
|
requirements:
|
68
|
-
- -
|
68
|
+
- - ">="
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
|
73
|
-
|
74
|
-
signing_key:
|
72
|
+
rubygems_version: 3.2.15
|
73
|
+
signing_key:
|
75
74
|
specification_version: 4
|
76
75
|
summary: Ruby extensions to the C++ Perforce API
|
77
76
|
test_files: []
|
data/lib/2.0/P4.so
DELETED
Binary file
|
data/lib/2.1/P4.so
DELETED
Binary file
|
data/lib/2.2/P4.so
DELETED
Binary file
|
data/lib/2.3/P4.so
DELETED
Binary file
|
data/lib/2.4/P4.so
DELETED
Binary file
|