acts_as_textcaptcha 4.6.0 → 4.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/build.yml +40 -0
- data/.github/workflows/push_gem.yml +25 -0
- data/Appraisals +2 -14
- data/CHANGELOG.md +9 -1
- data/README.md +10 -17
- data/Rakefile +1 -17
- data/acts_as_textcaptcha.gemspec +2 -9
- data/gemfiles/rails_6.gemfile +2 -4
- data/lib/acts_as_textcaptcha/textcaptcha_api.rb +2 -5
- data/lib/acts_as_textcaptcha/version.rb +1 -1
- metadata +14 -74
- data/.rubocop.yml +0 -1165
- data/.travis.yml +0 -57
- data/gemfiles/rails_3.gemfile +0 -8
- data/gemfiles/rails_4.gemfile +0 -8
- data/gemfiles/rails_5.gemfile +0 -8
- data/gemfiles/rails_7.gemfile +0 -8
    
        data/.travis.yml
    DELETED
    
    | @@ -1,57 +0,0 @@ | |
| 1 | 
            -
            sudo: false
         | 
| 2 | 
            -
            language: ruby
         | 
| 3 | 
            -
            gemfile:
         | 
| 4 | 
            -
              - gemfiles/rails_4.gemfile
         | 
| 5 | 
            -
              - gemfiles/rails_5.gemfile
         | 
| 6 | 
            -
              - gemfiles/rails_6.gemfile
         | 
| 7 | 
            -
              - gemfiles/rails_7.gemfile
         | 
| 8 | 
            -
             | 
| 9 | 
            -
            rvm:
         | 
| 10 | 
            -
              - 2.5.8
         | 
| 11 | 
            -
              - 2.6.6
         | 
| 12 | 
            -
              - 2.7.2
         | 
| 13 | 
            -
              - 3.0.0
         | 
| 14 | 
            -
              - 3.1.0
         | 
| 15 | 
            -
              - ruby-head
         | 
| 16 | 
            -
             | 
| 17 | 
            -
            matrix:
         | 
| 18 | 
            -
              allow_failures:
         | 
| 19 | 
            -
                - rvm: ruby-head
         | 
| 20 | 
            -
              exclude:
         | 
| 21 | 
            -
                - rvm: 2.7.2
         | 
| 22 | 
            -
                  gemfile: gemfiles/rails_4.gemfile
         | 
| 23 | 
            -
                - rvm: 3.0.0
         | 
| 24 | 
            -
                  gemfile: gemfiles/rails_4.gemfile
         | 
| 25 | 
            -
                - rvm: 3.1.0
         | 
| 26 | 
            -
                  gemfile: gemfiles/rails_4.gemfile
         | 
| 27 | 
            -
                - rvm: 3.0.0
         | 
| 28 | 
            -
                  gemfile: gemfiles/rails_5.gemfile
         | 
| 29 | 
            -
                - rvm: 3.1.0
         | 
| 30 | 
            -
                  gemfile: gemfiles/rails_5.gemfile
         | 
| 31 | 
            -
                - rvm: ruby-head
         | 
| 32 | 
            -
                  gemfile: gemfiles/rails_4.gemfile
         | 
| 33 | 
            -
                - rvm: ruby-head
         | 
| 34 | 
            -
                  gemfile: gemfiles/rails_5.gemfile
         | 
| 35 | 
            -
                - rvm: 2.5.8
         | 
| 36 | 
            -
                  gemfile: gemfiles/rails_7.gemfile
         | 
| 37 | 
            -
                - rvm: 2.6.6
         | 
| 38 | 
            -
                  gemfile: gemfiles/rails_7.gemfile
         | 
| 39 | 
            -
             | 
| 40 | 
            -
            deploy:
         | 
| 41 | 
            -
              provider: rubygems
         | 
| 42 | 
            -
              api_key:
         | 
| 43 | 
            -
                secure: AUJy9JSNrNcJcZc6JQErh1LtmHrdQBk1W0DYVT0soyBEx5hbKKoIympmrlh9VcZxNpbLfbuCdxl2C0nWMembwx71tLytvM76BqoU2KKTxQQLju8SUAyzGQabkNHr0mzpUDQiC4L16c5k+voCkWtptGkxiVq6eDZExBSzDM8cVMk=
         | 
| 44 | 
            -
              gem: acts_as_textcaptcha
         | 
| 45 | 
            -
              on:
         | 
| 46 | 
            -
                tags: true
         | 
| 47 | 
            -
                repo: matthutchinson/acts_as_textcaptcha
         | 
| 48 | 
            -
            env:
         | 
| 49 | 
            -
              global:
         | 
| 50 | 
            -
                - CC_TEST_REPORTER_ID=3ff570478529bcdd11ef42d33229702118aa36b17a3de01c3f6d5a9c58fc7a4c
         | 
| 51 | 
            -
                - GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi)
         | 
| 52 | 
            -
            before_script:
         | 
| 53 | 
            -
              - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
         | 
| 54 | 
            -
              - chmod +x ./cc-test-reporter
         | 
| 55 | 
            -
              - ./cc-test-reporter before-build - GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi)
         | 
| 56 | 
            -
            after_script:
         | 
| 57 | 
            -
              - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT -t simplecov
         | 
    
        data/gemfiles/rails_3.gemfile
    DELETED
    
    
    
        data/gemfiles/rails_4.gemfile
    DELETED
    
    
    
        data/gemfiles/rails_5.gemfile
    DELETED