paraphrase 0.13.1 → 0.14.0

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
  SHA256:
3
- metadata.gz: 3e88857c04d639004cb135da22ea4c6633b94b810a7f3a5d32a118d41d1702a9
4
- data.tar.gz: 6374a8407974747997ce431d12ef6aa9aedd672e6f800c2d1a314d4f2edfdd47
3
+ metadata.gz: 450c48ba61141980788ce4d0a18bd925a5dfeb6098abf012b712f9f025cfc837
4
+ data.tar.gz: f09b0753cf0622bc4a6444374476848d23276d09feb442d2ff2a8c3edbf84027
5
5
  SHA512:
6
- metadata.gz: 4f8d982b5b0af890c2f61fb9d7811ba017d85311b6204581a6dad9ed63331eaf2853c12e2afee9dd7615cb689c258a104e320d1497998062a413b8e435a536a9
7
- data.tar.gz: 1445af920f0ddaa4c90ea42889dec9e17d850db3bd000eafb5dbcfb5b589a9fe83220b09b50b9948128d2cb46d76d659130c2e4c8b49fd535c1bf408b712944d
6
+ metadata.gz: c08d6a84ca6281338dc0c9f1680935770438be92b6a074364c22fc7d386d6831cf03b66545b0adec161dce33753d551fc80495968e5cff0eab52550864cc5808
7
+ data.tar.gz: fd8481ffe4523843297dba19be7adf67ce4fcb4d8d8944530520042d45cbc18ef6b839aec8eb1ebc3a1bda7b04b01ec70579dd5c2e89909ddd1a509057a1f003
@@ -1,15 +1,24 @@
1
1
  sudo: false
2
2
  cache: bundler
3
3
  rvm:
4
- - 2.3.7
5
- - 2.4.4
6
- - 2.5.1
4
+ - 2.3
5
+ - 2.4
6
+ - 2.5
7
+ - 2.6
7
8
  gemfile:
8
9
  - gemfiles/4.2.gemfile
9
10
  - gemfiles/5.0.gemfile
10
11
  - gemfiles/5.1.gemfile
11
12
  - gemfiles/5.2.gemfile
13
+ - gemfiles/6.0.gemfile
12
14
  before_install:
13
15
  - gem update --system
14
16
  - gem install bundler
15
17
  script: 'bundle exec rake'
18
+
19
+ matrix:
20
+ exclude:
21
+ - rvm: 2.3
22
+ gemfile: gemfiles/6.0.gemfile
23
+ - rvm: 2.4
24
+ gemfile: gemfiles/6.0.gemfile
data/Appraisals CHANGED
@@ -1,20 +1,38 @@
1
1
  appraise '4.2' do
2
+ gem 'activemodel', '~> 4.2.0'
3
+ gem 'actionpack', '~> 4.2.0'
2
4
  gem 'activerecord', '~> 4.2.0'
3
5
  gem 'activesupport', '~> 4.2.0'
6
+ gem 'sqlite3', '~> 1.3.0'
4
7
  end
5
8
 
6
9
  appraise '5.0' do
10
+ gem 'activemodel', '~> 5.0.0'
11
+ gem 'actionpack', '~> 5.0.0'
7
12
  gem 'activerecord', '~> 5.0.0'
8
13
  gem 'activesupport', '~> 5.0.0'
14
+ gem 'sqlite3', '~> 1.3.0'
9
15
  end
10
16
 
11
17
  appraise '5.1' do
18
+ gem 'activemodel', '~> 5.1.0'
19
+ gem 'actionpack', '~> 5.1.0'
12
20
  gem 'activerecord', '~> 5.1.0'
13
21
  gem 'activesupport', '~> 5.1.0'
22
+ gem 'sqlite3', '~> 1.3.0'
14
23
  end
15
24
 
16
25
  appraise '5.2' do
26
+ gem 'activemodel', '~> 5.2.0'
27
+ gem 'actionpack', '~> 5.2.0'
17
28
  gem 'activerecord', '~> 5.2.0'
18
29
  gem 'activesupport', '~> 5.2.0'
19
- gem 'actionpack', '~> 5.2.0'
30
+ gem 'sqlite3', '~> 1.3.0'
31
+ end
32
+
33
+ appraise '6.0' do
34
+ gem 'activemodel', '~> 6.0.0'
35
+ gem 'actionpack', '~> 6.0.0'
36
+ gem 'activerecord', '~> 6.0.0'
37
+ gem 'activesupport', '~> 6.0.0'
20
38
  end
@@ -1,6 +1,9 @@
1
1
  # Changelog
2
2
 
3
- ## Unreleased
3
+ ## [0.14.0] - 2019-08-17
4
+ ### Added
5
+ * Rails 6 support
6
+ * Testing on ruby 2.6
4
7
 
5
8
  ## [0.13.1] - 2018-04-12
6
9
  ### Added
@@ -2,7 +2,10 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
+ gem "activemodel", "~> 4.2.0"
6
+ gem "actionpack", "~> 4.2.0"
5
7
  gem "activerecord", "~> 4.2.0"
6
8
  gem "activesupport", "~> 4.2.0"
9
+ gem "sqlite3", "~> 1.3.0"
7
10
 
8
11
  gemspec path: "../"
