active_warnings 0.1.4 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3ef4b6ee4ee25e15dd0b7ed506c8b6ac94bb5486
4
- data.tar.gz: d43cf2e0ea7c0fa868a882818015aab03d0fd9fc
3
+ metadata.gz: 72b05defd19d0a547851b9514430166e7ddc75ca
4
+ data.tar.gz: 071c2dc55dc2e255d4c16ac29e1279a08eb7e396
5
5
  SHA512:
6
- metadata.gz: 38c4ed1ef15f88ea32346533529a93b34ffb7cf848f6d8e44268e3f47d66e07a618390221fb18e36ae3af877bf49b767f115ee156b9ed7f181e68115c705a043
7
- data.tar.gz: e472e787b804bd2b9932ec0b06e59c513101c34daa0a975bc832f4263adc03b84875168391f4b344bc03a44ba4b4f2dd15e792a2ddfc339ebba61be2a7d98136
6
+ metadata.gz: 6207c6f87292582485298b30239e27f547510ebea8fb53eaebeb3dd4fe9e8d6ace6af92a4a20a4a246ad4dff01ffd8739d04a0bec81dc01c2fc6b25fc467eafe
7
+ data.tar.gz: 449d9bcef64657b4a984ae76fc87774c9cb06f62ac92dfee2caa9ab04698a850baa83e518468c6d0e820d66b2c2b738ef2626e7adc5724697c90c3cade0593f5
@@ -1,10 +1,22 @@
1
1
  language: ruby
2
2
  script: bundle exec rspec
3
3
  rvm:
4
- - 1.9.3
5
- - 2.0.0
6
- - 2.1.0
4
+ - 1.9
5
+ - 2.0
6
+ - 2.1
7
+ - 2.2.5
8
+ - 2.3.1
7
9
  - ruby-head
10
+ gemfile:
11
+ - gemfiles/activemodel_4.gemfile
12
+ - gemfiles/activemodel_5.gemfile
8
13
  matrix:
9
14
  allow_failures:
10
- - rvm: ruby-head
15
+ - rvm: ruby-head
16
+ exclude:
17
+ - rvm: 1.9
18
+ gemfile: gemfiles/activemodel_5.gemfile
19
+ - rvm: 2.0
20
+ gemfile: gemfiles/activemodel_5.gemfile
21
+ - rvm: 2.1
22
+ gemfile: gemfiles/activemodel_5.gemfile
@@ -0,0 +1,7 @@
1
+ appraise "activemodel-4" do
2
+ gem "activemodel", "~> 4"
3
+ end
4
+
5
+ appraise "activemodel-5" do
6
+ gem "activemodel", "~> 5"
7
+ end
data/Gemfile CHANGED
@@ -3,8 +3,9 @@ source 'https://rubygems.org'
3
3
  # Specify your gem's dependencies in active_warnings.gemspec
4
4
  gemspec
5
5
 
6
- gem "bundler", "> 1.3"
7
- gem "rake", "~> 10.0"
6
+ gem "bundler"
7
+ gem "rake"
8
+ gem "appraisal"
8
9
 
9
10
  group :test do
10
11
  gem 'rspec'
