validates_phone_format_of 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e59b570a2c1327b0ff26d06c05959b83e2214f41
4
- data.tar.gz: 6391b6a0d78d43a557e1a45feefd2e444f8ce683
3
+ metadata.gz: dcce559889d5758a4ffd02cdd937710797ef8ac4
4
+ data.tar.gz: 3f2f52111bab0e4cf1d3618289438fb11fbe9acb
5
5
  SHA512:
6
- metadata.gz: 16fd6f8ef3997603400b2de0f284673b5e38e2b7f1e35136d765ad54bfd0c15429a78e3170c4c403dc6046ad5dc832a380488f6161fb43d6c4ebea68127a5664
7
- data.tar.gz: 01c57e4fcb20645ddfb31ab0c2e8b45a04b9e7d238186abd83a9a5f1820b1c5cdb46577d5eb568bfd8f21b605ce87545d97d6ee3db797c3db301b81dac33bbc3
6
+ metadata.gz: 6a34990b0be443979eb5ed67b45e8f96e8ee0e1f73dc2fe7f215afc9c8377aa1562a71abaf6fdde6f819f26ba961ea04583b716024c76073fa5b4977fff8e5a7
7
+ data.tar.gz: 0622f5c3d927ef6157033bddfec3cba32dfd1fb9d02c6a00a29d1ab46eccf571a7ebe892ff1704e497e35f9cdf99dc405a8f24363b4986b2b44391c1477c5734
data/.gitignore CHANGED
@@ -1,2 +1,5 @@
1
1
  *.gem
2
- .DS_Store
2
+ .DS_Store
3
+ Gemfile.lock
4
+ .ruby-version
5
+ .ruby-gemset
data/.rspec CHANGED
@@ -1,2 +1,3 @@
1
1
  --color
2
- --order random
2
+ --order random
3
+ --format progress
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.2
5
+ - 2.1.0
7
6
  - 2.4.0
8
7
  - jruby
9
- - ree
10
8
  gemfile:
11
- - Gemfile
12
- - gemfiles/active_model_2_1
13
- - gemfiles/active_model_3_0
14
- - gemfiles/active_model_3_1
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
@@ -1,3 +1,5 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gemspec
3
+ gemspec
4
+
5
+ gem 'activemodel'
@@ -1,5 +1,5 @@
1
1
  source "http://rubygems.org"
2
2
 
3
- gemspec
3
+ gemspec :path => "../"
4
4
 
5
5
  gem 'activemodel', '= 3.1.0'
@@ -1,5 +1,5 @@
1
1
  source "http://rubygems.org"
2
2
 
3
- gemspec
3
+ gemspec :path => "../"
4
4
 
5
5
  gem 'activemodel', '= 3.2.0'
@@ -1,5 +1,5 @@
1
1
  source "http://rubygems.org"
2
2
 
3
- gemspec
3
+ gemspec :path => "../"
4
4
 
5
5
  gem 'active_model', '= 3.3.0'
@@ -1,5 +1,5 @@
1
1
  source "http://rubygems.org"
2
2
 
3
- gemspec
3
+ gemspec :path => "../"
4
4
 
5
5
  gem 'activemodel', '= 4.0.0'
@@ -1,5 +1,5 @@
1
1
  source "http://rubygems.org"
2
2
 
3
- gemspec
3
+ gemspec :path => "../"
4
4
 
5
5
  gem 'activemodel', '= 4.1.0'
@@ -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.4'
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
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: '0'
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
@@ -1,5 +0,0 @@
1
- source "http://rubygems.org"
2
-
3
- gemspec
4
-
5
- gem 'activemodel', '= 2.1.0'
@@ -1,5 +0,0 @@
1
- source "http://rubygems.org"
2
-
3
- gemspec
4
-
5
- gem 'activemodel', '= 2.1.0'
@@ -1,5 +0,0 @@
1
- source "http://rubygems.org"
2
-
3
- gemspec
4
-
5
- gem 'activemodel', '= 5.0'