Skip to content

Instantly share code, notes, and snippets.

@jasnow
Created October 28, 2019 14:16
Show Gist options
  • Save jasnow/8053687016d5f076fe3f0737317f9e0b to your computer and use it in GitHub Desktop.
Save jasnow/8053687016d5f076fe3f0737317f9e0b to your computer and use it in GitHub Desktop.
Results from running sorbet-typed's "rake" command
/Users/USER/.rvm/rubies/ruby-2.5.7/bin/ruby .ci/run.rb
testing aasm all
No errors! Great job.
testing actionmailer all
No errors! Great job.
testing actionpack all
actionpack_test.rb:148: unexpected token tLCURLY https://srb.help/2001
148 | prepend_before_action :action_name, only: :show { |controller| puts controller }
^
actionpack_test.rb:149: unexpected token tLCURLY https://srb.help/2001
149 | before_action :action_name, only: :show { |controller| puts controller }
^
actionpack_test.rb:150: unexpected token tLCURLY https://srb.help/2001
150 | append_before_action :action_name, only: :show { |controller| puts controller }
^
actionpack_test.rb:152: unexpected token tLCURLY https://srb.help/2001
152 | prepend_around_action :action_name, only: :show { |controller| puts controller }
^
actionpack_test.rb:153: unexpected token tLCURLY https://srb.help/2001
153 | around_action :action_name, only: :show { |controller| puts controller }
^
actionpack_test.rb:154: unexpected token tLCURLY https://srb.help/2001
154 | append_around_action :action_name, only: :show { |controller| puts controller }
^
actionpack_test.rb:156: unexpected token tLCURLY https://srb.help/2001
156 | prepend_after_action :action_name, only: :show { |controller| puts controller }
^
actionpack_test.rb:157: unexpected token tLCURLY https://srb.help/2001
157 | after_action :action_name, only: :show { |controller| puts controller }
^
actionpack_test.rb:158: unexpected token tLCURLY https://srb.help/2001
158 | append_after_action :action_name, only: :show { |controller| puts controller }
^
actionpack_test.rb:162: Method `prepend_before_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
162 | prepend_before_action :action_name, if: -> { true }, only: :show, except: [:edit, :delete]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
https://github.com/sorbet/sorbet/tree/f795ffe2f2159da05186950aba991c3a161eef48/rbi/core/module.rbi#L1143: Did you mean: `Module#prepend_features`?
1143 | def prepend_features(arg0); end
^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:163: Method `before_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
163 | before_action :action_name, if: -> { true }, only: :show, except: [:edit, :delete]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:164: Method `append_before_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
164 | append_before_action :action_name, if: -> { true }, only: :show, except: [:edit, :delete]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
https://github.com/sorbet/sorbet/tree/f795ffe2f2159da05186950aba991c3a161eef48/rbi/core/module.rbi#L223: Did you mean: `Module#append_features`?
223 | def append_features(arg0); end
^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:165: Method `skip_before_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
165 | skip_before_action :action_name, if: -> { true }, only: :show, except: [:edit, :delete]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:167: Method `prepend_around_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
167 | prepend_around_action :action_name, if: -> { true }, only: :show, except: [:edit, :delete]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:168: Method `around_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
168 | around_action :action_name, if: -> { true }, only: :show, except: [:edit, :delete]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:169: Method `append_around_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
169 | append_around_action :action_name, if: -> { true }, only: :show, except: [:edit, :delete]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:170: Method `skip_around_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
170 | skip_around_action :action_name, if: -> { true }, only: :show, except: [:edit, :delete]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:172: Method `prepend_after_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
172 | prepend_after_action :action_name, if: -> { true }, only: :show, except: [:edit, :delete]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
https://github.com/sorbet/sorbet/tree/f795ffe2f2159da05186950aba991c3a161eef48/rbi/core/module.rbi#L1143: Did you mean: `Module#prepend_features`?
1143 | def prepend_features(arg0); end
^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:173: Method `after_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
173 | after_action :action_name, if: -> { true }, only: :show, except: [:edit, :delete]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:174: Method `append_after_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
174 | append_after_action :action_name, if: -> { true }, only: :show, except: [:edit, :delete]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
https://github.com/sorbet/sorbet/tree/f795ffe2f2159da05186950aba991c3a161eef48/rbi/core/module.rbi#L223: Did you mean: `Module#append_features`?
223 | def append_features(arg0); end
^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:175: Method `skip_after_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
175 | skip_after_action :action_name, if: -> { true }, only: :show, except: [:edit, :delete]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:179: Method `prepend_before_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
179 | prepend_before_action :action_name, if: :method_name?, only: [:show, :delete], except: :edit
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
https://github.com/sorbet/sorbet/tree/f795ffe2f2159da05186950aba991c3a161eef48/rbi/core/module.rbi#L1143: Did you mean: `Module#prepend_features`?
1143 | def prepend_features(arg0); end
^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:180: Method `before_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
180 | before_action :action_name, if: :method_name?, only: [:show, :delete], except: :edit
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:181: Method `append_before_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
181 | append_before_action :action_name, if: :method_name?, only: [:show, :delete], except: :edit
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
https://github.com/sorbet/sorbet/tree/f795ffe2f2159da05186950aba991c3a161eef48/rbi/core/module.rbi#L223: Did you mean: `Module#append_features`?
223 | def append_features(arg0); end
^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:182: Method `skip_before_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
182 | skip_before_action :action_name, if: :method_name?, only: [:show, :delete], except: :edit
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:184: Method `prepend_around_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
184 | prepend_around_action :action_name, if: :method_name?, only: [:show, :delete], except: :edit
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:185: Method `around_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
185 | around_action :action_name, if: :method_name?, only: [:show, :delete], except: :edit
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:186: Method `append_around_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
186 | append_around_action :action_name, if: :method_name?, only: [:show, :delete], except: :edit
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:187: Method `skip_around_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
187 | skip_around_action :action_name, if: :method_name?, only: [:show, :delete], except: :edit
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:189: Method `prepend_after_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
189 | prepend_after_action :action_name, if: :method_name?, only: [:show, :delete], except: :edit
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
https://github.com/sorbet/sorbet/tree/f795ffe2f2159da05186950aba991c3a161eef48/rbi/core/module.rbi#L1143: Did you mean: `Module#prepend_features`?
1143 | def prepend_features(arg0); end
^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:190: Method `after_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
190 | after_action :action_name, if: :method_name?, only: [:show, :delete], except: :edit
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:191: Method `append_after_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
191 | append_after_action :action_name, if: :method_name?, only: [:show, :delete], except: :edit
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
https://github.com/sorbet/sorbet/tree/f795ffe2f2159da05186950aba991c3a161eef48/rbi/core/module.rbi#L223: Did you mean: `Module#append_features`?
223 | def append_features(arg0); end
^^^^^^^^^^^^^^^^^^^^^^^^^
actionpack_test.rb:192: Method `skip_after_action` does not exist on `T.class_of(ActionPackCallbacksTest)` https://srb.help/7003
192 | skip_after_action :action_name, if: :method_name?, only: [:show, :delete], except: :edit
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Errors: 33
testing actionview all
No errors! Great job.
testing activemodel all
No errors! Great job.
testing activerecord >=5.2
No errors! Great job.
testing activerecord all
No errors! Great job.
testing activerecord ~>5.2.0
No errors! Great job.
testing activerecord ~>6.0.0
No errors! Great job.
testing activerecord-safer_migrations <=2
No errors! Great job.
testing activestorage >=6.0.0
No errors! Great job.
testing activestorage all
No errors! Great job.
testing activesupport >=6.0.0.rc1
No errors! Great job.
testing activesupport all
No errors! Great job.
testing bencode ~>0.8
No errors! Great job.
testing bundler all
No errors! Great job.
testing configs all
No errors! Great job.
testing discordrb ~>3.3
No errors! Great job.
testing grape all
No errors! Great job.
testing httparty all
No errors! Great job.
testing lhm all
No errors! Great job.
testing minitest all
No errors! Great job.
testing paper_trail all
No errors! Great job.
testing railties all
No errors! Great job.
testing rainbow all
No errors! Great job.
testing ruby all
No errors! Great job.
testing sidekiq all
No errors! Great job.
testing state_machines all
No errors! Great job.
testing state_machines-activemodel all
No errors! Great job.
testing stripe all
No errors! Great job.
rake aborted!
Command failed with status (1): [/Users/USER/.rvm/rubies/ruby-2.5.7/b...]
/Users/USER/Projects/sorbet-typed/Rakefile:4:in `block in <top (required)>'
/Users/USER/.rvm/gems/ruby-2.5.7@ruby2.5-rails5.0/gems/rake-13.0.0/exe/rake:27:in `<top (required)>'
/Users/USER/.rvm/gems/ruby-2.5.7@ruby2.5-rails5.0/bin/ruby_executable_hooks:24:in `eval'
/Users/USER/.rvm/gems/ruby-2.5.7@ruby2.5-rails5.0/bin/ruby_executable_hooks:24:in `<main>'
Tasks: TOP => default => test
(See full trace by running task with --trace)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment