phobos 2.1.4 → 2.1.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 02e1b97b3d44dffefffea99da0c15393997043598697d88fe3f7c7ab83549193
4
- data.tar.gz: 4e3ec45a1db997825ace585a1535ac5c1504105afabe0470c0c676f8f301c66a
3
+ metadata.gz: 52575f4091a2ea39a351e232abda50ec39975ed8a5bcf1d853dd38bf03130dd1
4
+ data.tar.gz: b625af7a1a889aa2acd75f23a575fa815420adec5df61e4bacb101c8a836acc1
5
5
  SHA512:
6
- metadata.gz: b249c05f44dfe0dcb0f81b8177dd27a129e4364e0dbcbf8492295d9823473a7de66ee913c088945346a4e1943b3f2226c8106083cf5502d90341b8bb8fbac0eb
7
- data.tar.gz: f6725f584a75f099bb2b4624338e424f7ba44859ace5c660bfc20d8f5681d663a1cd051381d18f832659f87bd1406d5c8aea3098112876a1f119649b56645be6
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,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6
6
  ``
7
7
  ## UNRELEASED
8
8
 
9
+ ## [2.1.6] - 2023-08-31
10
+
11
+ - Generate Sorbet RBI files.
12
+
9
13
  ## [2.1.4] - 2022-06-15
10
14
 
11
15
  - Re-raise consuming errors so that threads don't die forever and are retried
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')