Sha256: 5c4242fc3499d22a7c2e12fb90bff2382a3eda8d862c662bdec97f089bc0a03f

Contents?: true

Size: 1.2 KB

Versions: 2

Compression:

Stored size: 1.2 KB

Contents

require_relative 'boot'

require 'rails/all'

# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)

Dotenv::Railtie.load

# Hardcode Private Key

ENV["CHATOPS_AUTH_PUBLIC_KEY"] = <<-PUBLIC_KEY
-----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyFN1McMHKc1mjklsM1rI
b7rs77yZ+Pl4NlHawguWA8Z53uGFhIfGdqpkZYv1NpfmmWaqwYmzIBVvqxB5TVOa
JKM26lJ2oOdcfLeLX7HcxUwKXOBPFCJo7OC0h3GM0LbUVTdWk+piNMWxl7Q66aj+
qh3RkEhmBLeVEYXQG/dG2ZDY8elxTZqDdQHwdq0pHU2v+sVTb2E4ofPTuVLxdtgC
4hMcWYjqT7LEJule2vFIa+EUlyEfL0eaDqQK0/CVXuQbEBSuD1JQJAPWtkKl1+gm
EXuKm2Jmd18bDR0r6knIzow88hhyqfEzS+ubzv6EbULi4FLefJDnx3V9NI/svWC7
oQIDAQAB
-----END PUBLIC KEY-----
PUBLIC_KEY

module ChatopsControllerExample
  class Application < Rails::Application
    # Initialize configuration defaults for originally generated Rails version.
    config.load_defaults 6.0

    # Settings in config/environments/* take precedence over those specified here.
    # Application configuration can go into files in config/initializers
    # -- all .rb files in that directory are automatically loaded after loading
    # the framework and any gems in your application.
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
chatops-rpc-0.0.2 fixtures/chatops-controller-example/config/application.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/config/application.rb