lib/faalis/engine.rb in faalis-1.0.0 vs lib/faalis/engine.rb in faalis-2.0.0.rc2

- old
+ new

@@ -14,21 +14,13 @@ # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # ----------------------------------------------------------------------------- -require 'fast_gettext' -require 'modernizr-rails' -require 'model_discovery' -require 'angularjs-rails' -require 'lodash-rails' -require 'pundit' require_relative './middlewares/locale' -# required gettext related gem only in developement -require 'gettext_i18n_rails' if Rails.env.development? module Faalis # `Engine` class of **Faalis**. class Engine < ::Rails::Engine @@ -40,45 +32,29 @@ engine_name 'faalis' # Map `api` to `API` in Rails autoload ActiveSupport::Inflector.inflections(:en) do |inflect| inflect.acronym 'API' + inflect.acronym 'DSL' end config.generators do |g| - g.test_framework :rspec, :fixture => false - g.fixture_replacement :factory_girl, :dir => 'spec/factories' - g.integration_tool :rspec - g.assets false - g.helper false + g.test_framework :rspec, fixture: false + g.fixture_replacement :factory_girl, dir: 'spec/factories' + g.integration_tool :rspec + g.assets false + g.helper false end # Configure logger mattr_accessor :logger @@logger = Logger.new(STDOUT) - # Permissions configuration - mattr_accessor :models_with_permission - - # TODO: create a basic setup for this option - @@models_with_permission = ['Faalis::User', - 'Faalis::Group', - ] - - def self.models_with_permission=(value) - @@models_with_permission.concat(value).uniq! - end - # Dashboard url prefix mattr_accessor :dashboard_namespace @@dashboard_namespace = :dashboard - # TODO: Use application level locales default - # locales - mattr_accessor :locales - @@locales = ['en', 'fa'] - # ==> ORM configuration # Load and configure the ORM. Supports :active_record (default) and # :mongoid (bson_ext recommended) by default. Other ORMs may be # available as additional gems. # ORM name to use. either 'active_record' or 'mongoid' @@ -92,28 +68,14 @@ def self.setup yield self end - # I18n Configuration - I18n.enforce_available_locales = true - I18n.locale = :en - # Fast Gettext Configuration - Object.send(:include, FastGettext::Translation) - # TODO: Check for possible error in this configurations - @@locale_path = "#{root}/config/locales" - FastGettext.add_text_domain 'faalis', path: @@locale_path, type: :po - # All languages you want to allow - FastGettext.default_available_locales = @@locales - - FastGettext.default_text_domain = 'faalis' - FastGettext.locale = :en - # Site Title mattr_accessor :site_title - @@site_title = _('Faalis') + @@site_title = 'Faalis' mattr_accessor :slug # Override devise layout @@ -124,28 +86,12 @@ Devise::UnlocksController.layout 'faalis/application' Devise::PasswordsController.layout 'faalis/application' end #Devise.omniauth_path_prefix = ["/en", "/fa"] - # TODO: Write a complete doc about dashboard_modules - # Dashboard configurations - mattr_accessor :dashboard_modules - - # This class variable should be a hash - # that each key is a resource name and its value - # is some of these: - # resource: provide resource name explicitly - # title: resource title (will show in dashboard) - # icon: icon class checkout font-awesome - @@dashboard_modules = { auth: { title: _('Authentication') } } - - def self.dashboard_modules=(value) - @@dashboard_modules.merge!(value) - end - # Dashboard default javascript manifest mattr_accessor :dashboard_js_manifest - @@dashboard_js_manifest = 'controlpanel/application.js' + @@dashboard_js_manifest = 'dashboard/application.js' # Devise options # Include default devise modules. Others available are: # :token_authenticatable, :confirmable, # :lockable, :timeoutable and :omniauthable