Sha256: 7f5b4e66012b26bdadd2ad0b16e3eadf0f209e35479e22e57ce32312f02cc858
Contents?: true
Size: 1.67 KB
Versions: 1
Compression:
Stored size: 1.67 KB
Contents
%w(exception_notification h2ocube_rails_cache).each { |gem| require gem } %w(factory_girl_rails rspec-rails pry-rails).each { |gem| require gem } if Rails.env.development? || Rails.env.test? %w(annotate better_errors binding_of_caller meta_request pry-remote).each { |gem| require gem } if Rails.env.development? %w(capybara database_cleaner timecop).each { |gem| require gem } if Rails.env.test? module H2ocubeRailsDevelopment class Railtie < Rails::Railtie railtie_name :h2ocube_rails_development rake_tasks do require 'rails_stats' desc 'annotate all your models, tests, fixtures, factories and routes' task :annotate do system 'bundle exec annotate -i' end desc 'remove all annotated comments' task 'annotate:remove' do system 'bundle exec annotate -d;bundle exec annotate -r -d' end desc 'run rubocop' task :rubocop do system 'bundle exec rubocop -R' end desc 'run spec and rubocop' task test: %i(spec rubocop) desc 'Sort config/locales/*.yml by key' task :sort do def deeply_sort_hash(object) return object unless object.is_a?(Hash) hash = Hash.new object.each { |k, v| hash[k] = deeply_sort_hash(v) } sorted = hash.sort { |a, b| a[0].to_s <=> b[0].to_s } hash.class[sorted] end Dir[Rails.root.join('config/locales/*.yml')].each do |f| STDOUT.print(f) hash = deeply_sort_hash(YAML.load(File.read(f))) File.open(f, 'w') { |file| file.write hash.to_yaml } STDOUT.print("...done!\n") end end end end end if Rails.env.development? || Rails.env.test?
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
h2ocube_rails_development-0.1.11 | lib/h2ocube_rails_development.rb |