form_input 0.9.0 → 1.0.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.
data/.travis.gemfile DELETED
@@ -1,15 +0,0 @@
1
- # Gemfile for TravisCI integration.
2
-
3
- source 'https://rubygems.org'
4
-
5
- gem 'rake'
6
- gem 'rack', '~> 1.5'
7
- gem 'rack-test'
8
- gem 'bacon', '~> 1.2'
9
- gem 'r18n-core', '~> 2.0'
10
-
11
- if ENV[ 'CODECLIMATE_REPO_TOKEN' ]
12
- gem 'codeclimate-test-reporter'
13
- end
14
-
15
- # EOF #
data/.travis.yml DELETED
@@ -1,23 +0,0 @@
1
- # TravisCI config.
2
-
3
- language: ruby
4
- rvm:
5
- - ruby-head
6
- - 2.3.1
7
- - 2.2.5
8
- - 2.1.10
9
- - 2.0.0
10
- - rbx-2
11
- - jruby-head
12
- gemfile: .travis.gemfile
13
- env:
14
- global:
15
- # travis encrypt -r raxoft/form_input CODECLIMATE_REPO_TOKEN=???
16
- secure: "OGkm2MO8oBOsE6qQ95gca6z3pi8m5UN6vtoD+hlvR6dJpj6n4nlfWOsKq0MJWC5j1260p6EQCfKkfXA0s/rtYbdHpgb4Qhtm9/wKwwyOItyMMdXfaazNhKhLRLnib9RSSxXxjpZY40Lcsb3HWjZbjeIEgu03gn8RtXkmJFG4gqxnpmzw4Xloq8AWl0tO3ItP07VGhbJjCEftweGlICiNZ9XQPq87Bnqr5D9NqBkHAUJm9SpG15y9Dt9by3OPq/PXnh/juXybP7V2IMGhFu1WudLVDy2Bd1VQVbFb7uk51Mko8esDFr5WK0E675CJ2CCm8AaoA+Uwk5cpSB2HCbZ80OSE+Jl60F8NqBfxMvpw/pY0xb/tdGLnXAureU9eWted3XTwtZoq+k/7TdirFCU5u48VxszrJs96QoVi2rh1iPwBXZmGO4aEfkCT/wmqL0Tbi0s69XjjjtNINvXwynXmYG3PbPKG0iDKIJAvwdh+KmBLLd+cKeZp5jJ5npgmsWRcgMm2HHGskb8etv4AFSVvHA8PDQR7E/GalKhSZclUjLlOq+qhGklCi/Mhy8XlAIn+yIXzL3Rlw/bWL56iC/PHzi5vNC4ia8PwlPB+FqOS5T5vwtj4NcDc+6k6yTWRNZZ9cEBeS2xO0TOAFe3qE//PkztW7tJ0Qlgc0aS9Q2+uH9Y="
17
- matrix:
18
- allow_failures:
19
- - rvm: rbx-2
20
- - rvm: ruby-head
21
- - rvm: jruby-head
22
-
23
- # EOF #