@@ -1,35 +1,35 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- paraphrase (0.13.1)
5
- activemodel (>= 4.2, < 6.0)
6
- activerecord (>= 4.2, < 6.0)
7
- activesupport (>= 4.2, < 6.0)
4
+ paraphrase (0.14.0)
5
+ activemodel (>= 4.2)
6
+ activerecord (>= 4.2)
7
+ activesupport (>= 4.2)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- actionpack (4.2.10)
13
- actionview (= 4.2.10)
14
- activesupport (= 4.2.10)
12
+ actionpack (4.2.11.1)
13
+ actionview (= 4.2.11.1)
14
+ activesupport (= 4.2.11.1)
15
15
  rack (~> 1.6)
16
16
  rack-test (~> 0.6.2)
17
17
  rails-dom-testing (~> 1.0, >= 1.0.5)
18
18
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
19
- actionview (4.2.10)
20
- activesupport (= 4.2.10)
19
+ actionview (4.2.11.1)
20
+ activesupport (= 4.2.11.1)
21
21
  builder (~> 3.1)
22
22
  erubis (~> 2.7.0)
23
23
  rails-dom-testing (~> 1.0, >= 1.0.5)
24
24
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
25
- activemodel (4.2.10)
26
- activesupport (= 4.2.10)
25
+ activemodel (4.2.11.1)
26
+ activesupport (= 4.2.11.1)
27
27
  builder (~> 3.1)
28
- activerecord (4.2.10)
29
- activemodel (= 4.2.10)
30
- activesupport (= 4.2.10)
28
+ activerecord (4.2.11.1)
29
+ activemodel (= 4.2.11.1)
30
+ activesupport (= 4.2.11.1)
31
31
  arel (~> 6.0)
32
- activesupport (4.2.10)
32
+ activesupport (4.2.11.1)
33
33
  i18n (~> 0.7)
34
34
  minitest (~> 5.1)
35
35
  thread_safe (~> 0.3, >= 0.3.4)
@@ -42,24 +42,24 @@ GEM
42
42
  builder (3.2.3)
43
43
  byebug (10.0.2)
44
44
  coderay (1.1.2)
45
- concurrent-ruby (1.0.5)
45
+ concurrent-ruby (1.1.5)
46
46
  crass (1.0.4)
47
47
  diff-lcs (1.3)
48
48
  erubis (2.7.0)
49
49
  i18n (0.9.5)
50
50
  concurrent-ruby (~> 1.0)
51
- loofah (2.2.2)
51
+ loofah (2.2.3)
52
52
  crass (~> 1.0.2)
53
53
  nokogiri (>= 1.5.9)
54
- method_source (0.9.0)
55
- mini_portile2 (2.3.0)
54
+ method_source (0.9.2)
55
+ mini_portile2 (2.4.0)
56
56
  minitest (5.11.3)
57
- nokogiri (1.8.2)
58
- mini_portile2 (~> 2.3.0)
59
- pry (0.11.3)
57
+ nokogiri (1.10.4)
58
+ mini_portile2 (~> 2.4.0)
59
+ pry (0.12.2)
60
60
  coderay (~> 1.1.0)
61
61
  method_source (~> 0.9.0)
62
- rack (1.6.9)
62
+ rack (1.6.11)
63
63
  rack-test (0.6.3)
64
64
  rack (>= 1.0)
65
65
  rails-deprecated_sanitizer (1.0.3)
@@ -68,35 +68,36 @@ GEM
68
68
  activesupport (>= 4.2.0, < 5.0)
69
69
  nokogiri (~> 1.6)
70
70
  rails-deprecated_sanitizer (>= 1.0.1)
71
- rails-html-sanitizer (1.0.4)
71
+ rails-html-sanitizer (1.2.0)
72
72
  loofah (~> 2.2, >= 2.2.2)
73
- rake (12.3.1)
74
- redcarpet (3.4.0)
75
- rspec (3.7.0)
76
- rspec-core (~> 3.7.0)
77
- rspec-expectations (~> 3.7.0)
78
- rspec-mocks (~> 3.7.0)
79
- rspec-core (3.7.1)
80
- rspec-support (~> 3.7.0)
81
- rspec-expectations (3.7.0)
73
+ rake (12.3.3)
74
+ redcarpet (3.5.0)
75
+ rspec (3.8.0)
76
+ rspec-core (~> 3.8.0)
77
+ rspec-expectations (~> 3.8.0)
78
+ rspec-mocks (~> 3.8.0)
79
+ rspec-core (3.8.2)
80
+ rspec-support (~> 3.8.0)
81
+ rspec-expectations (3.8.4)
82
82
  diff-lcs (>= 1.2.0, < 2.0)
83
- rspec-support (~> 3.7.0)
84
- rspec-mocks (3.7.0)
83
+ rspec-support (~> 3.8.0)
84
+ rspec-mocks (3.8.1)
85
85
  diff-lcs (>= 1.2.0, < 2.0)
86
- rspec-support (~> 3.7.0)
87
- rspec-support (3.7.1)
86
+ rspec-support (~> 3.8.0)
87
+ rspec-support (3.8.2)
88
88
  sqlite3 (1.3.13)
89
- thor (0.20.0)
89
+ thor (0.20.3)
90
90
  thread_safe (0.3.6)
91
91
  tzinfo (1.2.5)
92
92
  thread_safe (~> 0.1)
93
- yard (0.9.12)
93
+ yard (0.9.20)
94
94
 
95
95
  PLATFORMS
96
96
  ruby
97
97
 
98
98
  DEPENDENCIES
