coresv_db_backup 0.1.0
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 +7 -0
- data/.gitignore +13 -0
- data/.rspec +3 -0
- data/.travis.yml +6 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +36 -0
- data/LICENSE.txt +21 -0
- data/README.md +38 -0
- data/Rakefile +6 -0
- data/backup.sh.example +1 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/bk_setting.yml.exapmle +8 -0
- data/coresv_db_backup.gemspec +29 -0
- data/exe/coresv_db_backup +30 -0
- data/lib/coresv_db_backup.rb +15 -0
- data/lib/coresv_db_backup/backup.rb +19 -0
- data/lib/coresv_db_backup/client.rb +47 -0
- data/lib/coresv_db_backup/version.rb +3 -0
- metadata +422 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e003ed8c8f0e3a301ec3ac142e4ee7cd2cf1f35eefdc5ae3f1819346f48c7ea7
|
4
|
+
data.tar.gz: d9f012873b046bd2bd3ac8a8c478d3de64bb26463bc18bcdc2f8fa83ad434127
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b25cfb57a31592053bc62391405c6a98323b316cab7ab47a9dd1e1cd6e9a9696a2f347a604deaa30c5171ea84ff36b32367f940d7579f061c0704d203a62077f
|
7
|
+
data.tar.gz: 510a3686a060e17d3ef3503a60b3fcce0bbbbc182e6801dca38fc168b536f79340856f4d7ecb89ef37a62efaa838a2d712f99b111125522c6576a4450d469b37
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at 30688855+seieric@users.noreply.github.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [https://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: https://contributor-covenant.org
|
74
|
+
[version]: https://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
coresv_db_backup (0.1.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
diff-lcs (1.3)
|
10
|
+
dotenv (2.7.5)
|
11
|
+
rake (12.3.3)
|
12
|
+
rspec (3.9.0)
|
13
|
+
rspec-core (~> 3.9.0)
|
14
|
+
rspec-expectations (~> 3.9.0)
|
15
|
+
rspec-mocks (~> 3.9.0)
|
16
|
+
rspec-core (3.9.1)
|
17
|
+
rspec-support (~> 3.9.1)
|
18
|
+
rspec-expectations (3.9.0)
|
19
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
20
|
+
rspec-support (~> 3.9.0)
|
21
|
+
rspec-mocks (3.9.1)
|
22
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
23
|
+
rspec-support (~> 3.9.0)
|
24
|
+
rspec-support (3.9.2)
|
25
|
+
|
26
|
+
PLATFORMS
|
27
|
+
ruby
|
28
|
+
|
29
|
+
DEPENDENCIES
|
30
|
+
coresv_db_backup!
|
31
|
+
dotenv
|
32
|
+
rake (~> 12.0)
|
33
|
+
rspec (~> 3.0)
|
34
|
+
|
35
|
+
BUNDLED WITH
|
36
|
+
2.1.4
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 seieric
|
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
|
13
|
+
all 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
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
# CoresvDBBackup
|
2
|
+
コアサーバー・XREAのデータベースをCronでバックアップするためのスクリプトです。MySQL、PostgreSQLともにデータベース名を指定して、バックアップが可能です。自動バックアップがついていないプランでも、Cronを使うことにより、自動でバックアップを行えます。
|
3
|
+
|
4
|
+
## インストール
|
5
|
+
ターミナルで以下のコマンドを実行してください。
|
6
|
+
|
7
|
+
$ gem install coresv_db_backup
|
8
|
+
|
9
|
+
## 使い方
|
10
|
+
インストールを行ったあとの手順です。
|
11
|
+
|
12
|
+
まず、サーバーのコントロールパネルからAPIキーを発行してください。次に、ホームディレクトリ直下にbk_settings.ymlというファイルを作成し、必要な情報を書き込んでください。bk_settings.ymlのサンプルは[こちら](https://github.com/eric/coreserver-db-backup-ruby/blob/master/bk_settings.yml.example)です。
|
13
|
+
|
14
|
+
毎日自動でバックアップするには、こちらのシェルスクリプトをサーバー内の適当な場所に設定して、それをサーバーのCronに登録してください。
|
15
|
+
シェルスクリプトのサンプルは[こちら](https://github.com/eric/coreserver-db-backup-ruby/blob/master/backup.sh.example)です。
|
16
|
+
|
17
|
+
以下のように、ターミナルで直接実行することもできます。
|
18
|
+
|
19
|
+
$ coresv_db_backup
|
20
|
+
|
21
|
+
## Development
|
22
|
+
|
23
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
24
|
+
|
25
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
26
|
+
|
27
|
+
## Contributing
|
28
|
+
|
29
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/coresv_db_backup. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/eric/coreserver-db-backup-ruby/blob/master/CODE_OF_CONDUCT.md).
|
30
|
+
|
31
|
+
|
32
|
+
## License
|
33
|
+
|
34
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
35
|
+
|
36
|
+
## Code of Conduct
|
37
|
+
|
38
|
+
Everyone interacting in the CoresvDbBackup project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/seieric/coreserver-db-backup-ruby/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/backup.sh.example
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
coresv_db_backup
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "coresv_db_backup"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
require_relative 'lib/coresv_db_backup/version'
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "coresv_db_backup"
|
5
|
+
spec.version = CoresvDBBackup::VERSION
|
6
|
+
spec.authors = ["seieric"]
|
7
|
+
spec.email = ["30688855+seieric@users.noreply.github.com"]
|
8
|
+
|
9
|
+
spec.summary = %q{コアサーバー・XREAのデータベースをCronでバックアップ}
|
10
|
+
spec.description = %q{コアサーバー・XREAのデータベースをCronでバックアップするためのスクリプトです。MySQL、PostgreSQLともにデータベース名を指定して、バックアップが可能です。自動バックアップがついていないプランでも、Cronを使うことにより、自動でバックアップを行えます。}
|
11
|
+
spec.homepage = "https://github.com/seieric/coreserver-db-backup-ruby"
|
12
|
+
spec.license = "MIT"
|
13
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
14
|
+
|
15
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
16
|
+
spec.metadata["source_code_uri"] = "https://github.com/seieric/coreserver-db-backup-ruby"
|
17
|
+
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
|
18
|
+
|
19
|
+
# Specify which files should be added to the gem when it is released.
|
20
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
21
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
22
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
23
|
+
end
|
24
|
+
spec.bindir = "exe"
|
25
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
26
|
+
spec.require_paths = ["lib"]
|
27
|
+
|
28
|
+
spec.add_development_dependency "dotenv"
|
29
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'coresv_db_backup'
|
3
|
+
require 'yaml'
|
4
|
+
|
5
|
+
def dump(client, list, db_type)
|
6
|
+
db_nos = []
|
7
|
+
res = client.fetch_databases!(db_type)
|
8
|
+
res["result"].to_a.each do |db|
|
9
|
+
if list.include?(db[-1]["db_name"])
|
10
|
+
db_nos << db[-1]["no"].to_i
|
11
|
+
puts "Dump file for #{db[-1]["db_name"]} will be generated"
|
12
|
+
end
|
13
|
+
end
|
14
|
+
client.dump!(db_nos, db_type)
|
15
|
+
end
|
16
|
+
|
17
|
+
if File.exist?("#{ENV['HOME']}/backup_settings.yml")
|
18
|
+
puts "Configuration file loaded"
|
19
|
+
yaml = YAML.load_file("#{ENV['HOME']}/backup.yml")
|
20
|
+
@client = CoresvDBBackup::Client.new( account: yaml["account"], server_name: yaml["server_name"], api_secret_key: yaml["api_secret_key"])
|
21
|
+
unless yaml["mysql"].nil?
|
22
|
+
dump(@client, yaml["mysql"], "mysql")
|
23
|
+
end
|
24
|
+
unless yaml["pgsql"].nil?
|
25
|
+
dump(@client, yaml["pgsql"], "pgsql")
|
26
|
+
end
|
27
|
+
else
|
28
|
+
puts "No configuration file detected, process cannot continue."
|
29
|
+
puts "Exit"
|
30
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'net/https'
|
2
|
+
require 'uri'
|
3
|
+
require 'json'
|
4
|
+
require "coresv_db_backup/version"
|
5
|
+
require "coresv_db_backup/backup"
|
6
|
+
require "coresv_db_backup/client"
|
7
|
+
|
8
|
+
module CoresvDBBackup
|
9
|
+
class APIError < StandardError
|
10
|
+
def initialize msg = ""
|
11
|
+
super
|
12
|
+
end
|
13
|
+
end
|
14
|
+
# Your code goes here...
|
15
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module CoresvDBBackup
|
2
|
+
class Backup
|
3
|
+
def fetch_databases! db_type = "mysql"
|
4
|
+
result = post("/v1/db/list", {"db_type"=> db_type})
|
5
|
+
end
|
6
|
+
|
7
|
+
def dump!(db_nos = [], db_type = "mysql")
|
8
|
+
options = {
|
9
|
+
"db_type" => db_type,
|
10
|
+
"param[no]" => db_nos
|
11
|
+
}
|
12
|
+
post("/v1/db/dump", options)
|
13
|
+
end
|
14
|
+
|
15
|
+
def dump_all!
|
16
|
+
post("/v1/db/dump_all")
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
module CoresvDBBackup
|
2
|
+
class Client < Backup
|
3
|
+
def initialize( account: , server_name: , api_secret_key: )
|
4
|
+
raise ArgumentError, "acoount should be String" unless account.is_a?(String)
|
5
|
+
raise ArgumentError, "server_name should be String" unless server_name.is_a?(String)
|
6
|
+
raise ArgumentError, "api_secret_key should be String" unless api_secret_key.is_a?(String)
|
7
|
+
raise ArgumentError, "acoount can't be blank" if account.empty?
|
8
|
+
raise ArgumentError, "server_name can't be blank" if server_name.empty?
|
9
|
+
raise ArgumentError, "api_secret_key can't be blank" if api_secret_key.empty?
|
10
|
+
|
11
|
+
instance_variable_set("@account", account)
|
12
|
+
instance_variable_set("@server_name", server_name)
|
13
|
+
instance_variable_set("@api_secret_key", api_secret_key)
|
14
|
+
end
|
15
|
+
|
16
|
+
def post(ep, options = {})
|
17
|
+
params = {
|
18
|
+
"account" => @account,
|
19
|
+
"server_name" => @server_name,
|
20
|
+
"api_secret_key" => @api_secret_key
|
21
|
+
}
|
22
|
+
options.each do |k, v|
|
23
|
+
params[k] = v
|
24
|
+
end
|
25
|
+
|
26
|
+
uri = URI.parse("https://#{api_host}#{ep}")
|
27
|
+
res = Net::HTTP.post_form(uri, params)
|
28
|
+
result = JSON.parse(res.body)
|
29
|
+
raise APIError, "The API server returned status code #{res.code}" unless res.code == 200 || res.code == "200"
|
30
|
+
raise APIError, "The response provided status code #{result["status_code"]}\n#{result["error_message"]}#{result["message"]}" unless result["status_code"] == 200
|
31
|
+
|
32
|
+
result
|
33
|
+
end
|
34
|
+
|
35
|
+
private
|
36
|
+
def api_host
|
37
|
+
case @server_name
|
38
|
+
when /s[0-9]+\.xrea\.com/
|
39
|
+
"api.xrea.com"
|
40
|
+
when /[0-9A-z]+\.coreserver\.jp/
|
41
|
+
"api.coreserver.jp"
|
42
|
+
else
|
43
|
+
raise ArgumentError, "Invalid server_name \"#{@server_name}\""
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
metadata
ADDED
@@ -0,0 +1,422 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: coresv_db_backup
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- seieric
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-03-05 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: dotenv
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
description: コアサーバー・XREAのデータベースをCronでバックアップするためのスクリプトです。MySQL、PostgreSQLともにデータベース名を指定して、バックアップが可能です。自動バックアップがついていないプランでも、Cronを使うことにより、自動でバックアップを行えます。
|
28
|
+
email:
|
29
|
+
- 30688855+seieric@users.noreply.github.com
|
30
|
+
executables:
|
31
|
+
- coresv_db_backup
|
32
|
+
extensions: []
|
33
|
+
extra_rdoc_files: []
|
34
|
+
files:
|
35
|
+
- ".gitignore"
|
36
|
+
- ".rspec"
|
37
|
+
- ".travis.yml"
|
38
|
+
- CODE_OF_CONDUCT.md
|
39
|
+
- Gemfile
|
40
|
+
- Gemfile.lock
|
41
|
+
- LICENSE.txt
|
42
|
+
- README.md
|
43
|
+
- Rakefile
|
44
|
+
- backup.sh.example
|
45
|
+
- bin/console
|
46
|
+
- bin/setup
|
47
|
+
- bk_setting.yml.exapmle
|
48
|
+
- coresv_db_backup.gemspec
|
49
|
+
- exe/coresv_db_backup
|
50
|
+
- lib/coresv_db_backup.rb
|
51
|
+
- lib/coresv_db_backup/backup.rb
|
52
|
+
- lib/coresv_db_backup/client.rb
|
53
|
+
- lib/coresv_db_backup/version.rb
|
54
|
+
- vendor/bundle/ruby/2.6.0/bin/htmldiff
|
55
|
+
- vendor/bundle/ruby/2.6.0/bin/ldiff
|
56
|
+
- vendor/bundle/ruby/2.6.0/bin/rake
|
57
|
+
- vendor/bundle/ruby/2.6.0/bin/rspec
|
58
|
+
- vendor/bundle/ruby/2.6.0/cache/diff-lcs-1.3.gem
|
59
|
+
- vendor/bundle/ruby/2.6.0/cache/rake-12.3.3.gem
|
60
|
+
- vendor/bundle/ruby/2.6.0/cache/rspec-3.9.0.gem
|
61
|
+
- vendor/bundle/ruby/2.6.0/cache/rspec-core-3.9.1.gem
|
62
|
+
- vendor/bundle/ruby/2.6.0/cache/rspec-expectations-3.9.0.gem
|
63
|
+
- vendor/bundle/ruby/2.6.0/cache/rspec-mocks-3.9.1.gem
|
64
|
+
- vendor/bundle/ruby/2.6.0/cache/rspec-support-3.9.2.gem
|
65
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/.rspec
|
66
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/Code-of-Conduct.md
|
67
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/Contributing.md
|
68
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/History.md
|
69
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/License.md
|
70
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/Manifest.txt
|
71
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/README.rdoc
|
72
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/Rakefile
|
73
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/autotest/discover.rb
|
74
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/bin/htmldiff
|
75
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/bin/ldiff
|
76
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/docs/COPYING.txt
|
77
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/docs/artistic.txt
|
78
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff-lcs.rb
|
79
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs.rb
|
80
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs/array.rb
|
81
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs/block.rb
|
82
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs/callbacks.rb
|
83
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs/change.rb
|
84
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs/htmldiff.rb
|
85
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs/hunk.rb
|
86
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs/internals.rb
|
87
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs/ldiff.rb
|
88
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/lib/diff/lcs/string.rb
|
89
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/change_spec.rb
|
90
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/diff_spec.rb
|
91
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/fixtures/ds1.csv
|
92
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/fixtures/ds2.csv
|
93
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/hunk_spec.rb
|
94
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/issues_spec.rb
|
95
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/lcs_spec.rb
|
96
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/ldiff_spec.rb
|
97
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/patch_spec.rb
|
98
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/sdiff_spec.rb
|
99
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/spec_helper.rb
|
100
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/traverse_balanced_spec.rb
|
101
|
+
- vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.3/spec/traverse_sequences_spec.rb
|
102
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/CONTRIBUTING.rdoc
|
103
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/Gemfile
|
104
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/History.rdoc
|
105
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/MIT-LICENSE
|
106
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/README.rdoc
|
107
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/Rakefile
|
108
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/azure-pipelines.yml
|
109
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/bin/bundle
|
110
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/bin/console
|
111
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/bin/rake
|
112
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/bin/rdoc
|
113
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/bin/rubocop
|
114
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/bin/setup
|
115
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/doc/command_line_usage.rdoc
|
116
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/doc/example/Rakefile1
|
117
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/doc/example/Rakefile2
|
118
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/doc/example/a.c
|
119
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/doc/example/b.c
|
120
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/doc/example/main.c
|
121
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/doc/glossary.rdoc
|
122
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/doc/jamis.rb
|
123
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/doc/proto_rake.rdoc
|
124
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/doc/rake.1
|
125
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/doc/rakefile.rdoc
|
126
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/doc/rational.rdoc
|
127
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/exe/rake
|
128
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake.rb
|
129
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/application.rb
|
130
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/backtrace.rb
|
131
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/clean.rb
|
132
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/cloneable.rb
|
133
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/cpu_counter.rb
|
134
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/default_loader.rb
|
135
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/dsl_definition.rb
|
136
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/early_time.rb
|
137
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/ext/core.rb
|
138
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/ext/string.rb
|
139
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/file_creation_task.rb
|
140
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/file_list.rb
|
141
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/file_task.rb
|
142
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/file_utils.rb
|
143
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/file_utils_ext.rb
|
144
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/invocation_chain.rb
|
145
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/invocation_exception_mixin.rb
|
146
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/late_time.rb
|
147
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/linked_list.rb
|
148
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/loaders/makefile.rb
|
149
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/multi_task.rb
|
150
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/name_space.rb
|
151
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/packagetask.rb
|
152
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/phony.rb
|
153
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/private_reader.rb
|
154
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/promise.rb
|
155
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/pseudo_status.rb
|
156
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/rake_module.rb
|
157
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/rake_test_loader.rb
|
158
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/rule_recursion_overflow_error.rb
|
159
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/scope.rb
|
160
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/task.rb
|
161
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/task_argument_error.rb
|
162
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/task_arguments.rb
|
163
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/task_manager.rb
|
164
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/tasklib.rb
|
165
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/testtask.rb
|
166
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/thread_history_display.rb
|
167
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/thread_pool.rb
|
168
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/trace_output.rb
|
169
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/version.rb
|
170
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/lib/rake/win32.rb
|
171
|
+
- vendor/bundle/ruby/2.6.0/gems/rake-12.3.3/rake.gemspec
|
172
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-3.9.0/LICENSE.md
|
173
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-3.9.0/README.md
|
174
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-3.9.0/lib/rspec.rb
|
175
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-3.9.0/lib/rspec/version.rb
|
176
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/.document
|
177
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/.yardopts
|
178
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/Changelog.md
|
179
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/LICENSE.md
|
180
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/README.md
|
181
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/exe/rspec
|
182
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/autorun.rb
|
183
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core.rb
|
184
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/backtrace_formatter.rb
|
185
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/bisect/coordinator.rb
|
186
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/bisect/example_minimizer.rb
|
187
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/bisect/fork_runner.rb
|
188
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/bisect/server.rb
|
189
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/bisect/shell_command.rb
|
190
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/bisect/shell_runner.rb
|
191
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/bisect/utilities.rb
|
192
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/configuration.rb
|
193
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/configuration_options.rb
|
194
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/did_you_mean.rb
|
195
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/drb.rb
|
196
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/dsl.rb
|
197
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/example.rb
|
198
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/example_group.rb
|
199
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/example_status_persister.rb
|
200
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/filter_manager.rb
|
201
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/flat_map.rb
|
202
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters.rb
|
203
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/base_bisect_formatter.rb
|
204
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/base_formatter.rb
|
205
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/base_text_formatter.rb
|
206
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/bisect_drb_formatter.rb
|
207
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/bisect_progress_formatter.rb
|
208
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/console_codes.rb
|
209
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/deprecation_formatter.rb
|
210
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/documentation_formatter.rb
|
211
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/exception_presenter.rb
|
212
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/failure_list_formatter.rb
|
213
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/fallback_message_formatter.rb
|
214
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/helpers.rb
|
215
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/html_formatter.rb
|
216
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/html_printer.rb
|
217
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/html_snippet_extractor.rb
|
218
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/json_formatter.rb
|
219
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/profile_formatter.rb
|
220
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/progress_formatter.rb
|
221
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/protocol.rb
|
222
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/snippet_extractor.rb
|
223
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/formatters/syntax_highlighter.rb
|
224
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/hooks.rb
|
225
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/invocations.rb
|
226
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/memoized_helpers.rb
|
227
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/metadata.rb
|
228
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/metadata_filter.rb
|
229
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/minitest_assertions_adapter.rb
|
230
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/flexmock.rb
|
231
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/mocha.rb
|
232
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/null.rb
|
233
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/rr.rb
|
234
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/rspec.rb
|
235
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/notifications.rb
|
236
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/option_parser.rb
|
237
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/ordering.rb
|
238
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/output_wrapper.rb
|
239
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/pending.rb
|
240
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/profiler.rb
|
241
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/project_initializer.rb
|
242
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/project_initializer/.rspec
|
243
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/project_initializer/spec/spec_helper.rb
|
244
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/rake_task.rb
|
245
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/reporter.rb
|
246
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/ruby_project.rb
|
247
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/runner.rb
|
248
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/sandbox.rb
|
249
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/set.rb
|
250
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/shared_context.rb
|
251
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/shared_example_group.rb
|
252
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/shell_escape.rb
|
253
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/test_unit_assertions_adapter.rb
|
254
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/version.rb
|
255
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/warnings.rb
|
256
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.1/lib/rspec/core/world.rb
|
257
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/.document
|
258
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/.yardopts
|
259
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/Changelog.md
|
260
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/LICENSE.md
|
261
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/README.md
|
262
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations.rb
|
263
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/block_snippet_extractor.rb
|
264
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/configuration.rb
|
265
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/expectation_target.rb
|
266
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/fail_with.rb
|
267
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/failure_aggregator.rb
|
268
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/handler.rb
|
269
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/minitest_integration.rb
|
270
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/syntax.rb
|
271
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/expectations/version.rb
|
272
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers.rb
|
273
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/aliased_matcher.rb
|
274
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in.rb
|
275
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/all.rb
|
276
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/base_matcher.rb
|
277
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be.rb
|
278
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_between.rb
|
279
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_instance_of.rb
|
280
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_kind_of.rb
|
281
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_within.rb
|
282
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/change.rb
|
283
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/compound.rb
|
284
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/contain_exactly.rb
|
285
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/cover.rb
|
286
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/eq.rb
|
287
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/eql.rb
|
288
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/equal.rb
|
289
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/exist.rb
|
290
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/has.rb
|
291
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/have_attributes.rb
|
292
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/include.rb
|
293
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/match.rb
|
294
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/operators.rb
|
295
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/output.rb
|
296
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/raise_error.rb
|
297
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/respond_to.rb
|
298
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/satisfy.rb
|
299
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/start_or_end_with.rb
|
300
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/throw_symbol.rb
|
301
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/yield.rb
|
302
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/composable.rb
|
303
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/dsl.rb
|
304
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/english_phrasing.rb
|
305
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/expecteds_for_multiple_diffs.rb
|
306
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/fail_matchers.rb
|
307
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/generated_descriptions.rb
|
308
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/matcher_delegator.rb
|
309
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.0/lib/rspec/matchers/matcher_protocol.rb
|
310
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/.document
|
311
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/.yardopts
|
312
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/Changelog.md
|
313
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/LICENSE.md
|
314
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/README.md
|
315
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks.rb
|
316
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance.rb
|
317
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/chain.rb
|
318
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/error_generator.rb
|
319
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/expect_chain_chain.rb
|
320
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/expectation_chain.rb
|
321
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/message_chains.rb
|
322
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/proxy.rb
|
323
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/recorder.rb
|
324
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/stub_chain.rb
|
325
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/stub_chain_chain.rb
|
326
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_list_matcher.rb
|
327
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_matchers.rb
|
328
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/configuration.rb
|
329
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/error_generator.rb
|
330
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/example_methods.rb
|
331
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/instance_method_stasher.rb
|
332
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/marshal_extension.rb
|
333
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/expectation_customization.rb
|
334
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/have_received.rb
|
335
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive.rb
|
336
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive_message_chain.rb
|
337
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive_messages.rb
|
338
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_chain.rb
|
339
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_expectation.rb
|
340
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_double.rb
|
341
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_reference.rb
|
342
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/minitest_integration.rb
|
343
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/mutate_const.rb
|
344
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/object_reference.rb
|
345
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/order_group.rb
|
346
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/proxy.rb
|
347
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/space.rb
|
348
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/standalone.rb
|
349
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/syntax.rb
|
350
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/targets.rb
|
351
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/test_double.rb
|
352
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_double.rb
|
353
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_message_expectation.rb
|
354
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_proxy.rb
|
355
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/version.rb
|
356
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/Changelog.md
|
357
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/LICENSE.md
|
358
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/README.md
|
359
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support.rb
|
360
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/caller_filter.rb
|
361
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/comparable_version.rb
|
362
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/differ.rb
|
363
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/directory_maker.rb
|
364
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/encoded_string.rb
|
365
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/fuzzy_matcher.rb
|
366
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/hunk_generator.rb
|
367
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/matcher_definition.rb
|
368
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/method_signature_verifier.rb
|
369
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/mutex.rb
|
370
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/object_formatter.rb
|
371
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/recursive_const_methods.rb
|
372
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/reentrant_mutex.rb
|
373
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/ruby_features.rb
|
374
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/source.rb
|
375
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/source/location.rb
|
376
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/source/node.rb
|
377
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/source/token.rb
|
378
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/spec.rb
|
379
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/spec/deprecation_helpers.rb
|
380
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/spec/formatting_support.rb
|
381
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/spec/in_sub_process.rb
|
382
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/spec/library_wide_checks.rb
|
383
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/spec/shell_out.rb
|
384
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/spec/stderr_splitter.rb
|
385
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/spec/string_matcher.rb
|
386
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/spec/with_isolated_directory.rb
|
387
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/spec/with_isolated_stderr.rb
|
388
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/version.rb
|
389
|
+
- vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.2/lib/rspec/support/warnings.rb
|
390
|
+
- vendor/bundle/ruby/2.6.0/specifications/diff-lcs-1.3.gemspec
|
391
|
+
- vendor/bundle/ruby/2.6.0/specifications/rake-12.3.3.gemspec
|
392
|
+
- vendor/bundle/ruby/2.6.0/specifications/rspec-3.9.0.gemspec
|
393
|
+
- vendor/bundle/ruby/2.6.0/specifications/rspec-core-3.9.1.gemspec
|
394
|
+
- vendor/bundle/ruby/2.6.0/specifications/rspec-expectations-3.9.0.gemspec
|
395
|
+
- vendor/bundle/ruby/2.6.0/specifications/rspec-mocks-3.9.1.gemspec
|
396
|
+
- vendor/bundle/ruby/2.6.0/specifications/rspec-support-3.9.2.gemspec
|
397
|
+
homepage: https://github.com/seieric/coreserver-db-backup-ruby
|
398
|
+
licenses:
|
399
|
+
- MIT
|
400
|
+
metadata:
|
401
|
+
homepage_uri: https://github.com/seieric/coreserver-db-backup-ruby
|
402
|
+
source_code_uri: https://github.com/seieric/coreserver-db-backup-ruby
|
403
|
+
post_install_message:
|
404
|
+
rdoc_options: []
|
405
|
+
require_paths:
|
406
|
+
- lib
|
407
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
408
|
+
requirements:
|
409
|
+
- - ">="
|
410
|
+
- !ruby/object:Gem::Version
|
411
|
+
version: 2.3.0
|
412
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
413
|
+
requirements:
|
414
|
+
- - ">="
|
415
|
+
- !ruby/object:Gem::Version
|
416
|
+
version: '0'
|
417
|
+
requirements: []
|
418
|
+
rubygems_version: 3.0.3
|
419
|
+
signing_key:
|
420
|
+
specification_version: 4
|
421
|
+
summary: コアサーバー・XREAのデータベースをCronでバックアップ
|
422
|
+
test_files: []
|