taiwan_validator 1.3.2 → 1.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +1 -0
- data/.travis.yml +16 -9
- data/Gemfile +1 -2
- data/lib/taiwan_validator/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 6fccab1315f0f3ee34b19affbf5635bd302d68ea582d86eaa8f4d05253760dc6
|
4
|
+
data.tar.gz: 62a2adb41e4dd9405cd91639ebf5188c019f9d0bdfce73a455591d6b97a72098
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 050b5ee10e93a252f0b3e0aab592855c17ab3f246049973568284b8d0cdf9d5d629d471141f735cf206ee7ccecd5fa6b46494ba4b599d84fdae366699157c7f2
|
7
|
+
data.tar.gz: 2ffcafc1a8a8d0dd7ad01394a50b56f5162853d9bb37564b2a04952edbc2292740ff19845639b92a479aa5ef55b6e39c47d4d89c585084318079c1da8db32c2d
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
@@ -1,11 +1,18 @@
|
|
1
|
+
env:
|
2
|
+
global:
|
3
|
+
- CC_TEST_REPORTER_ID=85915b296b49680c2c4fd50d2be8f76cc094409297c63b37cf15c145968f1e91
|
1
4
|
language: ruby
|
2
|
-
sudo: false
|
3
|
-
cache: bundler
|
4
5
|
rvm:
|
5
|
-
- 2.2.
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
-
|
6
|
+
- 2.2.10
|
7
|
+
- 2.3.7
|
8
|
+
- 2.4.4
|
9
|
+
- 2.5.1
|
10
|
+
before_script:
|
11
|
+
- gem install bundler
|
12
|
+
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
13
|
+
- chmod +x ./cc-test-reporter
|
14
|
+
- ./cc-test-reporter before-build
|
15
|
+
script:
|
16
|
+
- bundle exec rspec
|
17
|
+
after_script:
|
18
|
+
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|
data/Gemfile
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: taiwan_validator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Yun
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|
@@ -124,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
124
124
|
version: '0'
|
125
125
|
requirements: []
|
126
126
|
rubyforge_project:
|
127
|
-
rubygems_version: 2.6
|
127
|
+
rubygems_version: 2.7.6
|
128
128
|
signing_key:
|
129
129
|
specification_version: 4
|
130
130
|
summary: Collection of useful custom validators in Taiwan for Rails applications
|