Sha256: 019385f7ce209dcf2a69396a4bb7744427229fc1550c85dc300997e98311b410

Contents?: true

Size: 1.58 KB

Versions: 7

Compression:

Stored size: 1.58 KB

Contents

module Boring
  module ActiveStorage
    module Google
      class InstallGenerator < Rails::Generators::Base
        desc "Adds ActiveStorage google cloud service 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_google_cloud_storage_to_the_application
          say "Adding google cloud storage gem", :green
          google_cloud_storage_gem_content = <<~RUBY
            \n
            # for Google Cloud Storage Service
            gem "google-cloud-storage", require: false
          RUBY
          append_to_file "Gemfile", google_cloud_storage_gem_content
          run "bundle install"
        end

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

        def add_google_storage_configuration
          google_storage_config_content = <<~RUBY
            google:
              service: GCS
              project: your_project
              credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
              bucket: your_own_bucket
          RUBY

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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
boring_generators-0.9.0 lib/generators/boring/active_storage/google/install/install_generator.rb
boring_generators-0.8.0 lib/generators/boring/active_storage/google/install/install_generator.rb
boring_generators-0.7.0 lib/generators/boring/active_storage/google/install/install_generator.rb
boring_generators-0.6.0 lib/generators/boring/active_storage/google/install/install_generator.rb
boring_generators-0.5.0 lib/generators/boring/active_storage/google/install/install_generator.rb
boring_generators-0.4.0 lib/generators/boring/active_storage/google/install/install_generator.rb
boring_generators-0.3.0 lib/generators/boring/active_storage/google/install/install_generator.rb