99
- actionpack (>= 4.2, < 6.0)
99
+ actionpack (~> 4.2.0)
100
+ activemodel (~> 4.2.0)
100
101
  activerecord (~> 4.2.0)
101
102
  activesupport (~> 4.2.0)
102
103
  appraisal (>= 1.0)
@@ -107,8 +108,8 @@ DEPENDENCIES
107
108
  rake (~> 12.3)
108
109
  redcarpet (~> 3.2)
109
110
  rspec (~> 3.0)
110
- sqlite3 (~> 1.3.6)
111
+ sqlite3 (~> 1.3.0)
111
112
  yard (~> 0.9)
112
113
 
113
114
  BUNDLED WITH
114
- 1.16.1
115
+ 1.17.2
@@ -2,7 +2,10 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
+ gem "activemodel", "~> 5.0.0"
6
+ gem "actionpack", "~> 5.0.0"
5
7
  gem "activerecord", "~> 5.0.0"
6
8
  gem "activesupport", "~> 5.0.0"
9
+ gem "sqlite3", "~> 1.3.0"
7
10
 
8
11
  gemspec path: "../"
@@ -1,34 +1,34 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- paraphrase (0.13.1)
5
- activemodel (>= 4.2, < 6.0)
6
- activerecord (>= 4.2, < 6.0)
7
- activesupport (>= 4.2, < 6.0)
4
+ paraphrase (0.14.0)
5
+ activemodel (>= 4.2)
6
+ activerecord (>= 4.2)
7
+ activesupport (>= 4.2)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- actionpack (5.0.7)
13
- actionview (= 5.0.7)
14
- activesupport (= 5.0.7)
12
+ actionpack (5.0.7.2)
13
+ actionview (= 5.0.7.2)
14
+ activesupport (= 5.0.7.2)
15
15
  rack (~> 2.0)
16
16
  rack-test (~> 0.6.3)
17
17
  rails-dom-testing (~> 2.0)
18
18
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
19
- actionview (5.0.7)
20
- activesupport (= 5.0.7)
19
+ actionview (5.0.7.2)
20
+ activesupport (= 5.0.7.2)
21
21
  builder (~> 3.1)
22
22
  erubis (~> 2.7.0)
23
23
  rails-dom-testing (~> 2.0)
24
24
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
25
- activemodel (5.0.7)
26
- activesupport (= 5.0.7)
27
- activerecord (5.0.7)
28
- activemodel (= 5.0.7)
29
- activesupport (= 5.0.7)
25
+ activemodel (5.0.7.2)
26
+ activesupport (= 5.0.7.2)
27
+ activerecord (5.0.7.2)
28
+ activemodel (= 5.0.7.2)
29
+ activesupport (= 5.0.7.2)
30
30
  arel (~> 7.0)
31
- activesupport (5.0.7)
31
+ activesupport (5.0.7.2)
32
32
  concurrent-ruby (~> 1.0, >= 1.0.2)
33
33
  i18n (>= 0.7, < 2)
34
34
  minitest (~> 5.1)
@@ -41,58 +41,59 @@ GEM
41
41
  builder (3.2.3)
42
42
  byebug (10.0.2)
43
43
  coderay (1.1.2)
44
- concurrent-ruby (1.0.5)
44
+ concurrent-ruby (1.1.5)
45
45
  crass (1.0.4)
46
46
  diff-lcs (1.3)
47
47
  erubis (2.7.0)
48
- i18n (1.0.0)
48
+ i18n (1.6.0)
49
49
  concurrent-ruby (~> 1.0)
50
- loofah (2.2.2)
50
+ loofah (2.2.3)
51
51
  crass (~> 1.0.2)
52
52
  nokogiri (>= 1.5.9)
53
- method_source (0.9.0)
54
- mini_portile2 (2.3.0)
53
+ method_source (0.9.2)
54
+ mini_portile2 (2.4.0)
55
55
  minitest (5.11.3)
56
- nokogiri (1.8.2)
57
- mini_portile2 (~> 2.3.0)
58
- pry (0.11.3)
56
+ nokogiri (1.10.4)
57
+ mini_portile2 (~> 2.4.0)
58
+ pry (0.12.2)
59
59
  coderay (~> 1.1.0)
60
60
  method_source (~> 0.9.0)
61
- rack (2.0.4)
61
+ rack (2.0.7)
62
62
  rack-test (0.6.3)
63
63
  rack (>= 1.0)
64
64
  rails-dom-testing (2.0.3)
65
65
  activesupport (>= 4.2.0)
66
66
  nokogiri (>= 1.6)
67
- rails-html-sanitizer (1.0.4)
67
+ rails-html-sanitizer (1.2.0)
68
68
  loofah (~> 2.2, >= 2.2.2)
69
- rake (12.3.1)
70
- redcarpet (3.4.0)
71
- rspec (3.7.0)
72
- rspec-core (~> 3.7.0)
73
- rspec-expectations (~> 3.7.0)
74
- rspec-mocks (~> 3.7.0)
75
- rspec-core (3.7.1)
76
- rspec-support (~> 3.7.0)
77
- rspec-expectations (3.7.0)
69
+ rake (12.3.3)
70
+ redcarpet (3.5.0)
71
+ rspec (3.8.0)
72
+ rspec-core (~> 3.8.0)
73
+ rspec-expectations (~> 3.8.0)
74
+ rspec-mocks (~> 3.8.0)
75
+ rspec-core (3.8.2)
76
+ rspec-support (~> 3.8.0)
77
+ rspec-expectations (3.8.4)
78
78
  diff-lcs (>= 1.2.0, < 2.0)
