Module: Feste

Defined in:
lib/feste.rb,
lib/feste/user.rb,
lib/feste/engine.rb,
lib/feste/mailer.rb,
lib/feste/version.rb,
lib/feste/template_helper.rb,
app/models/feste/subscription.rb,
lib/feste/authentication/custom.rb,
lib/feste/authentication/devise.rb,
lib/feste/authentication/clearance.rb,
lib/generators/feste/install_generator.rb,
lib/feste/authentication/authentication.rb,
app/controllers/concerns/feste/authenticatable.rb,
app/controllers/feste/subscriptions_controller.rb

Defined Under Namespace

Modules: Authenticatable, Authentication, Config, Generators, Mailer, TemplateHelper, User Classes: Engine, NoConfigurationError, Subscription, SubscriptionsController

Constant Summary collapse

VERSION =
"0.4.1"

Class Method Summary collapse

Class Method Details

.configureObject



28
29
30
31
32
33
34
# File 'lib/feste.rb', line 28

def self.configure
  begin
    yield(Config)
  rescue NoConfigurationError => e
    puts "FESTE CONFIGURATION WARNING: #{e}"
  end
end

.table_name_prefixObject



16
17
18
# File 'lib/feste.rb', line 16

def self.table_name_prefix
  "feste_"
end