Sha256: 93c65aeac547ee97bea22e6fcf9783bf02bda3f4e258128a3d0b8706a82cb6c7

Contents?: true

Size: 1.66 KB

Versions: 2

Compression:

Stored size: 1.66 KB

Contents

module Boring
  module ActiveStorage
    module Azure
      class InstallGenerator < Rails::Generators::Base
        desc "Adds ActiveStorage Microsoft Azure the application"

        class_option :skip_active_storage, type: :boolean, aliases: "-s",
                                           desc: "Skips running ActiveStorage installer"

        def add_active_storage
          unless options[:skip_active_storage]
            say "Adding ActiveStorage", :green
            run "bin/rails active_storage:install"
          end
        end

        def add_azure_to_the_application
          say "Adding mircosoft azure gem", :green
          Bundler.with_unbundled_env do
            azure_gem_content = <<~RUBY
              \n
              # for Azure Service
              gem "azure-storage-blob", require: false
            RUBY
            append_to_file "Gemfile", azure_gem_content
            run "bundle install"
          end
        end

        def add_configuration_to_production
          gsub_file "config/environments/production.rb",
                    "config.active_storage.service = :local",
                    "config.active_storage.service = :microsoft"
        end

        def add_azure_storage_configuration
          microsoft_storage_config_content = <<~RUBY
            microsoft:
              service: AzureStorage
              storage_account_name: your_account_name
              storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
              container: your_container_name
          RUBY

          append_to_file "config/storage.yml", microsoft_storage_config_content
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
boring_generators-0.15.0 lib/generators/boring/active_storage/azure/install/install_generator.rb
boring_generators-0.14.0 lib/generators/boring/active_storage/azure/install/install_generator.rb