rbs-src 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 02f00b3f9d5db76fd52097440453dc502f298da9a4f9bd2b3c852786064c3cb4
4
- data.tar.gz: 6094fd8f39dc65932db88c76046d934c6b30a65620d3a27033bbf879f629d084
3
+ metadata.gz: 76ab3d8f7dcde911852a0703e6439f7d3169d96a232e75c7f59b96f82ab40f89
4
+ data.tar.gz: a0d55fd33ccdfe73ac01249761809ccbb8a5f0a0787b811bbc208c197c8219e0
5
5
  SHA512:
6
- metadata.gz: 8cb34af3adfb39bb9772da48d6730dda31922a67fec6197ec630aad849b1f6c7e8b1f90f29ddd0805d83bdbd0a2304ccc3ce69118a4a4552b90d8199f4c3f270
7
- data.tar.gz: 925593e54d59dd10de6c2275348b8bb98aa454548405a9b372fcd6b11886b530850954674718acdbac843438a63f63d90571ff4bfa8ca8c02ed0b8b4c1f363dd
6
+ metadata.gz: 790e7db58006f2d72714db5f74b50e7690184197da889bd2c0e02f3865f6ad9325a56c89d86c5904ea3971ac06254f810a2b3f0a62ec46fad085a5c8eda9ad0d
7
+ data.tar.gz: 4cfd4d0df57c79f8dd50c00299c003f603f564977714375113de22df482300b6364b43e6a0917f36a0c68411ffa735a76e0e4f4f85fffbf8aeb450bf2582ad17
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rbs-src (0.3.0)
4
+ rbs-src (0.4.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/lib/rbs/src/gem.rb CHANGED
@@ -28,7 +28,7 @@ module Rbs
28
28
  runner.execute!("git", "clone", "--filter=blob:none", "--sparse", repository_url, repository_root.to_s)
29
29
  dirs = runner.query!("git", "ls-tree", "-d", "--name-only", "-z", "HEAD", chdir: repository_root).split("\0")
30
30
  dirs.delete(repository_dir.to_s)
31
- runner.execute!("git", "sparse-checkout", "set", *dirs, repository_dir.join(name, version).to_s, chdir: repository_root)
31
+ runner.execute!("git", "sparse-checkout", "set", *dirs, repository_dir.join(name).to_s, chdir: repository_root)
32
32
  if commit
33
33
  runner.puts "git checkout..."
34
34
  runner.execute!("git", "checkout", commit, chdir: repository_root)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rbs
4
4
  module Src
5
- VERSION = "0.3.0"
5
+ VERSION = "0.4.0"
6
6
  end
7
7
  end
@@ -2,7 +2,7 @@
2
2
  sources:
3
3
  - type: git
4
4
  name: ruby/gem_rbs_collection
5
- revision: 9330d49993d18362cce9190b9596f03d1f4915f8
5
+ revision: '04470595f7a634757e160f61aafeb50536322bba'
6
6
  remote: https://github.com/ruby/gem_rbs_collection.git
7
7
  repo_dir: gems
8
8
  path: ".gem_rbs_collection"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbs-src
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Soutaro Matsumoto