ci 0.1.0 → 0.1.1
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 +4 -4
- data/.gitignore +46 -5
- data/Gemfile +3 -1
- data/Gemfile.lock +35 -0
- data/LICENSE +21 -0
- data/README.md +0 -1
- data/bin/console +1 -1
- data/ci.gemspec +17 -14
- data/lib/ci/version.rb +1 -1
- metadata +12 -13
- data/.rspec +0 -2
- data/.travis.yml +0 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d07c68eb692291528e2bd30a11ca4d3fc5f1fbe7
|
|
4
|
+
data.tar.gz: c593cda8c88d34c6e846a25eceb28920eaf33fdd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 84583cac9d70a4cbbd1724b0e62782a292f492c62eb17194f1d9b9fe517c1aac9992d6e1a9362b54c90baa25ac05c1d01e1974f531f28dcf5c91468c76c420e7
|
|
7
|
+
data.tar.gz: f28b18a4d3b4610b939698746f52d292595dc6b61c71fa6c7204271054f54e9da8b2e1a9145920be0717e48580dbf1be0fd28f31bc5c82a4a4bc1a552c899318
|
data/.gitignore
CHANGED
|
@@ -1,9 +1,50 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
/_yardoc/
|
|
1
|
+
*.gem
|
|
2
|
+
*.rbc
|
|
3
|
+
/.config
|
|
5
4
|
/coverage/
|
|
6
|
-
/
|
|
5
|
+
/InstalledFiles
|
|
7
6
|
/pkg/
|
|
8
7
|
/spec/reports/
|
|
8
|
+
/spec/examples.txt
|
|
9
|
+
/test/tmp/
|
|
10
|
+
/test/version_tmp/
|
|
9
11
|
/tmp/
|
|
12
|
+
|
|
13
|
+
# Used by dotenv library to load environment variables.
|
|
14
|
+
# .env
|
|
15
|
+
|
|
16
|
+
## Specific to RubyMotion:
|
|
17
|
+
.dat*
|
|
18
|
+
.repl_history
|
|
19
|
+
build/
|
|
20
|
+
*.bridgesupport
|
|
21
|
+
build-iPhoneOS/
|
|
22
|
+
build-iPhoneSimulator/
|
|
23
|
+
|
|
24
|
+
## Specific to RubyMotion (use of CocoaPods):
|
|
25
|
+
#
|
|
26
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
|
27
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
|
28
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
|
29
|
+
#
|
|
30
|
+
# vendor/Pods/
|
|
31
|
+
|
|
32
|
+
## Documentation cache and generated files:
|
|
33
|
+
/.yardoc/
|
|
34
|
+
/_yardoc/
|
|
35
|
+
/doc/
|
|
36
|
+
/rdoc/
|
|
37
|
+
|
|
38
|
+
## Environment normalization:
|
|
39
|
+
/.bundle/
|
|
40
|
+
/vendor/bundle
|
|
41
|
+
/lib/bundler/man/
|
|
42
|
+
|
|
43
|
+
# for a library or gem, you might want to ignore these files since the code is
|
|
44
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
45
|
+
# Gemfile.lock
|
|
46
|
+
# .ruby-version
|
|
47
|
+
# .ruby-gemset
|
|
48
|
+
|
|
49
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
|
50
|
+
.rvmrc
|
data/Gemfile
CHANGED
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
ci (0.1.1)
|
|
5
|
+
|
|
6
|
+
GEM
|
|
7
|
+
remote: https://rubygems.org/
|
|
8
|
+
specs:
|
|
9
|
+
diff-lcs (1.3)
|
|
10
|
+
rake (10.5.0)
|
|
11
|
+
rspec (3.6.0)
|
|
12
|
+
rspec-core (~> 3.6.0)
|
|
13
|
+
rspec-expectations (~> 3.6.0)
|
|
14
|
+
rspec-mocks (~> 3.6.0)
|
|
15
|
+
rspec-core (3.6.0)
|
|
16
|
+
rspec-support (~> 3.6.0)
|
|
17
|
+
rspec-expectations (3.6.0)
|
|
18
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
19
|
+
rspec-support (~> 3.6.0)
|
|
20
|
+
rspec-mocks (3.6.0)
|
|
21
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
22
|
+
rspec-support (~> 3.6.0)
|
|
23
|
+
rspec-support (3.6.0)
|
|
24
|
+
|
|
25
|
+
PLATFORMS
|
|
26
|
+
ruby
|
|
27
|
+
|
|
28
|
+
DEPENDENCIES
|
|
29
|
+
bundler (~> 1.15)
|
|
30
|
+
ci!
|
|
31
|
+
rake (~> 10.0)
|
|
32
|
+
rspec (~> 3.0)
|
|
33
|
+
|
|
34
|
+
BUNDLED WITH
|
|
35
|
+
1.15.3
|
data/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2017 iospai
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
data/README.md
CHANGED
data/bin/console
CHANGED
data/ci.gemspec
CHANGED
|
@@ -1,33 +1,36 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
|
-
lib = File.expand_path(
|
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require
|
|
4
|
+
require "ci/version"
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "ci"
|
|
8
8
|
spec.version = Ci::VERSION
|
|
9
9
|
spec.authors = ["孙丹龙"]
|
|
10
|
-
spec.email = ["
|
|
10
|
+
spec.email = ["sundl1988@163.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary = %q{
|
|
13
|
-
spec.description = %q{
|
|
14
|
-
spec.homepage = "
|
|
12
|
+
spec.summary = %q{持续集成(Continuous Integration)相关工具包}
|
|
13
|
+
spec.description = %q{自动化构建自动化测试,目前支持iOS}
|
|
14
|
+
spec.homepage = "http://iospai.com"
|
|
15
15
|
|
|
16
16
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
17
17
|
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
|
18
|
-
if spec.respond_to?(:metadata)
|
|
19
|
-
spec.metadata = { "issue_tracker" => "http://iospai.com" }
|
|
20
|
-
# spec.metadata['allowed_push_host'] = "Set to 'http://mygemserver.com'"
|
|
21
|
-
else
|
|
22
|
-
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
|
23
|
-
end
|
|
24
18
|
|
|
25
|
-
|
|
19
|
+
# if spec.respond_to?(:metadata)
|
|
20
|
+
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
|
21
|
+
# else
|
|
22
|
+
# raise "RubyGems 2.0 or newer is required to protect against " \
|
|
23
|
+
# "public gem pushes."
|
|
24
|
+
# end
|
|
25
|
+
|
|
26
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
27
|
+
f.match(%r{^(test|spec|features)/})
|
|
28
|
+
end
|
|
26
29
|
spec.bindir = "exe"
|
|
27
30
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
28
31
|
spec.require_paths = ["lib"]
|
|
29
32
|
|
|
30
|
-
spec.add_development_dependency "bundler", "~> 1.
|
|
33
|
+
spec.add_development_dependency "bundler", "~> 1.15"
|
|
31
34
|
spec.add_development_dependency "rake", "~> 10.0"
|
|
32
35
|
spec.add_development_dependency "rspec", "~> 3.0"
|
|
33
36
|
end
|
data/lib/ci/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ci
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- 孙丹龙
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-08-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '1.
|
|
19
|
+
version: '1.15'
|
|
20
20
|
type: :development
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '1.
|
|
26
|
+
version: '1.15'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rake
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -52,17 +52,17 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '3.0'
|
|
55
|
-
description:
|
|
55
|
+
description: 自动化构建自动化测试,目前支持iOS
|
|
56
56
|
email:
|
|
57
|
-
-
|
|
57
|
+
- sundl1988@163.com
|
|
58
58
|
executables: []
|
|
59
59
|
extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
|
61
61
|
files:
|
|
62
62
|
- ".gitignore"
|
|
63
|
-
- ".rspec"
|
|
64
|
-
- ".travis.yml"
|
|
65
63
|
- Gemfile
|
|
64
|
+
- Gemfile.lock
|
|
65
|
+
- LICENSE
|
|
66
66
|
- README.md
|
|
67
67
|
- Rakefile
|
|
68
68
|
- bin/console
|
|
@@ -70,10 +70,9 @@ files:
|
|
|
70
70
|
- ci.gemspec
|
|
71
71
|
- lib/ci.rb
|
|
72
72
|
- lib/ci/version.rb
|
|
73
|
-
homepage:
|
|
73
|
+
homepage: http://iospai.com
|
|
74
74
|
licenses: []
|
|
75
|
-
metadata:
|
|
76
|
-
issue_tracker: http://iospai.com
|
|
75
|
+
metadata: {}
|
|
77
76
|
post_install_message:
|
|
78
77
|
rdoc_options: []
|
|
79
78
|
require_paths:
|
|
@@ -90,8 +89,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
90
89
|
version: '0'
|
|
91
90
|
requirements: []
|
|
92
91
|
rubyforge_project:
|
|
93
|
-
rubygems_version: 2.6.
|
|
92
|
+
rubygems_version: 2.6.12
|
|
94
93
|
signing_key:
|
|
95
94
|
specification_version: 4
|
|
96
|
-
summary:
|
|
95
|
+
summary: 持续集成(Continuous Integration)相关工具包
|
|
97
96
|
test_files: []
|
data/.rspec
DELETED