79
- rspec-support (~> 3.7.0)
80
- rspec-mocks (3.7.0)
79
+ rspec-support (~> 3.8.0)
80
+ rspec-mocks (3.8.1)
81
81
  diff-lcs (>= 1.2.0, < 2.0)
82
- rspec-support (~> 3.7.0)
83
- rspec-support (3.7.1)
82
+ rspec-support (~> 3.8.0)
83
+ rspec-support (3.8.2)
84
84
  sqlite3 (1.3.13)
85
- thor (0.20.0)
85
+ thor (0.20.3)
86
86
  thread_safe (0.3.6)
87
87
  tzinfo (1.2.5)
88
88
  thread_safe (~> 0.1)
89
- yard (0.9.12)
89
+ yard (0.9.20)
90
90
 
91
91
  PLATFORMS
92
92
  ruby
93
93
 
94
94
  DEPENDENCIES
95
- actionpack (>= 4.2, < 6.0)
95
+ actionpack (~> 5.0.0)
96
+ activemodel (~> 5.0.0)
96
97
  activerecord (~> 5.0.0)
97
98
  activesupport (~> 5.0.0)
98
99
  appraisal (>= 1.0)
@@ -103,8 +104,8 @@ DEPENDENCIES
103
104
  rake (~> 12.3)
104
105
  redcarpet (~> 3.2)
105
106
  rspec (~> 3.0)
106
- sqlite3 (~> 1.3.6)
107
+ sqlite3 (~> 1.3.0)
107
108
  yard (~> 0.9)
108
109
 
109
110
  BUNDLED WITH
110
- 1.16.1
111
+ 1.17.2
@@ -2,7 +2,10 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
+ gem "activemodel", "~> 5.1.0"
6
+ gem "actionpack", "~> 5.1.0"
5
7
  gem "activerecord", "~> 5.1.0"
6
8
  gem "activesupport", "~> 5.1.0"
9
+ gem "sqlite3", "~> 1.3.0"
7
10
 
8
11
  gemspec path: "../"
@@ -1,34 +1,34 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- paraphrase (0.13.1)
5
- activemodel (>= 4.2, < 6.0)
6
- activerecord (>= 4.2, < 6.0)
7
- activesupport (>= 4.2, < 6.0)
4
+ paraphrase (0.14.0)
5
+ activemodel (>= 4.2)
6
+ activerecord (>= 4.2)
7
+ activesupport (>= 4.2)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- actionpack (5.1.6)
13
- actionview (= 5.1.6)
14
- activesupport (= 5.1.6)
12
+ actionpack (5.1.7)
13
+ actionview (= 5.1.7)
14
+ activesupport (= 5.1.7)
15
15
  rack (~> 2.0)
16
16
  rack-test (>= 0.6.3)
17
17
  rails-dom-testing (~> 2.0)
18
18
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
19
- actionview (5.1.6)
20
- activesupport (= 5.1.6)
19
+ actionview (5.1.7)
20
+ activesupport (= 5.1.7)
21
21
  builder (~> 3.1)
22
22
  erubi (~> 1.4)
23
23
  rails-dom-testing (~> 2.0)
24
24
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
25
- activemodel (5.1.6)
26
- activesupport (= 5.1.6)
27
- activerecord (5.1.6)
28
- activemodel (= 5.1.6)
29
- activesupport (= 5.1.6)
25
+ activemodel (5.1.7)
26
+ activesupport (= 5.1.7)
27
+ activerecord (5.1.7)
28
+ activemodel (= 5.1.7)
29
+ activesupport (= 5.1.7)
30
30
  arel (~> 8.0)
31
- activesupport (5.1.6)
31
+ activesupport (5.1.7)
32
32
  concurrent-ruby (~> 1.0, >= 1.0.2)
33
33
  i18n (>= 0.7, < 2)
34
34
  minitest (~> 5.1)
@@ -41,58 +41,59 @@ GEM
41
41
  builder (3.2.3)
42
42
  byebug (10.0.2)
43
43
  coderay (1.1.2)
44
- concurrent-ruby (1.0.5)
44
+ concurrent-ruby (1.1.5)
45
45
  crass (1.0.4)
46
46
  diff-lcs (1.3)
47
- erubi (1.7.1)
48
- i18n (1.0.0)
47
+ erubi (1.8.0)
48
+ i18n (1.6.0)
49
49
  concurrent-ruby (~> 1.0)
50
- loofah (2.2.2)
50
+ loofah (2.2.3)
51
51
  crass (~> 1.0.2)
52
52
  nokogiri (>= 1.5.9)
53
- method_source (0.9.0)
54
- mini_portile2 (2.3.0)
53
+ method_source (0.9.2)
54
+ mini_portile2 (2.4.0)
55
55
  minitest (5.11.3)
56
- nokogiri (1.8.2)
57
- mini_portile2 (~> 2.3.0)
58
- pry (0.11.3)
56
+ nokogiri (1.10.4)
57
+ mini_portile2 (~> 2.4.0)
58
+ pry (0.12.2)
59
59
  coderay (~> 1.1.0)
60
60
  method_source (~> 0.9.0)
