willpiers / digiquatics

Home Page:digiquatics.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DigiQuatics

Stories in Ready Code Climate Dependency Status Codeship Status for affektive/digiquatics

Throughput Graph

Breakman (Security Auditing)

breakman

Line Count

find . -name '*.rb' | xargs wc -l

Database Setup

Feature Toggles

create feature toggle file

subl ~/feature_toggles.yml

add feature toggles, leave out or set to false for false, comma separarted string of account_id's to enable for accounts

maintenance: true
private_lessons: true
chemicals: '1'
attendance: false
shift_reports: false
scheduling: '1,2'

to use feature toggle

<% FeatureToggle.scheduling? current_user %>
  <!-- scheduling stuff -->
<% end %>

remove this change