paraphrase 0.12.0 → 0.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.travis.yml +11 -21
- data/Appraisals +13 -22
- data/CHANGELOG.md +21 -12
- data/gemfiles/4.2.gemfile +1 -2
- data/gemfiles/4.2.gemfile.lock +70 -74
- data/gemfiles/5.0.gemfile +8 -0
- data/gemfiles/5.0.gemfile.lock +108 -0
- data/gemfiles/5.1.gemfile +8 -0
- data/gemfiles/5.1.gemfile.lock +108 -0
- data/gemfiles/5.2.gemfile +9 -0
- data/gemfiles/5.2.gemfile.lock +108 -0
- data/lib/paraphrase/version.rb +1 -1
- data/paraphrase.gemspec +9 -16
- metadata +34 -51
- data/gemfiles/3.1.gemfile +0 -9
- data/gemfiles/3.1.gemfile.lock +0 -105
- data/gemfiles/3.2.gemfile +0 -9
- data/gemfiles/3.2.gemfile.lock +0 -104
- data/gemfiles/4.0.gemfile +0 -9
- data/gemfiles/4.0.gemfile.lock +0 -96
- data/gemfiles/4.1.gemfile +0 -9
- data/gemfiles/4.1.gemfile.lock +0 -99
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 43ecedf4659ea90875e14caa3f42c0a4c038dfdd7f3b52521fd60219275a779c
|
4
|
+
data.tar.gz: daa305cc3762548d156e03b988efa086793c1b74dabd9201ceb205042c904a10
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e74d5856ec1dea6a7b31684008302ba1e873633083a376a2b161054347ac6fdb83b0838b90fe5cdaee38a67d8ad6fee07cdef0a45d763fa51b19b9dfcd87bdaa
|
7
|
+
data.tar.gz: 57787b886775a26c1afe0f8784fed1dc223a6f33b6b89c485e446936d30f75cf4813d786a074f7c68c25990554aed146a5cdbd1eda261a30100bf3077709d441
|
data/.travis.yml
CHANGED
@@ -1,28 +1,18 @@
|
|
1
1
|
sudo: false
|
2
|
+
cache: bundler
|
2
3
|
rvm:
|
3
|
-
-
|
4
|
-
- 2.
|
5
|
-
- 2.1
|
6
|
-
- 2.2.0
|
7
|
-
- jruby-19mode
|
8
|
-
- rbx-2
|
4
|
+
- 2.3.7
|
5
|
+
- 2.4.4
|
6
|
+
- 2.5.1
|
9
7
|
gemfile:
|
10
|
-
- gemfiles/3.1.gemfile
|
11
|
-
- gemfiles/3.2.gemfile
|
12
|
-
- gemfiles/4.0.gemfile
|
13
|
-
- gemfiles/4.1.gemfile
|
14
8
|
- gemfiles/4.2.gemfile
|
15
|
-
|
9
|
+
- gemfiles/5.0.gemfile
|
10
|
+
- gemfiles/5.1.gemfile
|
11
|
+
- gemfiles/5.2.gemfile
|
12
|
+
before_install:
|
13
|
+
- gem update --system
|
14
|
+
- gem install bundler
|
16
15
|
script: 'bundle exec rake'
|
17
|
-
env:
|
18
|
-
global:
|
19
|
-
# Code Climate coverage reporting
|
20
|
-
- secure: "VylP1haJogwCq04GRrM3hVfNT4YJiZ4RJoklOQLgqPMRalOCzVPOIRoTz3qpVbdQHf3l18VhVDrDbu2W2qfBKJq7/anIuYYgPd0uRAGliZD4h5B2PgQDqvPeTEftj/g3IYDh6PvZCuhgnxMdldmSnxd9WAjAnkLtjoiLgE6elCE="
|
21
16
|
matrix:
|
22
17
|
allow_failures:
|
23
|
-
-
|
24
|
-
exclude:
|
25
|
-
- rvm: 2.2.0
|
26
|
-
gemfile: gemfiles/3.1.gemfile
|
27
|
-
- rvm: 2.2.0
|
28
|
-
gemfile: gemfiles/3.2.gemfile
|
18
|
+
- gemfile: gemfiles/5.2.gemfile
|
data/Appraisals
CHANGED
@@ -1,29 +1,20 @@
|
|
1
|
-
appraise '
|
2
|
-
gem 'activerecord', '~>
|
3
|
-
gem 'activesupport', '~>
|
4
|
-
gem 'actionpack', '~> 3.1.0'
|
5
|
-
end
|
6
|
-
|
7
|
-
appraise '3.2' do
|
8
|
-
gem 'activerecord', '~> 3.2.0'
|
9
|
-
gem 'activesupport', '~> 3.2.0'
|
10
|
-
gem 'actionpack', '~> 3.2.0'
|
1
|
+
appraise '4.2' do
|
2
|
+
gem 'activerecord', '~> 4.2.0'
|
3
|
+
gem 'activesupport', '~> 4.2.0'
|
11
4
|
end
|
12
5
|
|
13
|
-
appraise '
|
14
|
-
gem 'activerecord', '~>
|
15
|
-
gem 'activesupport', '~>
|
16
|
-
gem 'actionpack', '~> 4.0.0'
|
6
|
+
appraise '5.0' do
|
7
|
+
gem 'activerecord', '~> 5.0.0'
|
8
|
+
gem 'activesupport', '~> 5.0.0'
|
17
9
|
end
|
18
10
|
|
19
|
-
appraise '
|
20
|
-
gem 'activerecord', '~>
|
21
|
-
gem 'activesupport', '~>
|
22
|
-
gem 'actionpack', '~> 4.1.0'
|
11
|
+
appraise '5.1' do
|
12
|
+
gem 'activerecord', '~> 5.1.0'
|
13
|
+
gem 'activesupport', '~> 5.1.0'
|
23
14
|
end
|
24
15
|
|
25
|
-
appraise '
|
26
|
-
gem 'activerecord', '~>
|
27
|
-
gem 'activesupport', '~>
|
28
|
-
gem 'actionpack', '~>
|
16
|
+
appraise '5.2' do
|
17
|
+
gem 'activerecord', '~> 5.2.0.rc2'
|
18
|
+
gem 'activesupport', '~> 5.2.0.rc2'
|
19
|
+
gem 'actionpack', '~> 5.2.0.rc2'
|
29
20
|
end
|
data/CHANGELOG.md
CHANGED
@@ -1,9 +1,18 @@
|
|
1
|
-
|
1
|
+
# Changelog
|
2
2
|
|
3
|
+
## Unreleased
|
4
|
+
|
5
|
+
## [0.13.0] - 2018-04-09
|
6
|
+
### Removed
|
7
|
+
* Support for ruby < 2.3
|
8
|
+
* Support for rails < 4.2
|
9
|
+
|
10
|
+
## [0.12.0] - 2015-02-07
|
11
|
+
### Added
|
3
12
|
* Add Rails 4.2 support
|
4
13
|
* Add `Pararhase::Query#model_name` to support `action_view` 4.2
|
5
14
|
|
6
|
-
## 0.11.0
|
15
|
+
## [0.11.0] - 2014-09-17
|
7
16
|
|
8
17
|
* Enable setting default values in param processors. The following will now
|
9
18
|
work:
|
@@ -22,7 +31,7 @@ class PostQuery < Paraphrase::Query
|
|
22
31
|
end
|
23
32
|
```
|
24
33
|
|
25
|
-
## 0.10.0
|
34
|
+
## [0.10.0] - 2014-07-03
|
26
35
|
|
27
36
|
* Change `Paraphrase::Query.source` to be a regular class attribute, removing
|
28
37
|
the DSL method `source` for defining the source.
|
@@ -41,13 +50,13 @@ end
|
|
41
50
|
* Require `Paraphrase::Query` be initialized with an instance of
|
42
51
|
`ActiveRecord::Relation`. Update `Paraphrase::Syntax`
|
43
52
|
|
44
|
-
## 0.9.0
|
53
|
+
## [0.9.0] - 2014-05-02
|
45
54
|
|
46
55
|
* Define methods to process query params on a subclass of `Paraphrase::Params`
|
47
56
|
that also handles filtering blank query params.
|
48
57
|
* `Query.keys` and `Query#keys` expose the keys that have been mapped.
|
49
58
|
|
50
|
-
## 0.8.0
|
59
|
+
## [0.8.0] - 2014-02-05
|
51
60
|
|
52
61
|
* Remove `ActiveSupport::Notifications`
|
53
62
|
* Remove delegation to `Query#results`
|
@@ -61,42 +70,42 @@ end
|
|
61
70
|
the query class
|
62
71
|
* Remove `register_mapping` method added to `ActiveRecord::Base`.
|
63
72
|
|
64
|
-
## 0.7.0
|
73
|
+
## [0.7.0] - 2014-01-25
|
65
74
|
|
66
75
|
* Add Rails 4 support
|
67
76
|
|
68
|
-
## 0.5.0
|
77
|
+
## [0.5.0] - 2012-08-07
|
69
78
|
|
70
79
|
* Cleanup `ScopeMapping` class
|
71
80
|
* Add ability to query from an existing `ActiveRecord::Relation` instance
|
72
81
|
(typically an association).
|
73
82
|
* Update syntax for generating mappings.
|
74
83
|
|
75
|
-
## 0.4.0
|
84
|
+
## [0.4.0] - 2012-07-06
|
76
85
|
|
77
86
|
* Setup `Query#params` to be `HashWithIndifferentAccess`.
|
78
87
|
* Gut out `Paraphrase` module methods. These were for use cases I had planned
|
79
88
|
for but have yet to encounter.
|
80
89
|
* Model's query class is now stored on the model itself.
|
81
90
|
|
82
|
-
## 0.3.2
|
91
|
+
## [0.3.2] - 2012-07-05
|
83
92
|
|
84
93
|
* Cache `Query#results`
|
85
94
|
* Setup `Query#method_missing` to proxy to `Query#results`
|
86
95
|
* Setup `Query#respond_to?` to check `Query#results`
|
87
96
|
|
88
|
-
## 0.3.1
|
97
|
+
## [0.3.1] - 2012-07-05
|
89
98
|
|
90
99
|
* Fix for rails 3.0
|
91
100
|
|
92
|
-
## 0.3.0
|
101
|
+
## [0.3.0] - 2012-07-05
|
93
102
|
|
94
103
|
* Allow `nil` values to be passed to scoped using `:allow_nil` option.
|
95
104
|
* Require/whitelist individual keys of a compound key.
|
96
105
|
* Update `Paraphrase::Syntax.register_mapping` to update an existing mapping to
|
97
106
|
avoid errors when a model class is reloaded during development.
|
98
107
|
|
99
|
-
## 0.2.0
|
108
|
+
## [0.2.0] - 2012-06-22
|
100
109
|
|
101
110
|
* Initial release
|
102
111
|
|
data/gemfiles/4.2.gemfile
CHANGED
data/gemfiles/4.2.gemfile.lock
CHANGED
@@ -1,116 +1,112 @@
|
|
1
1
|
PATH
|
2
|
-
remote:
|
2
|
+
remote: ..
|
3
3
|
specs:
|
4
|
-
paraphrase (0.
|
5
|
-
activemodel (>=
|
6
|
-
activerecord (>=
|
7
|
-
activesupport (>=
|
4
|
+
paraphrase (0.13.0)
|
5
|
+
activemodel (>= 4.2, < 6.0)
|
6
|
+
activerecord (>= 4.2, < 6.0)
|
7
|
+
activesupport (>= 4.2, < 6.0)
|
8
8
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
|
-
actionpack (4.2.
|
13
|
-
actionview (= 4.2.
|
14
|
-
activesupport (= 4.2.
|
15
|
-
rack (~> 1.6
|
12
|
+
actionpack (4.2.10)
|
13
|
+
actionview (= 4.2.10)
|
14
|
+
activesupport (= 4.2.10)
|
15
|
+
rack (~> 1.6)
|
16
16
|
rack-test (~> 0.6.2)
|
17
17
|
rails-dom-testing (~> 1.0, >= 1.0.5)
|
18
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.
|
19
|
-
actionview (4.2.
|
20
|
-
activesupport (= 4.2.
|
18
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
19
|
+
actionview (4.2.10)
|
20
|
+
activesupport (= 4.2.10)
|
21
21
|
builder (~> 3.1)
|
22
22
|
erubis (~> 2.7.0)
|
23
23
|
rails-dom-testing (~> 1.0, >= 1.0.5)
|
24
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.
|
25
|
-
activemodel (4.2.
|
26
|
-
activesupport (= 4.2.
|
24
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
25
|
+
activemodel (4.2.10)
|
26
|
+
activesupport (= 4.2.10)
|
27
27
|
builder (~> 3.1)
|
28
|
-
activerecord (4.2.
|
29
|
-
activemodel (= 4.2.
|
30
|
-
activesupport (= 4.2.
|
28
|
+
activerecord (4.2.10)
|
29
|
+
activemodel (= 4.2.10)
|
30
|
+
activesupport (= 4.2.10)
|
31
31
|
arel (~> 6.0)
|
32
|
-
activesupport (4.2.
|
32
|
+
activesupport (4.2.10)
|
33
33
|
i18n (~> 0.7)
|
34
|
-
json (~> 1.7, >= 1.7.7)
|
35
34
|
minitest (~> 5.1)
|
36
35
|
thread_safe (~> 0.3, >= 0.3.4)
|
37
36
|
tzinfo (~> 1.1)
|
38
|
-
appraisal (
|
37
|
+
appraisal (2.2.0)
|
39
38
|
bundler
|
40
39
|
rake
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
40
|
+
thor (>= 0.14.0)
|
41
|
+
arel (6.0.4)
|
42
|
+
builder (3.2.3)
|
43
|
+
coderay (1.1.2)
|
44
|
+
concurrent-ruby (1.0.5)
|
45
|
+
crass (1.0.4)
|
46
|
+
diff-lcs (1.3)
|
48
47
|
erubis (2.7.0)
|
49
|
-
i18n (0.
|
50
|
-
|
51
|
-
loofah (2.
|
48
|
+
i18n (0.9.5)
|
49
|
+
concurrent-ruby (~> 1.0)
|
50
|
+
loofah (2.2.2)
|
51
|
+
crass (~> 1.0.2)
|
52
52
|
nokogiri (>= 1.5.9)
|
53
|
-
method_source (0.
|
54
|
-
|
55
|
-
minitest (5.
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
pry (0.10.1)
|
53
|
+
method_source (0.9.0)
|
54
|
+
mini_portile2 (2.3.0)
|
55
|
+
minitest (5.11.3)
|
56
|
+
nokogiri (1.8.2)
|
57
|
+
mini_portile2 (~> 2.3.0)
|
58
|
+
pry (0.11.3)
|
60
59
|
coderay (~> 1.1.0)
|
61
|
-
method_source (~> 0.
|
62
|
-
|
63
|
-
rack (1.6.0)
|
60
|
+
method_source (~> 0.9.0)
|
61
|
+
rack (1.6.9)
|
64
62
|
rack-test (0.6.3)
|
65
63
|
rack (>= 1.0)
|
66
64
|
rails-deprecated_sanitizer (1.0.3)
|
67
65
|
activesupport (>= 4.2.0.alpha)
|
68
|
-
rails-dom-testing (1.0.
|
69
|
-
activesupport (>= 4.2.0
|
70
|
-
nokogiri (~> 1.6
|
66
|
+
rails-dom-testing (1.0.9)
|
67
|
+
activesupport (>= 4.2.0, < 5.0)
|
68
|
+
nokogiri (~> 1.6)
|
71
69
|
rails-deprecated_sanitizer (>= 1.0.1)
|
72
|
-
rails-html-sanitizer (1.0.
|
73
|
-
loofah (~> 2.
|
74
|
-
rake (
|
75
|
-
redcarpet (
|
76
|
-
rspec (3.
|
77
|
-
rspec-core (~> 3.
|
78
|
-
rspec-expectations (~> 3.
|
79
|
-
rspec-mocks (~> 3.
|
80
|
-
rspec-core (3.1
|
81
|
-
rspec-support (~> 3.
|
82
|
-
rspec-expectations (3.
|
70
|
+
rails-html-sanitizer (1.0.4)
|
71
|
+
loofah (~> 2.2, >= 2.2.2)
|
72
|
+
rake (12.3.1)
|
73
|
+
redcarpet (3.4.0)
|
74
|
+
rspec (3.7.0)
|
75
|
+
rspec-core (~> 3.7.0)
|
76
|
+
rspec-expectations (~> 3.7.0)
|
77
|
+
rspec-mocks (~> 3.7.0)
|
78
|
+
rspec-core (3.7.1)
|
79
|
+
rspec-support (~> 3.7.0)
|
80
|
+
rspec-expectations (3.7.0)
|
83
81
|
diff-lcs (>= 1.2.0, < 2.0)
|
84
|
-
rspec-support (~> 3.
|
85
|
-
rspec-mocks (3.
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
slop (3.6.0)
|
94
|
-
sqlite3 (1.3.10)
|
95
|
-
thread_safe (0.3.4)
|
96
|
-
tzinfo (1.2.2)
|
82
|
+
rspec-support (~> 3.7.0)
|
83
|
+
rspec-mocks (3.7.0)
|
84
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
85
|
+
rspec-support (~> 3.7.0)
|
86
|
+
rspec-support (3.7.1)
|
87
|
+
sqlite3 (1.3.13)
|
88
|
+
thor (0.20.0)
|
89
|
+
thread_safe (0.3.6)
|
90
|
+
tzinfo (1.2.5)
|
97
91
|
thread_safe (~> 0.1)
|
98
|
-
yard (0.
|
92
|
+
yard (0.9.12)
|
99
93
|
|
100
94
|
PLATFORMS
|
101
95
|
ruby
|
102
96
|
|
103
97
|
DEPENDENCIES
|
104
|
-
actionpack (
|
98
|
+
actionpack (>= 4.2, < 6.0)
|
105
99
|
activerecord (~> 4.2.0)
|
106
100
|
activesupport (~> 4.2.0)
|
107
|
-
appraisal (
|
101
|
+
appraisal (>= 1.0)
|
108
102
|
bundler (~> 1.0)
|
109
|
-
codeclimate-test-reporter (~> 0.3)
|
110
103
|
paraphrase!
|
111
104
|
pry (~> 0.9)
|
112
|
-
rake (~>
|
113
|
-
redcarpet (~> 2
|
105
|
+
rake (~> 12.3)
|
106
|
+
redcarpet (~> 3.2)
|
114
107
|
rspec (~> 3.0)
|
115
108
|
sqlite3 (~> 1.3.6)
|
116
109
|
yard (~> 0.7)
|
110
|
+
|
111
|
+
BUNDLED WITH
|
112
|
+
1.16.1
|
@@ -0,0 +1,108 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
paraphrase (0.13.0)
|
5
|
+
activemodel (>= 4.2, < 6.0)
|
6
|
+
activerecord (>= 4.2, < 6.0)
|
7
|
+
activesupport (>= 4.2, < 6.0)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
actionpack (5.0.7)
|
13
|
+
actionview (= 5.0.7)
|
14
|
+
activesupport (= 5.0.7)
|
15
|
+
rack (~> 2.0)
|
16
|
+
rack-test (~> 0.6.3)
|
17
|
+
rails-dom-testing (~> 2.0)
|
18
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
19
|
+
actionview (5.0.7)
|
20
|
+
activesupport (= 5.0.7)
|
21
|
+
builder (~> 3.1)
|
22
|
+
erubis (~> 2.7.0)
|
23
|
+
rails-dom-testing (~> 2.0)
|
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)
|
30
|
+
arel (~> 7.0)
|
31
|
+
activesupport (5.0.7)
|
32
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
33
|
+
i18n (>= 0.7, < 2)
|
34
|
+
minitest (~> 5.1)
|
35
|
+
tzinfo (~> 1.1)
|
36
|
+
appraisal (2.2.0)
|
37
|
+
bundler
|
38
|
+
rake
|
39
|
+
thor (>= 0.14.0)
|
40
|
+
arel (7.1.4)
|
41
|
+
builder (3.2.3)
|
42
|
+
coderay (1.1.2)
|
43
|
+
concurrent-ruby (1.0.5)
|
44
|
+
crass (1.0.4)
|
45
|
+
diff-lcs (1.3)
|
46
|
+
erubis (2.7.0)
|
47
|
+
i18n (1.0.0)
|
48
|
+
concurrent-ruby (~> 1.0)
|
49
|
+
loofah (2.2.2)
|
50
|
+
crass (~> 1.0.2)
|
51
|
+
nokogiri (>= 1.5.9)
|
52
|
+
method_source (0.9.0)
|
53
|
+
mini_portile2 (2.3.0)
|
54
|
+
minitest (5.11.3)
|
55
|
+
nokogiri (1.8.2)
|
56
|
+
mini_portile2 (~> 2.3.0)
|
57
|
+
pry (0.11.3)
|
58
|
+
coderay (~> 1.1.0)
|
59
|
+
method_source (~> 0.9.0)
|
60
|
+
rack (2.0.4)
|
61
|
+
rack-test (0.6.3)
|
62
|
+
rack (>= 1.0)
|
63
|
+
rails-dom-testing (2.0.3)
|
64
|
+
activesupport (>= 4.2.0)
|
65
|
+
nokogiri (>= 1.6)
|
66
|
+
rails-html-sanitizer (1.0.4)
|
67
|
+
loofah (~> 2.2, >= 2.2.2)
|
68
|
+
rake (12.3.1)
|
69
|
+
redcarpet (3.4.0)
|
70
|
+
rspec (3.7.0)
|
71
|
+
rspec-core (~> 3.7.0)
|
72
|
+
rspec-expectations (~> 3.7.0)
|
73
|
+
rspec-mocks (~> 3.7.0)
|
74
|
+
rspec-core (3.7.1)
|
75
|
+
rspec-support (~> 3.7.0)
|
76
|
+
rspec-expectations (3.7.0)
|
77
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
78
|
+
rspec-support (~> 3.7.0)
|
79
|
+
rspec-mocks (3.7.0)
|
80
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
81
|
+
rspec-support (~> 3.7.0)
|
82
|
+
rspec-support (3.7.1)
|
83
|
+
sqlite3 (1.3.13)
|
84
|
+
thor (0.20.0)
|
85
|
+
thread_safe (0.3.6)
|
86
|
+
tzinfo (1.2.5)
|
87
|
+
thread_safe (~> 0.1)
|
88
|
+
yard (0.9.12)
|
89
|
+
|
90
|
+
PLATFORMS
|
91
|
+
ruby
|
92
|
+
|
93
|
+
DEPENDENCIES
|
94
|
+
actionpack (>= 4.2, < 6.0)
|
95
|
+
activerecord (~> 5.0.0)
|
96
|
+
activesupport (~> 5.0.0)
|
97
|
+
appraisal (>= 1.0)
|
98
|
+
bundler (~> 1.0)
|
99
|
+
paraphrase!
|
100
|
+
pry (~> 0.9)
|
101
|
+
rake (~> 12.3)
|
102
|
+
redcarpet (~> 3.2)
|
103
|
+
rspec (~> 3.0)
|
104
|
+
sqlite3 (~> 1.3.6)
|
105
|
+
yard (~> 0.7)
|
106
|
+
|
107
|
+
BUNDLED WITH
|
108
|
+
1.16.1
|
@@ -0,0 +1,108 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
paraphrase (0.13.0)
|
5
|
+
activemodel (>= 4.2, < 6.0)
|
6
|
+
activerecord (>= 4.2, < 6.0)
|
7
|
+
activesupport (>= 4.2, < 6.0)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
actionpack (5.1.6)
|
13
|
+
actionview (= 5.1.6)
|
14
|
+
activesupport (= 5.1.6)
|
15
|
+
rack (~> 2.0)
|
16
|
+
rack-test (>= 0.6.3)
|
17
|
+
rails-dom-testing (~> 2.0)
|
18
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
19
|
+
actionview (5.1.6)
|
20
|
+
activesupport (= 5.1.6)
|
21
|
+
builder (~> 3.1)
|
22
|
+
erubi (~> 1.4)
|
23
|
+
rails-dom-testing (~> 2.0)
|
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)
|
30
|
+
arel (~> 8.0)
|
31
|
+
activesupport (5.1.6)
|
32
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
33
|
+
i18n (>= 0.7, < 2)
|
34
|
+
minitest (~> 5.1)
|
35
|
+
tzinfo (~> 1.1)
|
36
|
+
appraisal (2.2.0)
|
37
|
+
bundler
|
38
|
+
rake
|
39
|
+
thor (>= 0.14.0)
|
40
|
+
arel (8.0.0)
|
41
|
+
builder (3.2.3)
|
42
|
+
coderay (1.1.2)
|
43
|
+
concurrent-ruby (1.0.5)
|
44
|
+
crass (1.0.4)
|
45
|
+
diff-lcs (1.3)
|
46
|
+
erubi (1.7.1)
|
47
|
+
i18n (1.0.0)
|
48
|
+
concurrent-ruby (~> 1.0)
|
49
|
+
loofah (2.2.2)
|
50
|
+
crass (~> 1.0.2)
|
51
|
+
nokogiri (>= 1.5.9)
|
52
|
+
method_source (0.9.0)
|
53
|
+
mini_portile2 (2.3.0)
|
54
|
+
minitest (5.11.3)
|
55
|
+
nokogiri (1.8.2)
|
56
|
+
mini_portile2 (~> 2.3.0)
|
57
|
+
pry (0.11.3)
|
58
|
+
coderay (~> 1.1.0)
|
59
|
+
method_source (~> 0.9.0)
|
60
|
+
rack (2.0.4)
|
61
|
+
rack-test (1.0.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.0.4)
|
67
|
+
loofah (~> 2.2, >= 2.2.2)
|
68
|
+
rake (12.3.1)
|
69
|
+
redcarpet (3.4.0)
|
70
|
+
rspec (3.7.0)
|
71
|
+
rspec-core (~> 3.7.0)
|
72
|
+
rspec-expectations (~> 3.7.0)
|
73
|
+
rspec-mocks (~> 3.7.0)
|
74
|
+
rspec-core (3.7.1)
|
75
|
+
rspec-support (~> 3.7.0)
|
76
|
+
rspec-expectations (3.7.0)
|
77
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
78
|
+
rspec-support (~> 3.7.0)
|
79
|
+
rspec-mocks (3.7.0)
|
80
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
81
|
+
rspec-support (~> 3.7.0)
|
82
|
+
rspec-support (3.7.1)
|
83
|
+
sqlite3 (1.3.13)
|
84
|
+
thor (0.20.0)
|
85
|
+
thread_safe (0.3.6)
|
86
|
+
tzinfo (1.2.5)
|
87
|
+
thread_safe (~> 0.1)
|
88
|
+
yard (0.9.12)
|
89
|
+
|
90
|
+
PLATFORMS
|
91
|
+
ruby
|
92
|
+
|
93
|
+
DEPENDENCIES
|
94
|
+
actionpack (>= 4.2, < 6.0)
|
95
|
+
activerecord (~> 5.1.0)
|
96
|
+
activesupport (~> 5.1.0)
|
97
|
+
appraisal (>= 1.0)
|
98
|
+
bundler (~> 1.0)
|
99
|
+
paraphrase!
|
100
|
+
pry (~> 0.9)
|
101
|
+
rake (~> 12.3)
|
102
|
+
redcarpet (~> 3.2)
|
103
|
+
rspec (~> 3.0)
|
104
|
+
sqlite3 (~> 1.3.6)
|
105
|
+
yard (~> 0.7)
|
106
|
+
|
107
|
+
BUNDLED WITH
|
108
|
+
1.16.1
|