61
- rack (2.0.4)
62
- rack-test (1.0.0)
61
+ rack (2.0.7)
62
+ rack-test (1.1.0)
63
63
  rack (>= 1.0, < 3)
64
64
  rails-dom-testing (2.0.3)
65
65
  activesupport (>= 4.2.0)
66
66
  nokogiri (>= 1.6)
67
- rails-html-sanitizer (1.0.4)
67
+ rails-html-sanitizer (1.2.0)
68
68
  loofah (~> 2.2, >= 2.2.2)
69
- rake (12.3.1)
70
- redcarpet (3.4.0)
71
- rspec (3.7.0)
72
- rspec-core (~> 3.7.0)
73
- rspec-expectations (~> 3.7.0)
74
- rspec-mocks (~> 3.7.0)
75
- rspec-core (3.7.1)
76
- rspec-support (~> 3.7.0)
77
- rspec-expectations (3.7.0)
69
+ rake (12.3.3)
70
+ redcarpet (3.5.0)
71
+ rspec (3.8.0)
72
+ rspec-core (~> 3.8.0)
73
+ rspec-expectations (~> 3.8.0)
74
+ rspec-mocks (~> 3.8.0)
75
+ rspec-core (3.8.2)
76
+ rspec-support (~> 3.8.0)
77
+ rspec-expectations (3.8.4)
78
78
  diff-lcs (>= 1.2.0, < 2.0)
79
- rspec-support (~> 3.7.0)
80
- rspec-mocks (3.7.0)
79
+ rspec-support (~> 3.8.0)
80
+ rspec-mocks (3.8.1)
81
81
  diff-lcs (>= 1.2.0, < 2.0)
82
- rspec-support (~> 3.7.0)
83
- rspec-support (3.7.1)
82
+ rspec-support (~> 3.8.0)
83
+ rspec-support (3.8.2)
84
84
  sqlite3 (1.3.13)
85
- thor (0.20.0)
85
+ thor (0.20.3)
86
86
  thread_safe (0.3.6)
87
87
  tzinfo (1.2.5)
88
88
  thread_safe (~> 0.1)
89
- yard (0.9.12)
89
+ yard (0.9.20)
90
90
 
91
91
  PLATFORMS
92
92
  ruby
93
93
 
94
94
  DEPENDENCIES
95
- actionpack (>= 4.2, < 6.0)
95
+ actionpack (~> 5.1.0)
96
+ activemodel (~> 5.1.0)
96
97
  activerecord (~> 5.1.0)
97
98
  activesupport (~> 5.1.0)
98
99
  appraisal (>= 1.0)
@@ -103,8 +104,8 @@ DEPENDENCIES
103
104
  rake (~> 12.3)
104
105
  redcarpet (~> 3.2)
105
106
  rspec (~> 3.0)
106
- sqlite3 (~> 1.3.6)
107
+ sqlite3 (~> 1.3.0)
107
108
  yard (~> 0.9)
108
109
 
109
110
  BUNDLED WITH
110
- 1.16.1
111
+ 1.17.2
@@ -2,8 +2,10 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
+ gem "activemodel", "~> 5.2.0"
6
+ gem "actionpack", "~> 5.2.0"
5
7
  gem "activerecord", "~> 5.2.0"
6
8
  gem "activesupport", "~> 5.2.0"
7
- gem "actionpack", "~> 5.2.0"
9
+ gem "sqlite3", "~> 1.3.0"
8
10
 
9
11
  gemspec path: "../"
@@ -1,34 +1,34 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- paraphrase (0.13.1)
5
- activemodel (>= 4.2, < 6.0)
6
- activerecord (>= 4.2, < 6.0)
7
- activesupport (>= 4.2, < 6.0)
4
+ paraphrase (0.14.0)
5
+ activemodel (>= 4.2)
6
+ activerecord (>= 4.2)
7
+ activesupport (>= 4.2)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- actionpack (5.2.0)
13
- actionview (= 5.2.0)
14
- activesupport (= 5.2.0)
12
+ actionpack (5.2.3)
13
+ actionview (= 5.2.3)
14
+ activesupport (= 5.2.3)
15
15
  rack (~> 2.0)
16
16
  rack-test (>= 0.6.3)
17
17
  rails-dom-testing (~> 2.0)
18
18
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
19
- actionview (5.2.0)
20
- activesupport (= 5.2.0)
19
+ actionview (5.2.3)
20
+ activesupport (= 5.2.3)
21
21
  builder (~> 3.1)
22
22
  erubi (~> 1.4)
23
23
  rails-dom-testing (~> 2.0)
24
24
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
25
- activemodel (5.2.0)
26
- activesupport (= 5.2.0)
27
- activerecord (5.2.0)
28
- activemodel (= 5.2.0)
29
- activesupport (= 5.2.0)
25
+ activemodel (5.2.3)
26
+ activesupport (= 5.2.3)
27
+ activerecord (5.2.3)
28
+ activemodel (= 5.2.3)
29
+ activesupport (= 5.2.3)
30
30
  arel (>= 9.0)
31
- activesupport (5.2.0)
31
+ activesupport (5.2.3)
32
32
  concurrent-ruby (~> 1.0, >= 1.0.2)
33
33
  i18n (>= 0.7, < 2)
34
34
  minitest (~> 5.1)
@@ -41,58 +41,59 @@ GEM
41
41
  builder (3.2.3)
42
42
  byebug (10.0.2)
43
43
  coderay (1.1.2)
