web47core

Core components used commonly among all web apps for both App47 and RedMonocle

We don't need no sticking badges

  • Codacy Badge
  • Codacy Badge

Requirements

  • Ruby 2.4.1

Working with Bundler and RVM

This project manages Ruby versions via RVM and manages dependencies via Bundler.

You must first install RVM. Then install Ruby 2.4.1 (version 2.4.1-p111) via RVM.

rvm install 2.4.1

You'll now notice that this project (as well as other App47 ones) contains a .rvmc file, which is executed upon opening the project's root directory in a terminal (and IDE's like RubyMine). The .rvmc file simply states rvm ruby-2.4.1 which tells RVM to ensure the Ruby version to use for this project is 2.4.1.

Please note, your Ruby 2.4.1 version might need bundler installed:

gem install bundler -v 1.17.3

To set up this project's dependencies, which are defined in the file, Gemfile, you should first run

bundle install --path vendor

The --path vendor simply puts all gem files in a vendor directory.

Development

Your RubyMine environment should be setup now, however to verify all is well, please run the test suite

bundle exec rake test

Deployment

The web47core project is a gem that will be deployed via Ruby Gems. When an update is ready, the following steps should be followed

  1. Build the gem gem build web47core.gemspec
  2. Push the new gem to Ruby Gems gem push web47core-version.gem
  3. There may be a delay when using the gem file

Usage

Importing the gem

To use the app47core gem in a project, first add the gem to your Gemfile in one of two ways

Using the gem from Ruby Gems

gem 'web47core'

If you need the gem immediately or need to pull from development branch, you can use the git repo

gem 'web47core', git: '[email protected]:App47/web47core.git', branch: :master

or from the develop branch

gem 'web47core', git: '[email protected]:App47/web47core.git', branch: :develop

Please do not ship to production code using the git repo, as the production servers will not have keys to pull from the web47core repo

Remove the following files

  1. StandardModel - Includes the common set of includes, Mongoid, Auditable, AutoClearCache, etc.
  2. CdnUrl - Provide CDN URLs of your classes URLs when cdn_url is configured in system configuration
  3. AutoClearCache - Clears your objects cache out of Rails.cache using the object's id
  4. Formable - Consolidated into StandardModel, was used to provide common form operations for mongoid documents
  5. EmailNotification
  6. EmailTemplate
  7. Notification
  8. NotificationTemplate
  9. SlackNotification
  10. SmsNotification
  11. Template
  12. App47Logger and App47LoggerTest
  13. Emailable or EmailAble and EamailbleTest, be sure to change Emailable to EmailAble
  14. RedisConfiguration and RedisConfgurationTest
  15. Searchable and SearchableTest, be sure to change Searchable to SearchAble
  16. TimezoneAble and TimezoneAbleTest
  17. CronJobServer and CronJobServerTest
  18. JobCronTab and JobCronTabTest
  19. CronTab

Models

Concerns
  1. StandardModel - Includes the common set of includes, Mongoid, etc.
  2. CoreSystemConfiguration - Base system configuration to be included in the app's SystemConfiguration Object
  3. CoreAccount - Base account object that is related to notifications and the ilk. ##### System Configuration Define a SystemConfiguration class in your project and import the core concern.
class SystemConfiguration
  include StandardModel
  include CoreSystemConfiguration

  # Include your additional system configuration fields and methods
  field :google_sso_client_id, type: String
end
Account

Define a Account class in your project and import the core concern.

class 
  include StandardModel
  include CoreAccount

  # Include your additional system configuration fields and methods
  has_many :users
end
Cron

Cron infrastructure for running jobs every minute, hour, day, week, month or some combination

  1. Remove config/initializers/job_cron_tabs.rb that was previous used to ensure cron tabs, they will be loaded automatically now
  2. Remove the Delayed::Backend::Mongoid::Job class definition, not the settings from config/initializers/delayed_job.rb, these are included in this gem now.
  3. Cron jobs should extend from Cron::Job now and specify cron_tab_entry within the class. ruby module Cron class MyJob < Job cron_tab_entry :daily def perform # do your work end end end Allowed values of cron_tab_entry are
  4. :always - run every minute
  5. :hourly - run every hour
  6. :daily - run every day
  7. :weekly - run every week on Sunday
  8. :monthly - run every month on the first day of the month
  9. '*/5 1,3 * 2 *' - Run according to unix crontab entry format. This would run every tuesday on the 1st and 3rd hour, for any minute divisable by 5, so 0, 5, 10, 15, etc..