p4ruby 2017.1.1599185 → 2020.1.1970474
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/README.md +3 -871
- data/ext/P4/extconf.rb +62 -12
- data/ext/P4/p4.cpp +26 -0
- data/ext/P4/p4clientapi.cpp +36 -17
- data/ext/P4/p4clientapi.h +3 -1
- data/ext/P4/p4error.cpp +15 -0
- data/ext/P4/p4error.h +1 -0
- data/ext/P4/p4result.cpp +1 -0
- data/ext/P4/specmgr.cpp +54 -88
- data/lib/P4.rb +1 -1
- data/lib/P4/version.rb +3 -3
- metadata +8 -8
data/lib/P4.rb
CHANGED
data/lib/P4/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
class P4
|
2
|
-
|
3
|
-
end
|
1
|
+
class P4
|
2
|
+
Version = VERSION = '2020.1.1970474'
|
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: 2020.1.1970474
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Perforce Software, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-06-10 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Ruby extensions to the C++ Perforce API.
|
14
14
|
email: support@perforce.com
|
@@ -46,27 +46,27 @@ files:
|
|
46
46
|
- ext/P4/undefdups.h
|
47
47
|
- lib/P4.rb
|
48
48
|
- lib/P4/version.rb
|
49
|
-
homepage: https://
|
49
|
+
homepage: https://github.com/perforce/p4ruby
|
50
50
|
licenses:
|
51
51
|
- MIT
|
52
|
-
metadata:
|
52
|
+
metadata:
|
53
|
+
documentation_uri: https://www.perforce.com/manuals/p4ruby/Content/P4Ruby/Home-p4ruby.html
|
53
54
|
post_install_message:
|
54
55
|
rdoc_options: []
|
55
56
|
require_paths:
|
56
57
|
- lib
|
57
58
|
required_ruby_version: !ruby/object:Gem::Requirement
|
58
59
|
requirements:
|
59
|
-
- -
|
60
|
+
- - ">="
|
60
61
|
- !ruby/object:Gem::Version
|
61
62
|
version: '0'
|
62
63
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
63
64
|
requirements:
|
64
|
-
- -
|
65
|
+
- - ">="
|
65
66
|
- !ruby/object:Gem::Version
|
66
67
|
version: '0'
|
67
68
|
requirements: []
|
68
|
-
|
69
|
-
rubygems_version: 2.4.8
|
69
|
+
rubygems_version: 3.1.2
|
70
70
|
signing_key:
|
71
71
|
specification_version: 4
|
72
72
|
summary: Ruby extensions to the C++ Perforce API
|