@@ -0,0 +1,14 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "bundler"
6
+ gem "rake"
7
+ gem "appraisal"
8
+ gem "activemodel", "~> 4"
9
+
10
+ group :test do
11
+ gem "rspec"
12
+ end
13
+
14
+ gemspec :path => "../"
@@ -0,0 +1,59 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ active_warnings (0.1.4)
5
+ activemodel (> 4.1.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ activemodel (4.2.7)
11
+ activesupport (= 4.2.7)
12
+ builder (~> 3.1)
13
+ activesupport (4.2.7)
14
+ i18n (~> 0.7)
15
+ json (~> 1.7, >= 1.7.7)
16
+ minitest (~> 5.1)
17
+ thread_safe (~> 0.3, >= 0.3.4)
18
+ tzinfo (~> 1.1)
19
+ appraisal (2.1.0)
20
+ bundler
21
+ rake
22
+ thor (>= 0.14.0)
23
+ builder (3.2.2)
24
+ diff-lcs (1.2.5)
25
+ i18n (0.7.0)
26
+ json (1.8.3)
27
+ minitest (5.9.0)
28
+ rake (11.2.2)
29
+ rspec (3.5.0)
30
+ rspec-core (~> 3.5.0)
31
+ rspec-expectations (~> 3.5.0)
32
+ rspec-mocks (~> 3.5.0)
33
+ rspec-core (3.5.1)
34
+ rspec-support (~> 3.5.0)
35
+ rspec-expectations (3.5.0)
36
+ diff-lcs (>= 1.2.0, < 2.0)
37
+ rspec-support (~> 3.5.0)
38
+ rspec-mocks (3.5.0)
39
+ diff-lcs (>= 1.2.0, < 2.0)
40
+ rspec-support (~> 3.5.0)
41
+ rspec-support (3.5.0)
42
+ thor (0.19.1)
43
+ thread_safe (0.3.5)
44
+ tzinfo (1.2.2)
45
+ thread_safe (~> 0.1)
46
+
47
+ PLATFORMS
48
+ ruby
49
+
50
+ DEPENDENCIES
51
+ active_warnings!
52
+ activemodel (~> 4)
53
+ appraisal
54
+ bundler
55
+ rake
56
+ rspec
57
+
58
+ BUNDLED WITH
59
+ 1.12.5
@@ -0,0 +1,14 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "bundler"
6
+ gem "rake"
7
+ gem "appraisal"
8
+ gem "activemodel", "~> 5"
9
+
10
+ group :test do
11
+ gem "rspec"
12
+ end
13
+
14
+ gemspec :path => "../"
@@ -0,0 +1,56 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ active_warnings (0.1.4)
5
+ activemodel (> 4.1.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ activemodel (5.0.0)
11
+ activesupport (= 5.0.0)
12
+ activesupport (5.0.0)
13
+ concurrent-ruby (~> 1.0, >= 1.0.2)
14
+ i18n (~> 0.7)
15
+ minitest (~> 5.1)
16
+ tzinfo (~> 1.1)
17
+ appraisal (2.1.0)
18
+ bundler
19
+ rake
20
+ thor (>= 0.14.0)
21
+ concurrent-ruby (1.0.2)
22
+ diff-lcs (1.2.5)
23
+ i18n (0.7.0)
24
+ minitest (5.9.0)
25
+ rake (11.2.2)
26
+ rspec (3.5.0)
27
+ rspec-core (~> 3.5.0)
28
+ rspec-expectations (~> 3.5.0)
29
+ rspec-mocks (~> 3.5.0)
30
+ rspec-core (3.5.1)
31
+ rspec-support (~> 3.5.0)
32
+ rspec-expectations (3.5.0)
33
+ diff-lcs (>= 1.2.0, < 2.0)
34
+ rspec-support (~> 3.5.0)
35
+ rspec-mocks (3.5.0)
36
+ diff-lcs (>= 1.2.0, < 2.0)
37
+ rspec-support (~> 3.5.0)
38
+ rspec-support (3.5.0)
39
+ thor (0.19.1)
40
+ thread_safe (0.3.5)
41
+ tzinfo (1.2.2)
42
+ thread_safe (~> 0.1)
43
+
44
+ PLATFORMS
45
+ ruby
46
+
47
+ DEPENDENCIES
48
+ active_warnings!
49
+ activemodel (~> 5)
50
+ appraisal
51
+ bundler
52
+ rake
53
+ rspec
54
+
55
+ BUNDLED WITH
56
+ 1.12.5
@@ -1,7 +1,6 @@
1
1
  require "active_warnings/version"
2
2
 
3
3
  require 'active_model'
4
- require 'active_support/all'
5
4
 
6
5
  require 'active_warnings/validator'
7
6
 
@@ -1,3 +1,3 @@
1
1
  module ActiveWarnings
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_warnings
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Chung
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-06-24 00:00:00.000000000 Z
11
+ date: 2016-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -34,6 +34,7 @@ files:
34
34
  - ".gitignore"
35
35
  - ".rspec"
36
36
  - ".travis.yml"
37
+ - Appraisals
37
38
  - Gemfile
38
39
  - LICENSE.txt
39
40
  - README.md
@@ -41,6 +42,10 @@ files:
41
42
  - active_warnings.gemspec
42
43
  - bin/console
43
44
  - bin/setup
45
+ - gemfiles/activemodel_4.gemfile
46
+ - gemfiles/activemodel_4.gemfile.lock
47
+ - gemfiles/activemodel_5.gemfile
48
+ - gemfiles/activemodel_5.gemfile.lock
44
49
  - lib/active_warnings.rb
45
50
  - lib/active_warnings/validator.rb
46
51
  - lib/active_warnings/version.rb