curl -fsSL https://gist.github.com/raw/6420807/benchmark.rb | BUNDLE_GROUPS=default,development,assets ruby
validates_inclusion_of :time_zone, in: ActiveSupport::TimeZone.zones_map(&:name)
:TODO Make ru_zones
form.time_zone_select :time_zone, ActiveSupport::TimeZone.us_zones
around_filter :person_time_zone, if: :current_person
def person_time_zone(&block)
Time.use_zone(current_person.time_zone, &block)
end
gem 'timecop'
gem 'zonebie'
Date.current
isntead of Date.today
Time.zone.now
instead of Time.now
Uses ActionView::Helpers::AtomFeedHelper
index.atom.builder
content_for :head, auto_discovery_link_tag(:atom, some_url(form: 'atom'))
We :can password protect rss feed
gem 'exception_notification'
=> http://smartinez87.github.io/exception_notification/
ignore default exceptions
App::Application.config.middleware.use ExceptionNotification::Rack,
:ignore_exceptions => ExceptionNotifier.ignored_exceptions,
:ignore_crawlers => %w{Googlebot bingbot},
# :ignore_if => ->(env, exception) { exception.message =~ /^Couldn't find Page with ID=/ },
:email => {
:email_prefix => "[Whatever] ",
:sender_address => %{"notifier" <[email protected]>},
:exception_recipients => %w{[email protected]}
}
Libraries that don't expecting modification is going to Jsfile under vendor group, if you want change library you put it in lib group. Bower-rails api
rake bower:dsl:install #install js components
rake bower:dsl:update #update js components
rake bower:dsl:update #update js components
rake bower:dsl:update:prune #update components and uninstall extraneous packages
github.com/philipwalton/html-inspector
HTMLInspector.inspect()
gem 'sitemap_generator'
SitemapGenerator::Sitemap.search_engines.merge!(:yandex => 'http://webmaster.yandex.ru/wmconsole/sitemap_list.xml?host=%s')
If you need enums check this out https://gist.github.com/onemanstartup/6334632Shortly
gem 'enumerate_it'
- if legacy db with enum values in strings and integers
gem 'classy_enum'
- if you want logic inside enums. It is difficult them which i don't fully understand and tried.
gem 'enumerize'
- every other cases