validates_phone_format_of 1.0.4 → 1.0.5
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/.gitignore +4 -1
- data/.rspec +2 -1
- data/.travis.yml +6 -12
- data/Gemfile +3 -1
- data/gemfiles/Gemfile.active_model_3_1 +1 -1
- data/gemfiles/Gemfile.active_model_3_2 +1 -1
- data/gemfiles/Gemfile.active_model_3_3 +1 -1
- data/gemfiles/Gemfile.active_model_4_0 +1 -1
- data/gemfiles/Gemfile.active_model_4_1 +1 -1
- data/validates_phone_format_of.gemspec +3 -1
- metadata +2 -7
- data/.ruby-gemset +0 -1
- data/.ruby-version +0 -1
- data/gemfiles/Gemfile.active_model_2_1 +0 -5
- data/gemfiles/Gemfile.active_model_3_0 +0 -5
- data/gemfiles/Gemfile.active_model_5_0 +0 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dcce559889d5758a4ffd02cdd937710797ef8ac4
|
|
4
|
+
data.tar.gz: 3f2f52111bab0e4cf1d3618289438fb11fbe9acb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6a34990b0be443979eb5ed67b45e8f96e8ee0e1f73dc2fe7f215afc9c8377aa1562a71abaf6fdde6f819f26ba961ea04583b716024c76073fa5b4977fff8e5a7
|
|
7
|
+
data.tar.gz: 0622f5c3d927ef6157033bddfec3cba32dfd1fb9d02c6a00a29d1ab46eccf571a7ebe892ff1704e497e35f9cdf99dc405a8f24363b4986b2b44391c1477c5734
|
data/.gitignore
CHANGED
data/.rspec
CHANGED
data/.travis.yml
CHANGED
|
@@ -1,20 +1,14 @@
|
|
|
1
|
+
language: ruby
|
|
1
2
|
rvm:
|
|
2
|
-
- 1.8.7
|
|
3
|
-
- 1.9.2
|
|
4
3
|
- 1.9.3
|
|
5
4
|
- 2.0.0
|
|
6
|
-
- 2.1.
|
|
5
|
+
- 2.1.0
|
|
7
6
|
- 2.4.0
|
|
8
7
|
- jruby
|
|
9
|
-
- ree
|
|
10
8
|
gemfile:
|
|
11
|
-
- Gemfile
|
|
12
|
-
- gemfiles/
|
|
13
|
-
- gemfiles/
|
|
14
|
-
- gemfiles/
|
|
15
|
-
- gemfiles/active_model_3_2
|
|
16
|
-
- gemfiles/active_model_4_0
|
|
17
|
-
- gemfiles/active_model_4_1
|
|
18
|
-
- gemfiles/active_model_5_0
|
|
9
|
+
- gemfiles/Gemfile.active_model_3_1
|
|
10
|
+
- gemfiles/Gemfile.active_model_3_2
|
|
11
|
+
- gemfiles/Gemfile.active_model_4_0
|
|
12
|
+
- gemfiles/Gemfile.active_model_4_1
|
|
19
13
|
install: bundle install
|
|
20
14
|
script: bundle exec rspec
|
data/Gemfile
CHANGED
|
@@ -5,7 +5,7 @@ Gem::Specification.new do |s|
|
|
|
5
5
|
s.summary = "Validate phone numbers against E.164 format with this Ruby on Rails gem"
|
|
6
6
|
s.description = s.summary
|
|
7
7
|
s.homepage = 'https://github.com/jonathantribouharet/validates_phone_format_of'
|
|
8
|
-
s.version = '1.0.
|
|
8
|
+
s.version = '1.0.5'
|
|
9
9
|
s.files = `git ls-files`.split("\n")
|
|
10
10
|
s.require_paths = ['lib']
|
|
11
11
|
s.authors = ['Jonathan TRIBOUHARET']
|
|
@@ -13,6 +13,8 @@ Gem::Specification.new do |s|
|
|
|
13
13
|
s.license = 'MIT'
|
|
14
14
|
s.platform = Gem::Platform::RUBY
|
|
15
15
|
|
|
16
|
+
s.required_ruby_version = '>= 1.9.3'
|
|
17
|
+
|
|
16
18
|
s.add_development_dependency 'bundler'
|
|
17
19
|
s.add_development_dependency 'rspec', '~> 3.6'
|
|
18
20
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: validates_phone_format_of
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jonathan TRIBOUHARET
|
|
@@ -46,20 +46,15 @@ extra_rdoc_files: []
|
|
|
46
46
|
files:
|
|
47
47
|
- .gitignore
|
|
48
48
|
- .rspec
|
|
49
|
-
- .ruby-gemset
|
|
50
|
-
- .ruby-version
|
|
51
49
|
- .travis.yml
|
|
52
50
|
- Gemfile
|
|
53
51
|
- LICENSE
|
|
54
52
|
- README.md
|
|
55
|
-
- gemfiles/Gemfile.active_model_2_1
|
|
56
|
-
- gemfiles/Gemfile.active_model_3_0
|
|
57
53
|
- gemfiles/Gemfile.active_model_3_1
|
|
58
54
|
- gemfiles/Gemfile.active_model_3_2
|
|
59
55
|
- gemfiles/Gemfile.active_model_3_3
|
|
60
56
|
- gemfiles/Gemfile.active_model_4_0
|
|
61
57
|
- gemfiles/Gemfile.active_model_4_1
|
|
62
|
-
- gemfiles/Gemfile.active_model_5_0
|
|
63
58
|
- lib/validates_phone_format_of.rb
|
|
64
59
|
- spec/validates_phone_format_of_spec.rb
|
|
65
60
|
- validates_phone_format_of.gemspec
|
|
@@ -75,7 +70,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
75
70
|
requirements:
|
|
76
71
|
- - '>='
|
|
77
72
|
- !ruby/object:Gem::Version
|
|
78
|
-
version:
|
|
73
|
+
version: 1.9.3
|
|
79
74
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
75
|
requirements:
|
|
81
76
|
- - '>='
|
data/.ruby-gemset
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
validates_phone_format_of
|
data/.ruby-version
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2.4.0
|