Sha256: 076e03f8ec073c81e65d172c2fda79059c0221b239896f2bc2dbe74920a30acf
Contents?: true
Size: 1.4 KB
Versions: 1
Compression:
Stored size: 1.4 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', "require 'hoptoad_notifier/capistrano'" 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 end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hoptoad_notifier-2.1.0 | generators/hoptoad/hoptoad_generator.rb |