Skip to content

Commit fb55d1d

Browse files
committed
2019.1 release code drop.
//spec/client/pallen.github.p4ruby.ws#6
1 parent 0400789 commit fb55d1d

55 files changed

Lines changed: 11497 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Created by .gitignore support plugin (hsz.mobi)
2+
### Ruby template
3+
*.gem
4+
*.rbc
5+
/.config
6+
/coverage/
7+
/InstalledFiles
8+
/pkg/
9+
/spec/reports/
10+
/test/tmp/
11+
/test/version_tmp/
12+
/tmp/
13+
14+
## Specific to RubyMotion:
15+
.dat*
16+
.repl_history
17+
build/
18+
19+
## Documentation cache and generated files:
20+
/.yardoc/
21+
/_yardoc/
22+
/rdoc/
23+
24+
## Environment normalisation:
25+
/.bundle/
26+
/lib/bundler/man/
27+
28+
p4-bin/**/p4api-2014.2*/
29+
30+
# for a library or gem, you might want to ignore these files since the code is
31+
# intended to run in multiple environments; otherwise, check them in:
32+
Gemfile.lock
33+
.ruby-version
34+
.ruby-gemset
35+
36+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
37+
.rvmrc
38+
39+
# Ignore RubyMine project files
40+
.idea/
41+
42+
# Ignore the 'working area' convention of p4util
43+
work/
44+
45+
# This can exist when running the rake compile task for testing
46+
p4.bundle
47+
P4.bundle
48+
p4.so
49+
P4.so
50+
51+
# This is the output directory of docbook
52+
doc/
53+
54+
# The docbook build scripts seem to generate some compiled python classes
55+
p4-doc/**/*.pyc
56+
57+
# This is actually under the p4-doc/ folder, and is only copied to prepare
58+
# distribution packages
59+
README
60+
61+
# This is generated so any Jenkins system can pick up variables from the project
62+
# easily.
63+
build.properties
64+
.p4config
65+
.p4ignore

Gemfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
source "https://rubygems.org"
2+
3+
gem 'rake', '10.3.2'
4+
gem 'rake-compiler', '~> 0.9', :group => [:development]
5+
gem 'test-unit', '~> 3.0', :group => [:test]

LICENSE.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Copyright (c) 2001-2014, Perforce Software, Inc. All rights reserved.
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are met:
5+
6+
1. Redistributions of source code must retain the above copyright
7+
notice, this list of conditions and the following disclaimer.
8+
9+
2. Redistributions in binary form must reproduce the above copyright
10+
notice, this list of conditions and the following disclaimer in the
11+
documentation and/or other materials provided with the distribution.
12+
13+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
14+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
15+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
16+
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PERFORCE
17+
SOFTWARE, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
18+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
19+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
21+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
22+
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
23+
THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
24+
DAMAGE.

0 commit comments

Comments
 (0)