vagrant-unbundled 2.2.0.0 → 2.2.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +3 -4
- data/CHANGELOG.md +49 -0
- data/lib/vagrant/action/builtin/box_check_outdated.rb +1 -0
- data/lib/vagrant/action/builtin/config_validate.rb +1 -1
- data/lib/vagrant/box.rb +27 -0
- data/lib/vagrant/bundler.rb +7 -2
- data/lib/vagrant/cli.rb +4 -0
- data/lib/vagrant/config/v2/root.rb +6 -2
- data/lib/vagrant/plugin/v2/communicator.rb +7 -0
- data/lib/vagrant/plugin/v2/trigger.rb +5 -1
- data/lib/vagrant/util/network_ip.rb +1 -26
- data/lib/vagrant/util/platform.rb +19 -7
- data/lib/vagrant/util/powershell.rb +23 -25
- data/lib/vagrant/util/ssh.rb +18 -5
- data/lib/vagrant/vagrantfile.rb +13 -2
- data/plugins/commands/login/plugin.rb +0 -1
- data/plugins/commands/validate/command.rb +17 -2
- data/plugins/communicators/ssh/communicator.rb +22 -12
- data/plugins/communicators/winrm/communicator.rb +5 -1
- data/plugins/communicators/winrm/shell.rb +25 -1
- data/plugins/guests/debian/cap/change_host_name.rb +66 -10
- data/plugins/guests/windows/cap/change_host_name.rb +4 -12
- data/plugins/guests/windows/cap/reboot.rb +36 -6
- data/plugins/guests/windows/plugin.rb +5 -0
- data/plugins/kernel_v2/config/vm.rb +8 -4
- data/plugins/providers/docker/action/host_machine_sync_folders.rb +2 -3
- data/plugins/providers/hyperv/provider.rb +15 -3
- data/plugins/providers/hyperv/scripts/delete_vm.ps1 +3 -0
- data/plugins/providers/hyperv/scripts/get_network_config.ps1 +1 -1
- data/plugins/providers/hyperv/scripts/set_network_vlan.ps1 +0 -6
- data/plugins/providers/hyperv/scripts/utils/VagrantVM/VagrantVM.psm1 +1 -1
- data/plugins/providers/virtualbox/action.rb +2 -0
- data/plugins/providers/virtualbox/action/network.rb +33 -42
- data/plugins/providers/virtualbox/action/set_default_nic_type.rb +69 -0
- data/plugins/providers/virtualbox/config.rb +10 -0
- data/plugins/providers/virtualbox/driver/meta.rb +1 -0
- data/plugins/providers/virtualbox/driver/version_5_0.rb +17 -6
- data/plugins/providers/virtualbox/driver/version_5_2.rb +2 -2
- data/plugins/providers/virtualbox/driver/version_6_0.rb +105 -0
- data/plugins/providers/virtualbox/plugin.rb +1 -0
- data/plugins/providers/virtualbox/synced_folder.rb +2 -1
- data/plugins/provisioners/docker/cap/linux/docker_configure_vagrant_user.rb +1 -0
- data/plugins/provisioners/shell/config.rb +4 -1
- data/plugins/provisioners/shell/provisioner.rb +6 -0
- data/plugins/synced_folders/smb/synced_folder.rb +18 -5
- data/templates/locales/en.yml +19 -3
- data/vagrant.gemspec +3 -1
- data/version.txt +1 -1
- metadata +407 -12
@@ -17,6 +17,7 @@ module VagrantPlugins
|
|
17
17
|
attr_accessor :sensitive
|
18
18
|
attr_accessor :powershell_args
|
19
19
|
attr_accessor :powershell_elevated_interactive
|
20
|
+
attr_accessor :reset
|
20
21
|
|
21
22
|
def initialize
|
22
23
|
@args = UNSET_VALUE
|
@@ -31,6 +32,7 @@ module VagrantPlugins
|
|
31
32
|
@keep_color = UNSET_VALUE
|
32
33
|
@name = UNSET_VALUE
|
33
34
|
@sensitive = UNSET_VALUE
|
35
|
+
@reset = UNSET_VALUE
|
34
36
|
@powershell_args = UNSET_VALUE
|
35
37
|
@powershell_elevated_interactive = UNSET_VALUE
|
36
38
|
end
|
@@ -48,6 +50,7 @@ module VagrantPlugins
|
|
48
50
|
@keep_color = false if @keep_color == UNSET_VALUE
|
49
51
|
@name = nil if @name == UNSET_VALUE
|
50
52
|
@sensitive = false if @sensitive == UNSET_VALUE
|
53
|
+
@reset = false if @reset == UNSET_VALUE
|
51
54
|
@powershell_args = "-ExecutionPolicy Bypass" if @powershell_args == UNSET_VALUE
|
52
55
|
@powershell_elevated_interactive = false if @powershell_elevated_interactive == UNSET_VALUE
|
53
56
|
|
@@ -68,7 +71,7 @@ module VagrantPlugins
|
|
68
71
|
# Validate that the parameters are properly set
|
69
72
|
if path && inline
|
70
73
|
errors << I18n.t("vagrant.provisioners.shell.path_and_inline_set")
|
71
|
-
elsif !path && !inline
|
74
|
+
elsif !path && !inline && !reset
|
72
75
|
errors << I18n.t("vagrant.provisioners.shell.no_path_or_inline")
|
73
76
|
end
|
74
77
|
|
@@ -18,6 +18,10 @@ module VagrantPlugins
|
|
18
18
|
args = " #{args.join(" ")}"
|
19
19
|
end
|
20
20
|
|
21
|
+
# In cases where the connection is just being reset
|
22
|
+
# bail out before attempting to do any actual provisioning
|
23
|
+
return if !config.path && !config.inline
|
24
|
+
|
21
25
|
case @machine.config.vm.communicator
|
22
26
|
when :winrm
|
23
27
|
provision_winrm(args)
|
@@ -26,6 +30,8 @@ module VagrantPlugins
|
|
26
30
|
else
|
27
31
|
provision_ssh(args)
|
28
32
|
end
|
33
|
+
ensure
|
34
|
+
@machine.communicate.reset! if config.reset
|
29
35
|
end
|
30
36
|
|
31
37
|
protected
|
@@ -39,19 +39,27 @@ module VagrantPlugins
|
|
39
39
|
# If we need auth information, then ask the user.
|
40
40
|
have_auth = false
|
41
41
|
folders.each do |id, data|
|
42
|
-
|
43
|
-
|
44
|
-
|
42
|
+
smb_username = data[:smb_username] if data[:smb_username]
|
43
|
+
smb_password = data[:smb_password] if data[:smb_password]
|
44
|
+
if smb_username && smb_password
|
45
45
|
have_auth = true
|
46
46
|
break
|
47
47
|
end
|
48
48
|
end
|
49
49
|
|
50
|
+
modify_username = false
|
50
51
|
if !have_auth
|
51
52
|
machine.ui.detail(I18n.t("vagrant_sf_smb.warning_password") + "\n ")
|
52
53
|
retries = 0
|
53
54
|
while retries < CREDENTIAL_RETRY_MAX do
|
54
|
-
smb_username
|
55
|
+
if smb_username
|
56
|
+
username = machine.ui.ask("Username (#{smb_username}): ")
|
57
|
+
smb_username = username if username != ""
|
58
|
+
modify_username = true
|
59
|
+
else
|
60
|
+
smb_username = machine.ui.ask("Username: ")
|
61
|
+
end
|
62
|
+
|
55
63
|
smb_password = machine.ui.ask("Password (will be hidden): ", echo: false)
|
56
64
|
auth_success = true
|
57
65
|
|
@@ -77,7 +85,12 @@ module VagrantPlugins
|
|
77
85
|
end
|
78
86
|
|
79
87
|
folders.each do |id, data|
|
80
|
-
|
88
|
+
if modify_username
|
89
|
+
# Only override original username if user requests to
|
90
|
+
data[:smb_username] = smb_username
|
91
|
+
else
|
92
|
+
data[:smb_username] ||= smb_username
|
93
|
+
end
|
81
94
|
data[:smb_password] ||= smb_password
|
82
95
|
|
83
96
|
# Register password as sensitive
|
data/templates/locales/en.yml
CHANGED
@@ -972,10 +972,13 @@ en:
|
|
972
972
|
network_type_not_supported: |-
|
973
973
|
The %{type} network type is not supported for this box or guest.
|
974
974
|
network_address_invalid: |-
|
975
|
-
|
976
|
-
|
975
|
+
Network settings specified in your Vagrantfile define an invalid
|
976
|
+
IP address. Please review the error message below and update your
|
977
|
+
Vagrantfile network settings:
|
977
978
|
|
978
|
-
%{
|
979
|
+
Address: %{address}
|
980
|
+
Netmask: %{mask}
|
981
|
+
Error: %{error}
|
979
982
|
network_manager_not_installed: |-
|
980
983
|
Vagrant was instructed to configure the %{device} network device to
|
981
984
|
be managed by NetworkManager. However, the configured guest VM does
|
@@ -1845,6 +1848,8 @@ en:
|
|
1845
1848
|
hostname_invalid_characters: |-
|
1846
1849
|
The hostname set for the VM should only contain letters, numbers,
|
1847
1850
|
hyphens or dots. It cannot start with a hyphen or dot.
|
1851
|
+
ignore_provider_config: |-
|
1852
|
+
Ignoring provider config for validation...
|
1848
1853
|
name_invalid: |-
|
1849
1854
|
The sub-VM name '%{name}' is invalid. Please don't use special characters.
|
1850
1855
|
network_ip_ends_in_one: |-
|
@@ -2295,6 +2300,17 @@ en:
|
|
2295
2300
|
mounting: Mounting shared folders...
|
2296
2301
|
mounting_entry: "%{guestpath} => %{hostpath}"
|
2297
2302
|
nomount_entry: "Automounting disabled: %{hostpath}"
|
2303
|
+
set_default_nic_type:
|
2304
|
+
e1000_warning: |-
|
2305
|
+
Vagrant has detected a configuration issue which exposes a
|
2306
|
+
vulnerability with the installed version of VirtualBox. The
|
2307
|
+
current guest is configured to use an E1000 NIC type for a
|
2308
|
+
network adapter which is vulnerable in this version of VirtualBox.
|
2309
|
+
Ensure the guest is trusted to use this configuration or update
|
2310
|
+
the NIC type using one of the methods below:
|
2311
|
+
|
2312
|
+
https://www.vagrantup.com/docs/virtualbox/configuration.html#default-nic-type
|
2313
|
+
https://www.vagrantup.com/docs/virtualbox/networking.html#virtualbox-nic-type
|
2298
2314
|
set_name:
|
2299
2315
|
setting_name: |-
|
2300
2316
|
Setting the name of the VM: %{name}
|
data/vagrant.gemspec
CHANGED
@@ -15,9 +15,11 @@ Gem::Specification.new do |s|
|
|
15
15
|
s.required_rubygems_version = ">= 1.3.6"
|
16
16
|
s.rubyforge_project = "vagrant"
|
17
17
|
|
18
|
+
s.add_dependency "bcrypt_pbkdf", "~> 1.0.0"
|
18
19
|
s.add_dependency "childprocess", "~> 0.6.0"
|
20
|
+
s.add_dependency "ed25519", "~> 1.2.4"
|
19
21
|
s.add_dependency "erubis", "~> 2.7.0"
|
20
|
-
s.add_dependency "i18n", "
|
22
|
+
s.add_dependency "i18n", "~> 1.1.1"
|
21
23
|
s.add_dependency "listen", "~> 3.1.5"
|
22
24
|
s.add_dependency "hashicorp-checkpoint", "~> 0.1.5"
|
23
25
|
s.add_dependency "log4r", "~> 1.1.9", "< 1.1.11"
|
data/version.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.2.
|
1
|
+
2.2.2.0
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-unbundled
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mitchell Hashimoto
|
@@ -9,8 +9,22 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-
|
12
|
+
date: 2018-12-01 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bcrypt_pbkdf
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - "~>"
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: 1.0.0
|
21
|
+
type: :runtime
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - "~>"
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 1.0.0
|
14
28
|
- !ruby/object:Gem::Dependency
|
15
29
|
name: childprocess
|
16
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -25,6 +39,20 @@ dependencies:
|
|
25
39
|
- - "~>"
|
26
40
|
- !ruby/object:Gem::Version
|
27
41
|
version: 0.6.0
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: ed25519
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - "~>"
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: 1.2.4
|
49
|
+
type: :runtime
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - "~>"
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: 1.2.4
|
28
56
|
- !ruby/object:Gem::Dependency
|
29
57
|
name: erubis
|
30
58
|
requirement: !ruby/object:Gem::Requirement
|
@@ -43,22 +71,16 @@ dependencies:
|
|
43
71
|
name: i18n
|
44
72
|
requirement: !ruby/object:Gem::Requirement
|
45
73
|
requirements:
|
46
|
-
- - "
|
47
|
-
- !ruby/object:Gem::Version
|
48
|
-
version: 0.6.0
|
49
|
-
- - "<="
|
74
|
+
- - "~>"
|
50
75
|
- !ruby/object:Gem::Version
|
51
|
-
version:
|
76
|
+
version: 1.1.1
|
52
77
|
type: :runtime
|
53
78
|
prerelease: false
|
54
79
|
version_requirements: !ruby/object:Gem::Requirement
|
55
80
|
requirements:
|
56
|
-
- - "
|
57
|
-
- !ruby/object:Gem::Version
|
58
|
-
version: 0.6.0
|
59
|
-
- - "<="
|
81
|
+
- - "~>"
|
60
82
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
83
|
+
version: 1.1.1
|
62
84
|
- !ruby/object:Gem::Dependency
|
63
85
|
name: listen
|
64
86
|
requirement: !ruby/object:Gem::Requirement
|
@@ -1112,6 +1134,7 @@ files:
|
|
1112
1134
|
- plugins/providers/virtualbox/action/prepare_nfs_valid_ids.rb
|
1113
1135
|
- plugins/providers/virtualbox/action/resume.rb
|
1114
1136
|
- plugins/providers/virtualbox/action/sane_defaults.rb
|
1137
|
+
- plugins/providers/virtualbox/action/set_default_nic_type.rb
|
1115
1138
|
- plugins/providers/virtualbox/action/set_name.rb
|
1116
1139
|
- plugins/providers/virtualbox/action/setup_package_files.rb
|
1117
1140
|
- plugins/providers/virtualbox/action/snapshot_delete.rb
|
@@ -1130,6 +1153,7 @@ files:
|
|
1130
1153
|
- plugins/providers/virtualbox/driver/version_5_0.rb
|
1131
1154
|
- plugins/providers/virtualbox/driver/version_5_1.rb
|
1132
1155
|
- plugins/providers/virtualbox/driver/version_5_2.rb
|
1156
|
+
- plugins/providers/virtualbox/driver/version_6_0.rb
|
1133
1157
|
- plugins/providers/virtualbox/model/forwarded_port.rb
|
1134
1158
|
- plugins/providers/virtualbox/plugin.rb
|
1135
1159
|
- plugins/providers/virtualbox/provider.rb
|
@@ -1542,6 +1566,12 @@ files:
|
|
1542
1566
|
- vendor/bundle/ruby/2.5.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/objects/pack/pack-7d06cc53047671ef9b020388ee86b2b42154598b.idx
|
1543
1567
|
- vendor/bundle/ruby/2.5.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/objects/pack/pack-7d06cc53047671ef9b020388ee86b2b42154598b.pack
|
1544
1568
|
- vendor/bundle/ruby/2.5.0/cache/bundler/git/vagrant-spec-126eabde74f0d7efed2a1138913efa8a256083c9/packed-refs
|
1569
|
+
- vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/bcrypt_pbkdf-1.0.0/bcrypt_pbkdf_ext.so
|
1570
|
+
- vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/bcrypt_pbkdf-1.0.0/gem.build_complete
|
1571
|
+
- vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/bcrypt_pbkdf-1.0.0/gem_make.out
|
1572
|
+
- vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/ed25519-1.2.4/ed25519_ref10.so
|
1573
|
+
- vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/ed25519-1.2.4/gem.build_complete
|
1574
|
+
- vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/ed25519-1.2.4/gem_make.out
|
1545
1575
|
- vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/ffi-1.9.25/ffi_c.so
|
1546
1576
|
- vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/ffi-1.9.25/gem.build_complete
|
1547
1577
|
- vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/ffi-1.9.25/gem_make.out
|
@@ -1578,6 +1608,39 @@ files:
|
|
1578
1608
|
- vendor/bundle/ruby/2.5.0/gems/addressable-2.5.2/tasks/metrics.rake
|
1579
1609
|
- vendor/bundle/ruby/2.5.0/gems/addressable-2.5.2/tasks/rspec.rake
|
1580
1610
|
- vendor/bundle/ruby/2.5.0/gems/addressable-2.5.2/tasks/yard.rake
|
1611
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/.travis.yml
|
1612
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/CHANGELOG.md
|
1613
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/COPYING
|
1614
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/Gemfile
|
1615
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/Gemfile.lock
|
1616
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/README.md
|
1617
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/Rakefile
|
1618
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/bcrypt_pbkdf.gemspec
|
1619
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/.sitearchdir.time
|
1620
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/Makefile
|
1621
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/bcrypt_pbkdf.c
|
1622
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/bcrypt_pbkdf.o
|
1623
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/bcrypt_pbkdf_ext.c
|
1624
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/bcrypt_pbkdf_ext.o
|
1625
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/bcrypt_pbkdf_ext.so
|
1626
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/blf.h
|
1627
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/blowfish.c
|
1628
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/blowfish.o
|
1629
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/crypto_api.h
|
1630
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/crypto_hash_sha512.h
|
1631
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/explicit_bzero.c
|
1632
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/explicit_bzero.o
|
1633
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/extconf.rb
|
1634
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/hash_sha512.c
|
1635
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/hash_sha512.o
|
1636
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/includes.h
|
1637
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/sha2.h
|
1638
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/util.h
|
1639
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/ext/mri/utils.h
|
1640
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/lib/bcrypt_pbkdf.rb
|
1641
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/lib/bcrypt_pbkdf_ext.so
|
1642
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/test/bcrypt_pnkdf/engine_test.rb
|
1643
|
+
- vendor/bundle/ruby/2.5.0/gems/bcrypt_pbkdf-1.0.0/test/test_helper.rb
|
1581
1644
|
- vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/CHANGES
|
1582
1645
|
- vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/MIT-LICENSE
|
1583
1646
|
- vendor/bundle/ruby/2.5.0/gems/builder-3.2.3/README.md
|
@@ -1653,6 +1716,147 @@ files:
|
|
1653
1716
|
- vendor/bundle/ruby/2.5.0/gems/childprocess-0.6.3/spec/spec_helper.rb
|
1654
1717
|
- vendor/bundle/ruby/2.5.0/gems/childprocess-0.6.3/spec/unix_spec.rb
|
1655
1718
|
- vendor/bundle/ruby/2.5.0/gems/childprocess-0.6.3/spec/windows_spec.rb
|
1719
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/CHANGELOG.md
|
1720
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/Gemfile
|
1721
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/LICENSE.md
|
1722
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/README.md
|
1723
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/Rakefile
|
1724
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/ext/concurrent-ruby/ConcurrentRubyService.java
|
1725
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/ext/concurrent-ruby/com/concurrent_ruby/ext/AtomicReferenceLibrary.java
|
1726
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/ext/concurrent-ruby/com/concurrent_ruby/ext/JRubyMapBackendLibrary.java
|
1727
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicBooleanLibrary.java
|
1728
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicFixnumLibrary.java
|
1729
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaSemaphoreLibrary.java
|
1730
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java
|
1731
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMap.java
|
1732
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMapV8.java
|
1733
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/LongAdder.java
|
1734
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/Striped64.java
|
1735
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/ConcurrentHashMapV8.java
|
1736
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/LongAdder.java
|
1737
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/Striped64.java
|
1738
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166y/ThreadLocalRandom.java
|
1739
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent-ruby.rb
|
1740
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent.rb
|
1741
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/agent.rb
|
1742
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/array.rb
|
1743
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/async.rb
|
1744
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atom.rb
|
1745
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/abstract_thread_local_var.rb
|
1746
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/atomic_boolean.rb
|
1747
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/atomic_fixnum.rb
|
1748
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/atomic_markable_reference.rb
|
1749
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/atomic_reference.rb
|
1750
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/count_down_latch.rb
|
1751
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/cyclic_barrier.rb
|
1752
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/event.rb
|
1753
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/java_count_down_latch.rb
|
1754
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/java_thread_local_var.rb
|
1755
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/mutex_atomic_boolean.rb
|
1756
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/mutex_atomic_fixnum.rb
|
1757
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/mutex_count_down_latch.rb
|
1758
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/mutex_semaphore.rb
|
1759
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/read_write_lock.rb
|
1760
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/reentrant_read_write_lock.rb
|
1761
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/ruby_thread_local_var.rb
|
1762
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/semaphore.rb
|
1763
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic/thread_local_var.rb
|
1764
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic_reference/mutex_atomic.rb
|
1765
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomic_reference/numeric_cas_wrapper.rb
|
1766
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/atomics.rb
|
1767
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/collection/copy_on_notify_observer_set.rb
|
1768
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/collection/copy_on_write_observer_set.rb
|
1769
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/collection/java_non_concurrent_priority_queue.rb
|
1770
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/collection/lock_free_stack.rb
|
1771
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/collection/map/atomic_reference_map_backend.rb
|
1772
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/collection/map/mri_map_backend.rb
|
1773
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/collection/map/non_concurrent_map_backend.rb
|
1774
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/collection/map/synchronized_map_backend.rb
|
1775
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/collection/non_concurrent_priority_queue.rb
|
1776
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/collection/ruby_non_concurrent_priority_queue.rb
|
1777
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/concern/deprecation.rb
|
1778
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/concern/dereferenceable.rb
|
1779
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/concern/logging.rb
|
1780
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/concern/obligation.rb
|
1781
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/concern/observable.rb
|
1782
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/concurrent_ruby.jar
|
1783
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/configuration.rb
|
1784
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/constants.rb
|
1785
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/dataflow.rb
|
1786
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/delay.rb
|
1787
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/errors.rb
|
1788
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/exchanger.rb
|
1789
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/abstract_executor_service.rb
|
1790
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/cached_thread_pool.rb
|
1791
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/executor_service.rb
|
1792
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/fixed_thread_pool.rb
|
1793
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/immediate_executor.rb
|
1794
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/indirect_immediate_executor.rb
|
1795
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/java_executor_service.rb
|
1796
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/java_single_thread_executor.rb
|
1797
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/java_thread_pool_executor.rb
|
1798
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/ruby_executor_service.rb
|
1799
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/ruby_single_thread_executor.rb
|
1800
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/ruby_thread_pool_executor.rb
|
1801
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/safe_task_executor.rb
|
1802
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/serial_executor_service.rb
|
1803
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/serialized_execution.rb
|
1804
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/serialized_execution_delegator.rb
|
1805
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/simple_executor_service.rb
|
1806
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/single_thread_executor.rb
|
1807
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/thread_pool_executor.rb
|
1808
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executor/timer_set.rb
|
1809
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/executors.rb
|
1810
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/future.rb
|
1811
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/hash.rb
|
1812
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/immutable_struct.rb
|
1813
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/ivar.rb
|
1814
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/map.rb
|
1815
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/maybe.rb
|
1816
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/mutable_struct.rb
|
1817
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/mvar.rb
|
1818
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/options.rb
|
1819
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/promise.rb
|
1820
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/promises.rb
|
1821
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/re_include.rb
|
1822
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/scheduled_task.rb
|
1823
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/set.rb
|
1824
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/settable_struct.rb
|
1825
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/synchronization.rb
|
1826
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/synchronization/abstract_lockable_object.rb
|
1827
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/synchronization/abstract_object.rb
|
1828
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/synchronization/abstract_struct.rb
|
1829
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/synchronization/condition.rb
|
1830
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/synchronization/jruby_lockable_object.rb
|
1831
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/synchronization/jruby_object.rb
|
1832
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/synchronization/lock.rb
|
1833
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/synchronization/lockable_object.rb
|
1834
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/synchronization/mri_object.rb
|
1835
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/synchronization/mutex_lockable_object.rb
|
1836
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/synchronization/object.rb
|
1837
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/synchronization/rbx_lockable_object.rb
|
1838
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/synchronization/rbx_object.rb
|
1839
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/synchronization/truffleruby_object.rb
|
1840
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/synchronization/volatile.rb
|
1841
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/thread_safe/synchronized_delegator.rb
|
1842
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/thread_safe/util.rb
|
1843
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/thread_safe/util/adder.rb
|
1844
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/thread_safe/util/cheap_lockable.rb
|
1845
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/thread_safe/util/data_structures.rb
|
1846
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/thread_safe/util/power_of_two_tuple.rb
|
1847
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/thread_safe/util/striped64.rb
|
1848
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/thread_safe/util/volatile.rb
|
1849
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/thread_safe/util/xor_shift_random.rb
|
1850
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/timer_task.rb
|
1851
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/tuple.rb
|
1852
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/tvar.rb
|
1853
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/utility/at_exit.rb
|
1854
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/utility/engine.rb
|
1855
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/utility/monotonic_time.rb
|
1856
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/utility/native_extension_loader.rb
|
1857
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/utility/native_integer.rb
|
1858
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/utility/processor_counter.rb
|
1859
|
+
- vendor/bundle/ruby/2.5.0/gems/concurrent-ruby-1.1.3/lib/concurrent/version.rb
|
1656
1860
|
- vendor/bundle/ruby/2.5.0/gems/crack-0.4.3/.gitignore
|
1657
1861
|
- vendor/bundle/ruby/2.5.0/gems/crack-0.4.3/.travis.yml
|
1658
1862
|
- vendor/bundle/ruby/2.5.0/gems/crack-0.4.3/Gemfile
|
@@ -1733,6 +1937,97 @@ files:
|
|
1733
1937
|
- vendor/bundle/ruby/2.5.0/gems/domain_name-0.5.20180417/test/test_domain_name-punycode.rb
|
1734
1938
|
- vendor/bundle/ruby/2.5.0/gems/domain_name-0.5.20180417/test/test_domain_name.rb
|
1735
1939
|
- vendor/bundle/ruby/2.5.0/gems/domain_name-0.5.20180417/tool/gen_etld_data.rb
|
1940
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/.gitignore
|
1941
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/.rspec
|
1942
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/.rubocop.yml
|
1943
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/.travis.yml
|
1944
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/CHANGES.md
|
1945
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/CODE_OF_CONDUCT.md
|
1946
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/Gemfile
|
1947
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/LICENSE
|
1948
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/README.md
|
1949
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/Rakefile
|
1950
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/appveyor.yml
|
1951
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ed25519.gemspec
|
1952
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ed25519.png
|
1953
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/LICENSE.txt
|
1954
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/README.md
|
1955
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAEngine.java
|
1956
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAKey.java
|
1957
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAPrivateKey.java
|
1958
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSAPublicKey.java
|
1959
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/EdDSASecurityProvider.java
|
1960
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/KeyFactory.java
|
1961
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/KeyPairGenerator.java
|
1962
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/Utils.java
|
1963
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/Constants.java
|
1964
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/Curve.java
|
1965
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/Encoding.java
|
1966
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/Field.java
|
1967
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/FieldElement.java
|
1968
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/GroupElement.java
|
1969
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/ScalarOps.java
|
1970
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/bigint/BigIntegerFieldElement.java
|
1971
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/bigint/BigIntegerLittleEndianEncoding.java
|
1972
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/bigint/BigIntegerScalarOps.java
|
1973
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/bigint/package.html
|
1974
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/ed25519/Ed25519FieldElement.java
|
1975
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/ed25519/Ed25519LittleEndianEncoding.java
|
1976
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/math/ed25519/Ed25519ScalarOps.java
|
1977
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/spec/EdDSAGenParameterSpec.java
|
1978
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/spec/EdDSANamedCurveSpec.java
|
1979
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/spec/EdDSANamedCurveTable.java
|
1980
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/spec/EdDSAParameterSpec.java
|
1981
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/spec/EdDSAPrivateKeySpec.java
|
1982
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/net/i2p/crypto/eddsa/spec/EdDSAPublicKeySpec.java
|
1983
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_jruby/org/cryptorb/Ed25519Provider.java
|
1984
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/.sitearchdir.time
|
1985
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/Makefile
|
1986
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/api.h
|
1987
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/base.h
|
1988
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/base2.h
|
1989
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/d.h
|
1990
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/d2.h
|
1991
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ed25519_ref10.c
|
1992
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ed25519_ref10.h
|
1993
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ed25519_ref10.o
|
1994
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ed25519_ref10.so
|
1995
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/extconf.rb
|
1996
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/fe.c
|
1997
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/fe.h
|
1998
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/fe.o
|
1999
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge.c
|
2000
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge.h
|
2001
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge.o
|
2002
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge_add.h
|
2003
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge_madd.h
|
2004
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge_msub.h
|
2005
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge_p2_dbl.h
|
2006
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/ge_sub.h
|
2007
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/keypair.c
|
2008
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/keypair.o
|
2009
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/open.c
|
2010
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/open.o
|
2011
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/pow22523.h
|
2012
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/pow225521.h
|
2013
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sc.h
|
2014
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sc_muladd.c
|
2015
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sc_muladd.o
|
2016
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sc_reduce.c
|
2017
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sc_reduce.o
|
2018
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sha512.c
|
2019
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sha512.h
|
2020
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sha512.o
|
2021
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sign.c
|
2022
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sign.o
|
2023
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/sqrtm1.h
|
2024
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/verify.c
|
2025
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/ext/ed25519_ref10/verify.o
|
2026
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/lib/ed25519.rb
|
2027
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/lib/ed25519/signing_key.rb
|
2028
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/lib/ed25519/verify_key.rb
|
2029
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/lib/ed25519/version.rb
|
2030
|
+
- vendor/bundle/ruby/2.5.0/gems/ed25519-1.2.4/lib/ed25519_ref10.so
|
1736
2031
|
- vendor/bundle/ruby/2.5.0/gems/erubis-2.7.0/CHANGES.txt
|
1737
2032
|
- vendor/bundle/ruby/2.5.0/gems/erubis-2.7.0/MIT-LICENSE
|
1738
2033
|
- vendor/bundle/ruby/2.5.0/gems/erubis-2.7.0/README.txt
|
@@ -2900,6 +3195,102 @@ files:
|
|
2900
3195
|
- vendor/bundle/ruby/2.5.0/gems/i18n-0.8.0/test/test_data/locales/invalid/syntax.yml
|
2901
3196
|
- vendor/bundle/ruby/2.5.0/gems/i18n-0.8.0/test/test_data/locales/plurals.rb
|
2902
3197
|
- vendor/bundle/ruby/2.5.0/gems/i18n-0.8.0/test/test_helper.rb
|
3198
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/MIT-LICENSE
|
3199
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/README.md
|
3200
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/gemfiles/Gemfile.rails-3.2.x
|
3201
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/gemfiles/Gemfile.rails-4.0.x
|
3202
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/gemfiles/Gemfile.rails-4.1.x
|
3203
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/gemfiles/Gemfile.rails-4.2.x
|
3204
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/gemfiles/Gemfile.rails-5.0.x
|
3205
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/gemfiles/Gemfile.rails-5.1.x
|
3206
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/gemfiles/Gemfile.rails-master
|
3207
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n.rb
|
3208
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend.rb
|
3209
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend/base.rb
|
3210
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend/cache.rb
|
3211
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend/cascade.rb
|
3212
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend/chain.rb
|
3213
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend/fallbacks.rb
|
3214
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend/flatten.rb
|
3215
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend/gettext.rb
|
3216
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend/interpolation_compiler.rb
|
3217
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend/key_value.rb
|
3218
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend/memoize.rb
|
3219
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend/metadata.rb
|
3220
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend/pluralization.rb
|
3221
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend/simple.rb
|
3222
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/backend/transliterator.rb
|
3223
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/config.rb
|
3224
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/core_ext/hash.rb
|
3225
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/core_ext/string/interpolate.rb
|
3226
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/exceptions.rb
|
3227
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/gettext.rb
|
3228
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/gettext/helpers.rb
|
3229
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/gettext/po_parser.rb
|
3230
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/interpolate/ruby.rb
|
3231
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/locale.rb
|
3232
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/locale/fallbacks.rb
|
3233
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/locale/tag.rb
|
3234
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/locale/tag/parents.rb
|
3235
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/locale/tag/rfc4646.rb
|
3236
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/locale/tag/simple.rb
|
3237
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/middleware.rb
|
3238
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/tests.rb
|
3239
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/tests/basics.rb
|
3240
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/tests/defaults.rb
|
3241
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/tests/interpolation.rb
|
3242
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/tests/link.rb
|
3243
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/tests/localization.rb
|
3244
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/tests/localization/date.rb
|
3245
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/tests/localization/date_time.rb
|
3246
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/tests/localization/procs.rb
|
3247
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/tests/localization/time.rb
|
3248
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/tests/lookup.rb
|
3249
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/tests/pluralization.rb
|
3250
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/tests/procs.rb
|
3251
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/lib/i18n/version.rb
|
3252
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/api/all_features_test.rb
|
3253
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/api/cascade_test.rb
|
3254
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/api/chain_test.rb
|
3255
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/api/fallbacks_test.rb
|
3256
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/api/key_value_test.rb
|
3257
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/api/memoize_test.rb
|
3258
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/api/override_test.rb
|
3259
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/api/pluralization_test.rb
|
3260
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/api/simple_test.rb
|
3261
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/backend/cache_test.rb
|
3262
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/backend/cascade_test.rb
|
3263
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/backend/chain_test.rb
|
3264
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/backend/exceptions_test.rb
|
3265
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/backend/fallbacks_test.rb
|
3266
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/backend/interpolation_compiler_test.rb
|
3267
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/backend/key_value_test.rb
|
3268
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/backend/memoize_test.rb
|
3269
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/backend/metadata_test.rb
|
3270
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/backend/pluralization_test.rb
|
3271
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/backend/simple_test.rb
|
3272
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/backend/transliterator_test.rb
|
3273
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/core_ext/hash_test.rb
|
3274
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/gettext/api_test.rb
|
3275
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/gettext/backend_test.rb
|
3276
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/i18n/exceptions_test.rb
|
3277
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/i18n/gettext_plural_keys_test.rb
|
3278
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/i18n/interpolate_test.rb
|
3279
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/i18n/load_path_test.rb
|
3280
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/i18n/middleware_test.rb
|
3281
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/i18n_test.rb
|
3282
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/locale/fallbacks_test.rb
|
3283
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/locale/tag/rfc4646_test.rb
|
3284
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/locale/tag/simple_test.rb
|
3285
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/run_all.rb
|
3286
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/test_data/locales/de.po
|
3287
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/test_data/locales/en.rb
|
3288
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/test_data/locales/en.yaml
|
3289
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/test_data/locales/en.yml
|
3290
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/test_data/locales/invalid/empty.yml
|
3291
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/test_data/locales/invalid/syntax.yml
|
3292
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/test_data/locales/plurals.rb
|
3293
|
+
- vendor/bundle/ruby/2.5.0/gems/i18n-1.1.1/test/test_helper.rb
|
2903
3294
|
- vendor/bundle/ruby/2.5.0/gems/listen-3.1.5/CHANGELOG.md
|
2904
3295
|
- vendor/bundle/ruby/2.5.0/gems/listen-3.1.5/CONTRIBUTING.md
|
2905
3296
|
- vendor/bundle/ruby/2.5.0/gems/listen-3.1.5/LICENSE.txt
|
@@ -4798,11 +5189,14 @@ files:
|
|
4798
5189
|
- vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/spec/unit/tmp_zip_spec.rb
|
4799
5190
|
- vendor/bundle/ruby/2.5.0/gems/winrm-fs-1.3.1/winrm-fs.gemspec
|
4800
5191
|
- vendor/bundle/ruby/2.5.0/specifications/addressable-2.5.2.gemspec
|
5192
|
+
- vendor/bundle/ruby/2.5.0/specifications/bcrypt_pbkdf-1.0.0.gemspec
|
4801
5193
|
- vendor/bundle/ruby/2.5.0/specifications/builder-3.2.3.gemspec
|
4802
5194
|
- vendor/bundle/ruby/2.5.0/specifications/childprocess-0.6.3.gemspec
|
5195
|
+
- vendor/bundle/ruby/2.5.0/specifications/concurrent-ruby-1.1.3.gemspec
|
4803
5196
|
- vendor/bundle/ruby/2.5.0/specifications/crack-0.4.3.gemspec
|
4804
5197
|
- vendor/bundle/ruby/2.5.0/specifications/diff-lcs-1.3.gemspec
|
4805
5198
|
- vendor/bundle/ruby/2.5.0/specifications/domain_name-0.5.20180417.gemspec
|
5199
|
+
- vendor/bundle/ruby/2.5.0/specifications/ed25519-1.2.4.gemspec
|
4806
5200
|
- vendor/bundle/ruby/2.5.0/specifications/erubis-2.7.0.gemspec
|
4807
5201
|
- vendor/bundle/ruby/2.5.0/specifications/fake_ftp-0.1.1.gemspec
|
4808
5202
|
- vendor/bundle/ruby/2.5.0/specifications/ffi-1.9.25.gemspec
|
@@ -4813,6 +5207,7 @@ files:
|
|
4813
5207
|
- vendor/bundle/ruby/2.5.0/specifications/http-cookie-1.0.3.gemspec
|
4814
5208
|
- vendor/bundle/ruby/2.5.0/specifications/httpclient-2.8.3.gemspec
|
4815
5209
|
- vendor/bundle/ruby/2.5.0/specifications/i18n-0.8.0.gemspec
|
5210
|
+
- vendor/bundle/ruby/2.5.0/specifications/i18n-1.1.1.gemspec
|
4816
5211
|
- vendor/bundle/ruby/2.5.0/specifications/listen-3.1.5.gemspec
|
4817
5212
|
- vendor/bundle/ruby/2.5.0/specifications/little-plugger-1.1.4.gemspec
|
4818
5213
|
- vendor/bundle/ruby/2.5.0/specifications/log4r-1.1.10.gemspec
|