Sha256: 3e0a0189bea0ded2cf488b6ae6768e1f7d0da6b54b249c1b9b92ba4dfc7e7f38

Contents?: true

Size: 1.49 KB

Versions: 12

Compression:

Stored size: 1.49 KB

Contents

development: &common_settings
  api_key: PASTE_YOUR_TEXTCAPCHA_API_KEY_HERE  # grab one from http://textcaptcha.com/api
  bcrypt_salt: RAKE_GENERATED_SALT_PLACEHOLDER   # must be a valid bcrypt salt, we've generated this one for you randomly
                                               # generate another with; require 'bcrypt'; BCrypt::Engine.generate_salt
  bcrypt_cost: 10 # optional (default is 10) must be > 4 (a larger number means slower, but better encryption)
                  # see http://bcrypt-ruby.rubyforge.org for more information on bcrypt
  questions:
      - question: 'Is ice hot or cold?'
        answers: 'cold'
      - question: 'what color is an orange?'
        answers: 'orange'
      - question: 'what is two plus 3?'
        answers: '5,five'
      - question: 'what is 5 times two?'
        answers: '10,ten'
      - question: 'How many colors in the list, green, brown, foot and blue?'
        answers: '3,three'
      - question: 'what is Georges name?'
        answers: 'george'
      - question: '11 minus 1?'
        answers: '10,ten'
      - question: 'is boiling water hot or cold?'
        answers: 'hot'
      - question: 'what color is my blue shirt today?'
        answers: 'blue'
      - question: 'what is 16 plus 4?'
        answers: '20,twenty'

test:
  <<: *common_settings
  api_key: 6eh1co0j12mi2ogcoggkkok4o          # for gem test purposes only
  bcrypt_salt: $2a$10$qhSefD6gKtmq6M0AzXk4CO  # for gem test purposes only
  bcrypt_cost: 1

production:
  <<: *common_settings

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
acts_as_textcaptcha-3.0.11 config/textcaptcha.yml
acts_as_textcaptcha-3.0.10 config/textcaptcha.yml
acts_as_textcaptcha-3.0.9 config/textcaptcha.yml
acts_as_textcaptcha-3.0.8 config/textcaptcha.yml
acts_as_textcaptcha-3.0.7 config/textcaptcha.yml
acts_as_textcaptcha-3.0.6 config/textcaptcha.yml
acts_as_textcaptcha-3.0.5 config/textcaptcha.yml
acts_as_textcaptcha-3.0.4 config/textcaptcha.yml
acts_as_textcaptcha-3.0.3 config/textcaptcha.yml
acts_as_textcaptcha-3.0.2 config/textcaptcha.yml
acts_as_textcaptcha-3.0.1 config/textcaptcha.yml
acts_as_textcaptcha-3.0.0 config/textcaptcha.yml