Sha256: 3e1e56928a8809a260a9baa19eca1887210c04e1a2d75f865aabf9e6326e94f8

Contents?: true

Size: 827 Bytes

Versions: 7

Compression:

Stored size: 827 Bytes

Contents

namespace :textcaptcha do

  desc "Creates a template config file in config/textcaptcha.yml"
  task :config do
    src  = File.join(File.dirname(__FILE__), '../..', 'config', 'textcaptcha.yml')
    dest = File.join(Rails.root, 'config', 'textcaptcha.yml')
    if File.exist?(dest)
      puts "\nOoops, a textcaptcha config file at #{dest} already exists ... aborting.\n\n"
    else
      config = ''
      f = File.open(src, 'r')
      f.each_line { |line| config += line }
      config.gsub!(/  api_key:(.*)# for gem test purposes only$/, "  api_key: PASTE_YOUR_TEXTCAPCHA_API_KEY_HERE")

      f = File.new(dest, 'w')
      f.write(config)
      f.close
      puts "\ntextcaptcha.yml generated at #{dest}\nNOTE: edit this file and add your textcaptcha api key, grab one from http://textcaptcha.com/api\n\n"
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
acts_as_textcaptcha-4.3.0 lib/tasks/textcaptcha.rake
acts_as_textcaptcha-4.2.0 lib/tasks/textcaptcha.rake
acts_as_textcaptcha-4.1.3 lib/tasks/textcaptcha.rake
acts_as_textcaptcha-4.1.2 lib/tasks/textcaptcha.rake
acts_as_textcaptcha-4.1.1 lib/tasks/textcaptcha.rake
acts_as_textcaptcha-4.1.0 lib/tasks/textcaptcha.rake
acts_as_textcaptcha-4.0.0 lib/tasks/textcaptcha.rake