12 Matching Annotations
- Oct 2023
-
github.com github.com
Tags
Annotators
URL
-
- Aug 2023
-
stackoverflow.com stackoverflow.com
-
Because Active Storage gem does not specify AWS SDK as its dependency, it’s quite possible you updated Active Storage while leaving AWS SDK behind (happened to me).
-
-
stackoverflow.com stackoverflow.com
-
I make a file named: app/models/active_storage/attachment.rb. Because it's in your project it takes loading precedence over the Gem version. Then inside we load the Gem version, and then monkeypatch it using class_eval: active_storage_gem_path = Gem::Specification.find_by_name('activestorage').gem_dir require "#{active_storage_gem_path}/app/models/active_storage/attachment" ActiveStorage::Attachment.class_eval do acts_as_taggable on: :tags end The slightly nasty part is locating the original file, since we can't find it normally because our new file takes precedence. This is not necessary in production, so you could put a if Rails.env.production? around it if you like I think.
-
- Jul 2021
-
-
largest star sapphire
... an estimated value of $100 million
-
- Mar 2021
-
-
Doesn't even seem to require Git repo to be published. Assume it just creates its own git repo based on actual contents of gems published on https://rubygems.org/
Example: Couldn't even find git repo for this: https://rubygems.org/gems/xkeys/versions/2.2.0 but it still has diff: https://my.diffend.io/gems/xkeys/prev/2.2.0
-
- Nov 2020
- Oct 2020
-
-
exe is the new bin
Tags
Annotators
URL
-
- Jul 2020
-
github.com github.com
-
BTW, now bigdecimal is a default gem, so the version of bigdecimal is maintained independently. You can update default gems independently of Ruby version.
Tags
Annotators
URL
-
- Mar 2020
-
github.com github.com
-
github.com github.com
-
Mobility is cryptographically signed. To be sure the gem you install hasn't been tampered with, add my public key as a trusted certificate and install: gem cert --add <(curl -Ls https://raw.github.com/shioyama/mobility/master/certs/shioyama.pem) gem install mobility -P MediumSecurity The MediumSecurity trust profile will verify signed gems, but allow the installation of unsigned dependencies.
-
- Feb 2020
-
github.com github.com
Tags
Annotators
URL
-
- Dec 2019
-
help.github.com help.github.com
-
GitHub Packages uses the native package tooling commands you're already familiar with to publish and install package versions.
Looks like GitHub Packages acts as a wrapper to these clients, acting on your behalf so you don't have to use the CLI yourself.
-