Sha256: a18b2c718ad0c8759ca6f4071c94370574480e5409374a221fdf7c4e9aabbed2
Contents?: true
Size: 1.45 KB
Versions: 2
Compression:
Stored size: 1.45 KB
Contents
require File.expand_path(File.dirname(__FILE__) + "/lib/insert_commands.rb") require File.expand_path(File.dirname(__FILE__) + "/lib/rake_commands.rb") class HoptoadGenerator < Rails::Generator::Base def add_options!(opt) opt.on('-k', '--api-key=key', String, "Your Hoptoad API key") {|v| options[:api_key] = v} end def manifest if !api_key_configured? && !options[:api_key] puts "Must pass --api-key or create config/initializers/hoptoad.rb" exit end record do |m| m.directory 'lib/tasks' m.file 'hoptoad_notifier_tasks.rake', 'lib/tasks/hoptoad_notifier_tasks.rake' if File.exists?('config/deploy.rb') m.append_to 'config/deploy.rb', capistrano_hook end if options[:api_key] if use_initializer? m.template 'initializer.rb', 'config/initializers/hoptoad.rb', :assigns => {:api_key => options[:api_key]} else m.template 'initializer.rb', 'config/hoptoad.rb', :assigns => {:api_key => options[:api_key]} m.append_to 'config/environment.rb', "require 'config/hoptoad'" end end m.rake "hoptoad:test", :generate_only => true end end def use_initializer? Rails::VERSION::MAJOR > 1 end def api_key_configured? File.exists?('config/initializers/hoptoad.rb') || system("grep HoptoadNotifier config/environment.rb") end def capistrano_hook IO.read(source_path('capistrano_hook.rb')) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
hoptoad_notifier-2.1.2 | generators/hoptoad/hoptoad_generator.rb |
hoptoad_notifier-2.1.1 | generators/hoptoad/hoptoad_generator.rb |