p4ruby 2015.2.1265122-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +24 -0
- data/README.md +866 -0
- data/ext/P4/clientprogressruby.cpp +99 -0
- data/ext/P4/clientprogressruby.h +52 -0
- data/ext/P4/clientuserruby.cpp +726 -0
- data/ext/P4/clientuserruby.h +133 -0
- data/ext/P4/extconf.rb +580 -0
- data/ext/P4/gc_hack.h +10 -0
- data/ext/P4/p4.cpp +1338 -0
- data/ext/P4/p4clientapi.cpp +732 -0
- data/ext/P4/p4clientapi.h +239 -0
- data/ext/P4/p4error.cpp +122 -0
- data/ext/P4/p4error.h +61 -0
- data/ext/P4/p4mapmaker.cpp +459 -0
- data/ext/P4/p4mapmaker.h +69 -0
- data/ext/P4/p4mergedata.cpp +272 -0
- data/ext/P4/p4mergedata.h +97 -0
- data/ext/P4/p4result.cpp +259 -0
- data/ext/P4/p4result.h +86 -0
- data/ext/P4/p4rubydebug.h +46 -0
- data/ext/P4/p4specdata.cpp +108 -0
- data/ext/P4/p4specdata.h +52 -0
- data/ext/P4/p4utils.cpp +62 -0
- data/ext/P4/p4utils.h +46 -0
- data/ext/P4/specmgr.cpp +721 -0
- data/ext/P4/specmgr.h +102 -0
- data/ext/P4/undefdups.h +64 -0
- 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/P4.rb +672 -0
- data/lib/P4/version.rb +3 -0
- metadata +75 -0
data/lib/P4/version.rb
ADDED
metadata
ADDED
@@ -0,0 +1,75 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: p4ruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2015.2.1265122
|
5
|
+
platform: x86-mingw32
|
6
|
+
authors:
|
7
|
+
- Perforce Software, Inc.
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-11-12 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Ruby extensions to the C++ Perforce API.
|
14
|
+
email: support@perforce.com
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- LICENSE.txt
|
20
|
+
- README.md
|
21
|
+
- ext/P4/clientprogressruby.cpp
|
22
|
+
- ext/P4/clientprogressruby.h
|
23
|
+
- ext/P4/clientuserruby.cpp
|
24
|
+
- ext/P4/clientuserruby.h
|
25
|
+
- ext/P4/extconf.rb
|
26
|
+
- ext/P4/gc_hack.h
|
27
|
+
- ext/P4/p4.cpp
|
28
|
+
- ext/P4/p4clientapi.cpp
|
29
|
+
- ext/P4/p4clientapi.h
|
30
|
+
- ext/P4/p4error.cpp
|
31
|
+
- ext/P4/p4error.h
|
32
|
+
- ext/P4/p4mapmaker.cpp
|
33
|
+
- ext/P4/p4mapmaker.h
|
34
|
+
- ext/P4/p4mergedata.cpp
|
35
|
+
- ext/P4/p4mergedata.h
|
36
|
+
- ext/P4/p4result.cpp
|
37
|
+
- ext/P4/p4result.h
|
38
|
+
- ext/P4/p4rubydebug.h
|
39
|
+
- ext/P4/p4specdata.cpp
|
40
|
+
- ext/P4/p4specdata.h
|
41
|
+
- ext/P4/p4utils.cpp
|
42
|
+
- ext/P4/p4utils.h
|
43
|
+
- ext/P4/specmgr.cpp
|
44
|
+
- ext/P4/specmgr.h
|
45
|
+
- ext/P4/undefdups.h
|
46
|
+
- lib/2.0/P4.so
|
47
|
+
- lib/2.1/P4.so
|
48
|
+
- lib/2.2/P4.so
|
49
|
+
- lib/P4.rb
|
50
|
+
- lib/P4/version.rb
|
51
|
+
homepage: https://swarm.workshop.perforce.com/projects/perforce-software-p4ruby/
|
52
|
+
licenses:
|
53
|
+
- MIT
|
54
|
+
metadata: {}
|
55
|
+
post_install_message:
|
56
|
+
rdoc_options: []
|
57
|
+
require_paths:
|
58
|
+
- lib
|
59
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - '>='
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '0'
|
64
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
requirements: []
|
70
|
+
rubyforge_project:
|
71
|
+
rubygems_version: 2.4.8
|
72
|
+
signing_key:
|
73
|
+
specification_version: 4
|
74
|
+
summary: Ruby extensions to the C++ Perforce API
|
75
|
+
test_files: []
|