phobos 2.1.5 → 2.1.6

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: 24a11008734215b1d581b98e05eac705dd079e9fc6ccbd860c172c9d353ae967
4
- data.tar.gz: ed890beddcc432d630a1f8484bd40383ca97fc0120359219012f3d30e9ee541b
3
+ metadata.gz: 52575f4091a2ea39a351e232abda50ec39975ed8a5bcf1d853dd38bf03130dd1
4
+ data.tar.gz: b625af7a1a889aa2acd75f23a575fa815420adec5df61e4bacb101c8a836acc1
5
5
  SHA512:
6
- metadata.gz: 87a05771626c4c1aeb849cc7857769beca6648dac5e2f87e11fdb62ba798e036d6c366f848c274d7a17ff209f4754380266f21a6fe68d7c7cdcd70d369e6dea3
7
- data.tar.gz: ec3e274766f29c73ba31037fb6cbce779b9d2bb4d89f7da127973046682fa3426450b006aba94c9f67ab559a062b2e4d1f28d25667dc9d9eb8de279d69eb84a1
6
+ metadata.gz: f081e086ce3268b5395b3f951d8c40625f360adeefd70a305abec5acc8a38c0df2c2fe281a7e4f4af0429ed72e840e9ad6a4078bf1a6ab4f49ca0650ce415adf
7
+ data.tar.gz: e7daec2053e8270cda586592e35cab532e7e3d50d61fa2baf3e8f0f2bdf0056872b6c1f046786a7f6b051d5aa753718d59aa8618c3d689dd2351afb2065afcd7
data/.gitattributes ADDED
@@ -0,0 +1,4 @@
1
+ sorbet/rbi/annotations linguist-generated=true
2
+ sorbet/rbi/gems linguist-generated=true
3
+ sorbet/rbi/dsl linguist-generated=true
4
+ sorbet/rbi/todo.rbi linguist-generated=true
data/CHANGELOG.md CHANGED
@@ -6,9 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6
6
  ``
7
7
  ## UNRELEASED
8
8
 
9
- ## [2.1.5] - 2022-09-08
9
+ ## [2.1.6] - 2023-08-31
10
10
 
11
- - Added RBS signatures.
11
+ - Generate Sorbet RBI files.
12
12
 
13
13
  ## [2.1.4] - 2022-06-15
14
14
 
data/Gemfile CHANGED
@@ -4,3 +4,7 @@ source 'https://rubygems.org'
4
4
 
5
5
  # Specify your gem's dependencies in phobos.gemspec
6
6
  gemspec
7
+
8
+ # TODO: remove this once it gets merged
9
+
10
+ gem 'sord', git: 'https://github.com/dorner/sord', branch: 'resolve-namespaces'
data/bin/tapioca ADDED
@@ -0,0 +1,29 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ #
5
+ # This file was generated by Bundler.
6
+ #
7
+ # The application 'tapioca' is installed as part of a gem, and
8
+ # this file is here to facilitate running it.
9
+ #
10
+
11
+ require 'pathname'
12
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
13
+ Pathname.new(__FILE__).realpath)
14
+
15
+ bundle_binstub = File.expand_path('bundle', __dir__)
16
+
17
+ if File.file?(bundle_binstub)
18
+ if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
19
+ load(bundle_binstub)
20
+ else
21
+ abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
22
+ Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
23
+ end
24
+ end
25
+
26
+ require 'rubygems'
27
+ require 'bundler/setup'
28
+
29
+ load Gem.bin_path('tapioca', 'tapioca')