44
- concurrent-ruby (1.0.5)
44
+ concurrent-ruby (1.1.5)
45
45
  crass (1.0.4)
46
46
  diff-lcs (1.3)
47
- erubi (1.7.1)
48
- i18n (1.0.0)
47
+ erubi (1.8.0)
48
+ i18n (1.6.0)
49
49
  concurrent-ruby (~> 1.0)
50
- loofah (2.2.2)
50
+ loofah (2.2.3)
51
51
  crass (~> 1.0.2)
52
52
  nokogiri (>= 1.5.9)
53
- method_source (0.9.0)
54
- mini_portile2 (2.3.0)
53
+ method_source (0.9.2)
54
+ mini_portile2 (2.4.0)
55
55
  minitest (5.11.3)
56
- nokogiri (1.8.2)
57
- mini_portile2 (~> 2.3.0)
58
- pry (0.11.3)
56
+ nokogiri (1.10.4)
57
+ mini_portile2 (~> 2.4.0)
58
+ pry (0.12.2)
59
59
  coderay (~> 1.1.0)
60
60
  method_source (~> 0.9.0)
61
- rack (2.0.4)
62
- rack-test (1.0.0)
61
+ rack (2.0.7)
62
+ rack-test (1.1.0)
63
63
  rack (>= 1.0, < 3)
64
64
  rails-dom-testing (2.0.3)
65
65
  activesupport (>= 4.2.0)
66
66
  nokogiri (>= 1.6)
67
- rails-html-sanitizer (1.0.4)
67
+ rails-html-sanitizer (1.2.0)
68
68
  loofah (~> 2.2, >= 2.2.2)
69
- rake (12.3.1)
70
- redcarpet (3.4.0)
71
- rspec (3.7.0)
72
- rspec-core (~> 3.7.0)
73
- rspec-expectations (~> 3.7.0)
74
- rspec-mocks (~> 3.7.0)
75
- rspec-core (3.7.1)
76
- rspec-support (~> 3.7.0)
77
- rspec-expectations (3.7.0)
69
+ rake (12.3.3)
70
+ redcarpet (3.5.0)
71
+ rspec (3.8.0)
72
+ rspec-core (~> 3.8.0)
73
+ rspec-expectations (~> 3.8.0)
74
+ rspec-mocks (~> 3.8.0)
75
+ rspec-core (3.8.2)
76
+ rspec-support (~> 3.8.0)
77
+ rspec-expectations (3.8.4)
78
78
  diff-lcs (>= 1.2.0, < 2.0)
79
- rspec-support (~> 3.7.0)
80
- rspec-mocks (3.7.0)
79
+ rspec-support (~> 3.8.0)
80
+ rspec-mocks (3.8.1)
81
81
  diff-lcs (>= 1.2.0, < 2.0)
82
- rspec-support (~> 3.7.0)
83
- rspec-support (3.7.1)
82
+ rspec-support (~> 3.8.0)
83
+ rspec-support (3.8.2)
84
84
  sqlite3 (1.3.13)
85
- thor (0.20.0)
85
+ thor (0.20.3)
86
86
  thread_safe (0.3.6)
87
87
  tzinfo (1.2.5)
88
88
  thread_safe (~> 0.1)
89
- yard (0.9.12)
89
+ yard (0.9.20)
90
90
 
91
91
  PLATFORMS
92
92
  ruby
93
93
 
94
94
  DEPENDENCIES
95
95
  actionpack (~> 5.2.0)
96
+ activemodel (~> 5.2.0)
96
97
  activerecord (~> 5.2.0)
97
98
  activesupport (~> 5.2.0)
98
99
  appraisal (>= 1.0)
@@ -103,8 +104,8 @@ DEPENDENCIES
103
104
  rake (~> 12.3)
104
105
  redcarpet (~> 3.2)
105
106
  rspec (~> 3.0)
106
- sqlite3 (~> 1.3.6)
107
+ sqlite3 (~> 1.3.0)
107
108
  yard (~> 0.9)
108
109
 
109
110
  BUNDLED WITH
