Sha256: c98546f81a6bf4e46151c6c50cde26e02ae830e802058b7bacc7025f045eb8a6
Contents?: true
Size: 410 Bytes
Versions: 19
Compression:
Stored size: 410 Bytes
Contents
require 'rails' module Lingohub class Railtie < ::Rails::Railtie config.after_initialize do Lingohub.environments ||= [:development] Lingohub.protocol ||= "https" Lingohub.host ||= "lingohub.com" Lingohub.username ||= ":username" Lingohub.project ||= ":project" Dir[File.join(File.dirname(__FILE__), "../../patches/**/*.rb")].each { |f| require f } end end end
Version data entries
19 entries across 19 versions & 1 rubygems