110
- 1.16.1
111
+ 1.17.2
@@ -0,0 +1,10 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "activemodel", "~> 6.0.0"
6
+ gem "actionpack", "~> 6.0.0"
7
+ gem "activerecord", "~> 6.0.0"
8
+ gem "activesupport", "~> 6.0.0"
9
+
10
+ gemspec path: "../"
@@ -0,0 +1,111 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ paraphrase (0.14.0)
5
+ activemodel (>= 4.2)
6
+ activerecord (>= 4.2)
7
+ activesupport (>= 4.2)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actionpack (6.0.0)
13
+ actionview (= 6.0.0)
14
+ activesupport (= 6.0.0)
15
+ rack (~> 2.0)
16
+ rack-test (>= 0.6.3)
17
+ rails-dom-testing (~> 2.0)
18
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
19
+ actionview (6.0.0)
20
+ activesupport (= 6.0.0)
21
+ builder (~> 3.1)
22
+ erubi (~> 1.4)
23
+ rails-dom-testing (~> 2.0)
24
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
25
+ activemodel (6.0.0)
26
+ activesupport (= 6.0.0)
27
+ activerecord (6.0.0)
28
+ activemodel (= 6.0.0)
29
+ activesupport (= 6.0.0)
30
+ activesupport (6.0.0)
31
+ concurrent-ruby (~> 1.0, >= 1.0.2)
32
+ i18n (>= 0.7, < 2)
33
+ minitest (~> 5.1)
34
+ tzinfo (~> 1.1)
35
+ zeitwerk (~> 2.1, >= 2.1.8)
36
+ appraisal (2.2.0)
37
+ bundler
38
+ rake
39
+ thor (>= 0.14.0)
40
+ builder (3.2.3)
41
+ byebug (10.0.2)
42
+ coderay (1.1.2)
43
+ concurrent-ruby (1.1.5)
44
+ crass (1.0.4)
45
+ diff-lcs (1.3)
46
+ erubi (1.8.0)
47
+ i18n (1.6.0)
48
+ concurrent-ruby (~> 1.0)
49
+ loofah (2.2.3)
50
+ crass (~> 1.0.2)
51
+ nokogiri (>= 1.5.9)
52
+ method_source (0.9.2)
53
+ mini_portile2 (2.4.0)
54
+ minitest (5.11.3)
55
+ nokogiri (1.10.4)
56
+ mini_portile2 (~> 2.4.0)
57
+ pry (0.12.2)
58
+ coderay (~> 1.1.0)
59
+ method_source (~> 0.9.0)
60
+ rack (2.0.7)
61
+ rack-test (1.1.0)
62
+ rack (>= 1.0, < 3)
63
+ rails-dom-testing (2.0.3)
64
+ activesupport (>= 4.2.0)
65
+ nokogiri (>= 1.6)
66
+ rails-html-sanitizer (1.2.0)
67
+ loofah (~> 2.2, >= 2.2.2)
68
+ rake (12.3.3)
69
+ redcarpet (3.5.0)
70
+ rspec (3.8.0)
71
+ rspec-core (~> 3.8.0)
72
+ rspec-expectations (~> 3.8.0)
73
+ rspec-mocks (~> 3.8.0)
74
+ rspec-core (3.8.2)
75
+ rspec-support (~> 3.8.0)
76
+ rspec-expectations (3.8.4)
77
+ diff-lcs (>= 1.2.0, < 2.0)
78
+ rspec-support (~> 3.8.0)
79
+ rspec-mocks (3.8.1)
80
+ diff-lcs (>= 1.2.0, < 2.0)
81
+ rspec-support (~> 3.8.0)
82
+ rspec-support (3.8.2)
83
+ sqlite3 (1.4.1)
84
+ thor (0.20.3)
85
+ thread_safe (0.3.6)
86
+ tzinfo (1.2.5)
87
+ thread_safe (~> 0.1)
88
+ yard (0.9.20)
89
+ zeitwerk (2.1.9)
90
+
91
+ PLATFORMS
92
+ ruby
93
+
94
+ DEPENDENCIES
95
+ actionpack (~> 6.0.0)
96
+ activemodel (~> 6.0.0)
97
+ activerecord (~> 6.0.0)
98
+ activesupport (~> 6.0.0)
99
+ appraisal (>= 1.0)
100
+ bundler (~> 1.0)
101
+ byebug (~> 10.0)
102
+ paraphrase!
103
+ pry (~> 0.9)
104
+ rake (~> 12.3)
105
+ redcarpet (~> 3.2)
106
+ rspec (~> 3.0)
107
+ sqlite3 (>= 1.3, < 1.5)
108
+ yard (~> 0.9)
109
+
110
+ BUNDLED WITH
111
+ 1.17.2
@@ -1,3 +1,3 @@
1
1
  module Paraphrase
2
- VERSION = "0.13.1"
2
+ VERSION = "0.14.0"
3
3
  end
@@ -14,7 +14,6 @@ Gem::Specification.new do |gem|
14
14
  }
15
15
  gem.license = "MIT"
16
16
  gem.authors = ["Eduardo Gutierrez"]
17
- gem.email = "eduardo@vermonster.com"
18
17
  gem.homepage = "https://github.com/ecbypi/paraphrase"
19
18
 
20
19
  gem.files = `git ls-files`.split($/)
@@ -24,11 +23,11 @@ Gem::Specification.new do |gem|
24
23
 
25
24
  gem.required_ruby_version = '>= 2.3.0'
26
25
 
27
- gem.add_dependency 'activerecord', '>= 4.2', '< 6.0'
28
- gem.add_dependency 'activesupport', '>= 4.2', '< 6.0'
29
- gem.add_dependency 'activemodel', '>= 4.2', '< 6.0'
26
+ gem.add_dependency 'activerecord', '>= 4.2'
27
+ gem.add_dependency 'activesupport', '>= 4.2'
28
+ gem.add_dependency 'activemodel', '>= 4.2'
30
29
 
31
- gem.add_development_dependency 'actionpack', '>= 4.2', '< 6.0'
30
+ gem.add_development_dependency 'actionpack', '>= 4.2'
32
31
  gem.add_development_dependency 'bundler', '~> 1.0'
33
32
  gem.add_development_dependency "byebug", "~> 10.0"
34
33
  gem.add_development_dependency 'yard', '~> 0.9'
@@ -36,6 +35,6 @@ Gem::Specification.new do |gem|
36
35
  gem.add_development_dependency "rake", "~> 12.3"
37
36
  gem.add_development_dependency "appraisal", ">= 1.0"
38
37
  gem.add_development_dependency 'pry', '~> 0.9'
39
- gem.add_development_dependency 'sqlite3', '~> 1.3.6'
38
+ gem.add_development_dependency 'sqlite3', '>= 1.3', '< 1.5'
40
39
  gem.add_development_dependency "redcarpet", "~> 3.2"
41
40
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paraphrase
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.1
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eduardo Gutierrez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-12 00:00:00.000000000 Z
11
+ date: 2019-08-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -17,9 +17,6 @@ dependencies:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '4.2'
20
- - - "<"
21
- - !ruby/object:Gem::Version
22
- version: '6.0'
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
@@ -27,9 +24,6 @@ dependencies:
27
24
  - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: '4.2'
30
- - - "<"
31
- - !ruby/object:Gem::Version
32
- version: '6.0'
33
27
  - !ruby/object:Gem::Dependency
34
28
  name: activesupport
35
29
  requirement: !ruby/object:Gem::Requirement
@@ -37,9 +31,6 @@ dependencies:
37
31
  - - ">="
38
32
  - !ruby/object:Gem::Version
39
33
  version: '4.2'
40
- - - "<"
41
- - !ruby/object:Gem::Version
42
- version: '6.0'
43
34
  type: :runtime
44
35
  prerelease: false
45
36
  version_requirements: !ruby/object:Gem::Requirement
@@ -47,9 +38,6 @@ dependencies:
47
38
  - - ">="
48
39
  - !ruby/object:Gem::Version
49
40
  version: '4.2'
50
- - - "<"
51
- - !ruby/object:Gem::Version
52
- version: '6.0'
53
41
  - !ruby/object:Gem::Dependency
54
42
  name: activemodel
55
43
  requirement: !ruby/object:Gem::Requirement
@@ -57,9 +45,6 @@ dependencies:
57
45
  - - ">="
58
46
  - !ruby/object:Gem::Version
59
47
  version: '4.2'
60
- - - "<"
61
- - !ruby/object:Gem::Version
62
- version: '6.0'
63
48
  type: :runtime
64
49
  prerelease: false
65
50
  version_requirements: !ruby/object:Gem::Requirement
@@ -67,9 +52,6 @@ dependencies:
67
52
  - - ">="
68
53
  - !ruby/object:Gem::Version
69
54
  version: '4.2'
70
- - - "<"
71
- - !ruby/object:Gem::Version
72
- version: '6.0'
73
55
  - !ruby/object:Gem::Dependency
74
56
  name: actionpack
75
57
  requirement: !ruby/object:Gem::Requirement
@@ -77,9 +59,6 @@ dependencies:
77
59
  - - ">="
78
60
  - !ruby/object:Gem::Version
79
61
  version: '4.2'
80
- - - "<"
81
- - !ruby/object:Gem::Version
82
- version: '6.0'
83
62
  type: :development
84
63
  prerelease: false
85
64
  version_requirements: !ruby/object:Gem::Requirement
@@ -87,9 +66,6 @@ dependencies:
87
66
  - - ">="
88
67
  - !ruby/object:Gem::Version
89
68
  version: '4.2'
90
- - - "<"
91
- - !ruby/object:Gem::Version
92
- version: '6.0'
93
69
  - !ruby/object:Gem::Dependency
94
70
  name: bundler
95
71
  requirement: !ruby/object:Gem::Requirement
@@ -192,16 +168,22 @@ dependencies:
192
168
  name: sqlite3
193
169
  requirement: !ruby/object:Gem::Requirement
194
170
  requirements:
195
- - - "~>"
171
+ - - ">="
196
172
  - !ruby/object:Gem::Version
197
- version: 1.3.6
173
+ version: '1.3'
174
+ - - "<"
175
+ - !ruby/object:Gem::Version
176
+ version: '1.5'
198
177
  type: :development
199
178
  prerelease: false
200
179
  version_requirements: !ruby/object:Gem::Requirement
201
180
  requirements:
202
- - - "~>"
181
+ - - ">="
182
+ - !ruby/object:Gem::Version
183
+ version: '1.3'
184
+ - - "<"
203
185
  - !ruby/object:Gem::Version
204
- version: 1.3.6
186
+ version: '1.5'
205
187
  - !ruby/object:Gem::Dependency
206
188
  name: redcarpet
207
189
  requirement: !ruby/object:Gem::Requirement
@@ -220,7 +202,7 @@ description: "\n Map query params to model scopes, pairin
220
202
  one or\n more keys to a scope. Parameters can be required,
221
203
  or\n whitelisted providing fine tuned control over how\n
222
204
  \ scopes are run.\n "
223
- email: eduardo@vermonster.com
205
+ email:
224
206
  executables: []
225
207
  extensions: []
226
208
  extra_rdoc_files: []
@@ -243,6 +225,8 @@ files:
243
225
  - gemfiles/5.1.gemfile.lock
244
226
  - gemfiles/5.2.gemfile
245
227
  - gemfiles/5.2.gemfile.lock
228
+ - gemfiles/6.0.gemfile
229
+ - gemfiles/6.0.gemfile.lock
246
230
  - lib/paraphrase.rb
247
231
  - lib/paraphrase/active_model.rb
248
232
  - lib/paraphrase/mapping.rb
@@ -275,8 +259,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
275
259
  - !ruby/object:Gem::Version
276
260
  version: '0'
277
261
  requirements: []
278
- rubyforge_project:
279
- rubygems_version: 2.7.6
262
+ rubygems_version: 3.0.3
280
263
  signing_key:
281
264
  specification_version: 4
282
265
  summary: Map query params to model scopes