ae_declarative_authorization 0.10.1 → 0.10.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +37 -0
- data/.gitignore +32 -0
- data/.ruby-version +1 -0
- data/declarative_authorization.gemspec +1 -1
- data/lib/declarative_authorization/version.rb +1 -1
- metadata +6 -70
- data/Gemfile.lock +0 -138
- data/gemfiles/ruby_2.3.3_rails507.gemfile +0 -12
- data/gemfiles/ruby_2.3.3_rails507.gemfile.lock +0 -164
- data/gemfiles/ruby_2.3.3_rails516.gemfile +0 -12
- data/gemfiles/ruby_2.3.3_rails516.gemfile.lock +0 -164
- data/gemfiles/ruby_2.3.3_rails521.gemfile +0 -12
- data/gemfiles/ruby_2.3.3_rails521.gemfile.lock +0 -172
- data/gemfiles/ruby_2.3.3_rails522.gemfile +0 -12
- data/gemfiles/ruby_2.3.3_rails522.gemfile.lock +0 -172
- data/gemfiles/ruby_2.5.3_rails507.gemfile +0 -12
- data/gemfiles/ruby_2.5.3_rails507.gemfile.lock +0 -164
- data/gemfiles/ruby_2.5.3_rails516.gemfile +0 -12
- data/gemfiles/ruby_2.5.3_rails516.gemfile.lock +0 -164
- data/gemfiles/ruby_2.5.3_rails521.gemfile +0 -12
- data/gemfiles/ruby_2.5.3_rails521.gemfile.lock +0 -172
- data/gemfiles/ruby_2.5.3_rails522.gemfile +0 -12
- data/gemfiles/ruby_2.5.3_rails522.gemfile.lock +0 -172
- data/gemfiles/ruby_2.6.2_rails507.gemfile +0 -12
- data/gemfiles/ruby_2.6.2_rails507.gemfile.lock +0 -164
- data/gemfiles/ruby_2.6.2_rails516.gemfile +0 -12
- data/gemfiles/ruby_2.6.2_rails516.gemfile.lock +0 -164
- data/gemfiles/ruby_2.6.2_rails521.gemfile +0 -12
- data/gemfiles/ruby_2.6.2_rails521.gemfile.lock +0 -172
- data/gemfiles/ruby_2.6.2_rails522.gemfile +0 -12
- data/gemfiles/ruby_2.6.2_rails522.gemfile.lock +0 -172
- data/log/test.log +0 -89694
- data/pkg/ae_declarative_authorization-0.10.0.gem +0 -0
- data/pkg/ae_declarative_authorization-0.9.0.gem +0 -0
- data/pkg/ae_declarative_authorization-0.9.0.tim1.gem +0 -0
- data/pkg/ae_declarative_authorization-0.9.1.gem +0 -0
- data/pkg/ae_declarative_authorization-0.9.2.gem +0 -0
- data/test/authorization_test.rb +0 -1189
- data/test/controller_filter_resource_access_test.rb +0 -573
- data/test/database.yml +0 -3
- data/test/dsl_reader_test.rb +0 -178
- data/test/functional/filter_access_to_with_id_in_scope_test.rb +0 -88
- data/test/functional/no_filter_access_to_test.rb +0 -79
- data/test/functional/params_block_arity_test.rb +0 -39
- data/test/grape_api_test.rb +0 -508
- data/test/helper_test.rb +0 -248
- data/test/maintenance_test.rb +0 -46
- data/test/model_test.rb +0 -1840
- data/test/profiles/access_checking +0 -100
- data/test/rails_controller_test.rb +0 -478
- data/test/schema.sql +0 -60
- data/test/test_helper.rb +0 -117
- data/test/test_support/grape.rb +0 -93
- data/test/test_support/minitest_compatibility.rb +0 -27
- data/test/test_support/rails.rb +0 -69
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 380a434297fb196dcfbf059509ee1a50cd7835d2
|
4
|
+
data.tar.gz: db8af9fcb8906a699ba3a2e602d7a83446772074
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fdf1b43b12a93c790af306c1a4c1158f6e7c6205bba57c0b39582481b7f2314d57c69893fef313871929e63c943211cde5d2a07a9f9ec5495f8f2da87f0fb12d
|
7
|
+
data.tar.gz: 4241e224613130471ea25351cc5b50204d1730f6986a8aa17302905ac17599b373a5df59ef5a51ad18cb116df109ae71dce7adcb6e488ec4ed53b4bf1dae7be4
|
@@ -0,0 +1,37 @@
|
|
1
|
+
version: 2.1
|
2
|
+
commands:
|
3
|
+
bundle_install_and_test:
|
4
|
+
steps:
|
5
|
+
- checkout
|
6
|
+
- run: bundle install
|
7
|
+
- run: bundle exec appraisal install
|
8
|
+
- run: bundle exec appraisal rake test
|
9
|
+
|
10
|
+
jobs:
|
11
|
+
test-ruby-233:
|
12
|
+
docker:
|
13
|
+
- image: circleci/ruby:2.3.3
|
14
|
+
steps:
|
15
|
+
- bundle_install_and_test
|
16
|
+
|
17
|
+
test-ruby-253:
|
18
|
+
docker:
|
19
|
+
- image: circleci/ruby:2.5.3
|
20
|
+
steps:
|
21
|
+
- bundle_install_and_test
|
22
|
+
|
23
|
+
test-ruby-262:
|
24
|
+
docker:
|
25
|
+
- image: circleci/ruby:2.6.2
|
26
|
+
steps:
|
27
|
+
- bundle_install_and_test
|
28
|
+
|
29
|
+
workflows:
|
30
|
+
rc:
|
31
|
+
jobs:
|
32
|
+
- test-ruby-233:
|
33
|
+
context: appfolio_test_context
|
34
|
+
- test-ruby-253:
|
35
|
+
context: appfolio_test_context
|
36
|
+
- test-ruby-262:
|
37
|
+
context: appfolio_test_context
|
data/.gitignore
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
# Because this is a gem, ignore Gemfile.lock:
|
2
|
+
|
3
|
+
Gemfile.lock
|
4
|
+
gemfiles/*.gemfile.lock
|
5
|
+
|
6
|
+
# And because this is Ruby, ignore the following
|
7
|
+
# (source: https://github.com/github/gitignore/blob/master/Ruby.gitignore):
|
8
|
+
|
9
|
+
*.gem
|
10
|
+
*.rbc
|
11
|
+
.bundle
|
12
|
+
.config
|
13
|
+
coverage
|
14
|
+
InstalledFiles
|
15
|
+
lib/bundler/man
|
16
|
+
pkg
|
17
|
+
log
|
18
|
+
rdoc
|
19
|
+
spec/reports
|
20
|
+
test/test.log
|
21
|
+
test/tmp
|
22
|
+
test/version_tmp
|
23
|
+
test/test_app/log
|
24
|
+
tmp
|
25
|
+
test/profiles
|
26
|
+
|
27
|
+
# YARD artifacts
|
28
|
+
.yardoc
|
29
|
+
_yardoc
|
30
|
+
doc/
|
31
|
+
|
32
|
+
.idea
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby-2.3.3
|
@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
|
|
14
14
|
s.homepage = 'http://github.com/appfolio/ae_declarative_authorization'
|
15
15
|
s.licenses = ['MIT']
|
16
16
|
|
17
|
-
s.files =
|
17
|
+
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|gemfiles)/}) }
|
18
18
|
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
19
19
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
20
20
|
s.require_paths = ['lib']
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ae_declarative_authorization
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- AppFolio
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2019-
|
12
|
+
date: 2019-07-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: blockenspiel
|
@@ -52,40 +52,18 @@ executables: []
|
|
52
52
|
extensions: []
|
53
53
|
extra_rdoc_files: []
|
54
54
|
files:
|
55
|
+
- ".circleci/config.yml"
|
56
|
+
- ".gitignore"
|
57
|
+
- ".ruby-version"
|
55
58
|
- Appraisals
|
56
59
|
- CHANGELOG
|
57
60
|
- Gemfile
|
58
|
-
- Gemfile.lock
|
59
61
|
- LICENSE.txt
|
60
62
|
- README.md
|
61
63
|
- README.rdoc
|
62
64
|
- Rakefile
|
63
65
|
- authorization_rules.dist.rb
|
64
66
|
- declarative_authorization.gemspec
|
65
|
-
- gemfiles/ruby_2.3.3_rails507.gemfile
|
66
|
-
- gemfiles/ruby_2.3.3_rails507.gemfile.lock
|
67
|
-
- gemfiles/ruby_2.3.3_rails516.gemfile
|
68
|
-
- gemfiles/ruby_2.3.3_rails516.gemfile.lock
|
69
|
-
- gemfiles/ruby_2.3.3_rails521.gemfile
|
70
|
-
- gemfiles/ruby_2.3.3_rails521.gemfile.lock
|
71
|
-
- gemfiles/ruby_2.3.3_rails522.gemfile
|
72
|
-
- gemfiles/ruby_2.3.3_rails522.gemfile.lock
|
73
|
-
- gemfiles/ruby_2.5.3_rails507.gemfile
|
74
|
-
- gemfiles/ruby_2.5.3_rails507.gemfile.lock
|
75
|
-
- gemfiles/ruby_2.5.3_rails516.gemfile
|
76
|
-
- gemfiles/ruby_2.5.3_rails516.gemfile.lock
|
77
|
-
- gemfiles/ruby_2.5.3_rails521.gemfile
|
78
|
-
- gemfiles/ruby_2.5.3_rails521.gemfile.lock
|
79
|
-
- gemfiles/ruby_2.5.3_rails522.gemfile
|
80
|
-
- gemfiles/ruby_2.5.3_rails522.gemfile.lock
|
81
|
-
- gemfiles/ruby_2.6.2_rails507.gemfile
|
82
|
-
- gemfiles/ruby_2.6.2_rails507.gemfile.lock
|
83
|
-
- gemfiles/ruby_2.6.2_rails516.gemfile
|
84
|
-
- gemfiles/ruby_2.6.2_rails516.gemfile.lock
|
85
|
-
- gemfiles/ruby_2.6.2_rails521.gemfile
|
86
|
-
- gemfiles/ruby_2.6.2_rails521.gemfile.lock
|
87
|
-
- gemfiles/ruby_2.6.2_rails522.gemfile
|
88
|
-
- gemfiles/ruby_2.6.2_rails522.gemfile.lock
|
89
67
|
- init.rb
|
90
68
|
- lib/declarative_authorization.rb
|
91
69
|
- lib/declarative_authorization/authorization.rb
|
@@ -106,30 +84,6 @@ files:
|
|
106
84
|
- lib/generators/authorization/rules/rules_generator.rb
|
107
85
|
- lib/generators/authorization/rules/templates/authorization_rules.rb
|
108
86
|
- lib/tasks/authorization_tasks.rake
|
109
|
-
- log/test.log
|
110
|
-
- pkg/ae_declarative_authorization-0.10.0.gem
|
111
|
-
- pkg/ae_declarative_authorization-0.9.0.gem
|
112
|
-
- pkg/ae_declarative_authorization-0.9.0.tim1.gem
|
113
|
-
- pkg/ae_declarative_authorization-0.9.1.gem
|
114
|
-
- pkg/ae_declarative_authorization-0.9.2.gem
|
115
|
-
- test/authorization_test.rb
|
116
|
-
- test/controller_filter_resource_access_test.rb
|
117
|
-
- test/database.yml
|
118
|
-
- test/dsl_reader_test.rb
|
119
|
-
- test/functional/filter_access_to_with_id_in_scope_test.rb
|
120
|
-
- test/functional/no_filter_access_to_test.rb
|
121
|
-
- test/functional/params_block_arity_test.rb
|
122
|
-
- test/grape_api_test.rb
|
123
|
-
- test/helper_test.rb
|
124
|
-
- test/maintenance_test.rb
|
125
|
-
- test/model_test.rb
|
126
|
-
- test/profiles/access_checking
|
127
|
-
- test/rails_controller_test.rb
|
128
|
-
- test/schema.sql
|
129
|
-
- test/test_helper.rb
|
130
|
-
- test/test_support/grape.rb
|
131
|
-
- test/test_support/minitest_compatibility.rb
|
132
|
-
- test/test_support/rails.rb
|
133
87
|
homepage: http://github.com/appfolio/ae_declarative_authorization
|
134
88
|
licenses:
|
135
89
|
- MIT
|
@@ -155,22 +109,4 @@ signing_key:
|
|
155
109
|
specification_version: 4
|
156
110
|
summary: ae_declarative_authorization is a Rails gem for maintainable authorization
|
157
111
|
based on readable authorization rules.
|
158
|
-
test_files:
|
159
|
-
- test/authorization_test.rb
|
160
|
-
- test/controller_filter_resource_access_test.rb
|
161
|
-
- test/database.yml
|
162
|
-
- test/dsl_reader_test.rb
|
163
|
-
- test/functional/filter_access_to_with_id_in_scope_test.rb
|
164
|
-
- test/functional/no_filter_access_to_test.rb
|
165
|
-
- test/functional/params_block_arity_test.rb
|
166
|
-
- test/grape_api_test.rb
|
167
|
-
- test/helper_test.rb
|
168
|
-
- test/maintenance_test.rb
|
169
|
-
- test/model_test.rb
|
170
|
-
- test/profiles/access_checking
|
171
|
-
- test/rails_controller_test.rb
|
172
|
-
- test/schema.sql
|
173
|
-
- test/test_helper.rb
|
174
|
-
- test/test_support/grape.rb
|
175
|
-
- test/test_support/minitest_compatibility.rb
|
176
|
-
- test/test_support/rails.rb
|
112
|
+
test_files: []
|
data/Gemfile.lock
DELETED
@@ -1,138 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
ae_declarative_authorization (0.10.1)
|
5
|
-
blockenspiel (~> 0.5.0)
|
6
|
-
rails (>= 4.2.5.2, < 6)
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: http://rubygems.org/
|
10
|
-
specs:
|
11
|
-
actioncable (5.2.2.1)
|
12
|
-
actionpack (= 5.2.2.1)
|
13
|
-
nio4r (~> 2.0)
|
14
|
-
websocket-driver (>= 0.6.1)
|
15
|
-
actionmailer (5.2.2.1)
|
16
|
-
actionpack (= 5.2.2.1)
|
17
|
-
actionview (= 5.2.2.1)
|
18
|
-
activejob (= 5.2.2.1)
|
19
|
-
mail (~> 2.5, >= 2.5.4)
|
20
|
-
rails-dom-testing (~> 2.0)
|
21
|
-
actionpack (5.2.2.1)
|
22
|
-
actionview (= 5.2.2.1)
|
23
|
-
activesupport (= 5.2.2.1)
|
24
|
-
rack (~> 2.0)
|
25
|
-
rack-test (>= 0.6.3)
|
26
|
-
rails-dom-testing (~> 2.0)
|
27
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
28
|
-
actionview (5.2.2.1)
|
29
|
-
activesupport (= 5.2.2.1)
|
30
|
-
builder (~> 3.1)
|
31
|
-
erubi (~> 1.4)
|
32
|
-
rails-dom-testing (~> 2.0)
|
33
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
34
|
-
activejob (5.2.2.1)
|
35
|
-
activesupport (= 5.2.2.1)
|
36
|
-
globalid (>= 0.3.6)
|
37
|
-
activemodel (5.2.2.1)
|
38
|
-
activesupport (= 5.2.2.1)
|
39
|
-
activerecord (5.2.2.1)
|
40
|
-
activemodel (= 5.2.2.1)
|
41
|
-
activesupport (= 5.2.2.1)
|
42
|
-
arel (>= 9.0)
|
43
|
-
activestorage (5.2.2.1)
|
44
|
-
actionpack (= 5.2.2.1)
|
45
|
-
activerecord (= 5.2.2.1)
|
46
|
-
marcel (~> 0.3.1)
|
47
|
-
activesupport (5.2.2.1)
|
48
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
49
|
-
i18n (>= 0.7, < 2)
|
50
|
-
minitest (~> 5.1)
|
51
|
-
tzinfo (~> 1.1)
|
52
|
-
appraisal (2.2.0)
|
53
|
-
bundler
|
54
|
-
rake
|
55
|
-
thor (>= 0.14.0)
|
56
|
-
arel (9.0.0)
|
57
|
-
blockenspiel (0.5.0)
|
58
|
-
builder (3.2.3)
|
59
|
-
concurrent-ruby (1.1.5)
|
60
|
-
crass (1.0.4)
|
61
|
-
erubi (1.8.0)
|
62
|
-
globalid (0.4.2)
|
63
|
-
activesupport (>= 4.2.0)
|
64
|
-
i18n (1.6.0)
|
65
|
-
concurrent-ruby (~> 1.0)
|
66
|
-
loofah (2.2.3)
|
67
|
-
crass (~> 1.0.2)
|
68
|
-
nokogiri (>= 1.5.9)
|
69
|
-
mail (2.7.1)
|
70
|
-
mini_mime (>= 0.1.1)
|
71
|
-
marcel (0.3.3)
|
72
|
-
mimemagic (~> 0.3.2)
|
73
|
-
metaclass (0.0.4)
|
74
|
-
method_source (0.9.2)
|
75
|
-
mimemagic (0.3.3)
|
76
|
-
mini_mime (1.0.1)
|
77
|
-
mini_portile2 (2.4.0)
|
78
|
-
minitest (5.11.3)
|
79
|
-
mocha (1.7.0)
|
80
|
-
metaclass (~> 0.0.1)
|
81
|
-
nio4r (2.3.1)
|
82
|
-
nokogiri (1.10.1)
|
83
|
-
mini_portile2 (~> 2.4.0)
|
84
|
-
rack (2.0.6)
|
85
|
-
rack-test (1.1.0)
|
86
|
-
rack (>= 1.0, < 3)
|
87
|
-
rails (5.2.2.1)
|
88
|
-
actioncable (= 5.2.2.1)
|
89
|
-
actionmailer (= 5.2.2.1)
|
90
|
-
actionpack (= 5.2.2.1)
|
91
|
-
actionview (= 5.2.2.1)
|
92
|
-
activejob (= 5.2.2.1)
|
93
|
-
activemodel (= 5.2.2.1)
|
94
|
-
activerecord (= 5.2.2.1)
|
95
|
-
activestorage (= 5.2.2.1)
|
96
|
-
activesupport (= 5.2.2.1)
|
97
|
-
bundler (>= 1.3.0)
|
98
|
-
railties (= 5.2.2.1)
|
99
|
-
sprockets-rails (>= 2.0.0)
|
100
|
-
rails-dom-testing (2.0.3)
|
101
|
-
activesupport (>= 4.2.0)
|
102
|
-
nokogiri (>= 1.6)
|
103
|
-
rails-html-sanitizer (1.0.4)
|
104
|
-
loofah (~> 2.2, >= 2.2.2)
|
105
|
-
railties (5.2.2.1)
|
106
|
-
actionpack (= 5.2.2.1)
|
107
|
-
activesupport (= 5.2.2.1)
|
108
|
-
method_source
|
109
|
-
rake (>= 0.8.7)
|
110
|
-
thor (>= 0.19.0, < 2.0)
|
111
|
-
rake (12.3.1)
|
112
|
-
sprockets (3.7.2)
|
113
|
-
concurrent-ruby (~> 1.0)
|
114
|
-
rack (> 1, < 3)
|
115
|
-
sprockets-rails (3.2.1)
|
116
|
-
actionpack (>= 4.0)
|
117
|
-
activesupport (>= 4.0)
|
118
|
-
sprockets (>= 3.0.0)
|
119
|
-
sqlite3 (1.3.13)
|
120
|
-
thor (0.20.0)
|
121
|
-
thread_safe (0.3.6)
|
122
|
-
tzinfo (1.2.5)
|
123
|
-
thread_safe (~> 0.1)
|
124
|
-
websocket-driver (0.7.0)
|
125
|
-
websocket-extensions (>= 0.1.0)
|
126
|
-
websocket-extensions (0.1.3)
|
127
|
-
|
128
|
-
PLATFORMS
|
129
|
-
ruby
|
130
|
-
|
131
|
-
DEPENDENCIES
|
132
|
-
ae_declarative_authorization!
|
133
|
-
appraisal (~> 2.1)
|
134
|
-
mocha (~> 1.0)
|
135
|
-
sqlite3 (~> 1.3.0)
|
136
|
-
|
137
|
-
BUNDLED WITH
|
138
|
-
1.17.1
|
@@ -1,12 +0,0 @@
|
|
1
|
-
# This file was generated by Appraisal
|
2
|
-
|
3
|
-
source "http://rubygems.org"
|
4
|
-
|
5
|
-
gem "appraisal", "~> 2.1"
|
6
|
-
gem "mocha", "~> 1.0", require: false
|
7
|
-
gem "sqlite3", "~> 1.3.0"
|
8
|
-
gem "rails", "5.0.7"
|
9
|
-
gem "grape", "1.1.0"
|
10
|
-
gem "rails-controller-testing"
|
11
|
-
|
12
|
-
gemspec path: "../"
|
@@ -1,164 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
ae_declarative_authorization (0.10.0)
|
5
|
-
blockenspiel (~> 0.5.0)
|
6
|
-
rails (>= 4.2.5.2, < 6)
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: http://rubygems.org/
|
10
|
-
specs:
|
11
|
-
actioncable (5.0.7)
|
12
|
-
actionpack (= 5.0.7)
|
13
|
-
nio4r (>= 1.2, < 3.0)
|
14
|
-
websocket-driver (~> 0.6.1)
|
15
|
-
actionmailer (5.0.7)
|
16
|
-
actionpack (= 5.0.7)
|
17
|
-
actionview (= 5.0.7)
|
18
|
-
activejob (= 5.0.7)
|
19
|
-
mail (~> 2.5, >= 2.5.4)
|
20
|
-
rails-dom-testing (~> 2.0)
|
21
|
-
actionpack (5.0.7)
|
22
|
-
actionview (= 5.0.7)
|
23
|
-
activesupport (= 5.0.7)
|
24
|
-
rack (~> 2.0)
|
25
|
-
rack-test (~> 0.6.3)
|
26
|
-
rails-dom-testing (~> 2.0)
|
27
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
28
|
-
actionview (5.0.7)
|
29
|
-
activesupport (= 5.0.7)
|
30
|
-
builder (~> 3.1)
|
31
|
-
erubis (~> 2.7.0)
|
32
|
-
rails-dom-testing (~> 2.0)
|
33
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
34
|
-
activejob (5.0.7)
|
35
|
-
activesupport (= 5.0.7)
|
36
|
-
globalid (>= 0.3.6)
|
37
|
-
activemodel (5.0.7)
|
38
|
-
activesupport (= 5.0.7)
|
39
|
-
activerecord (5.0.7)
|
40
|
-
activemodel (= 5.0.7)
|
41
|
-
activesupport (= 5.0.7)
|
42
|
-
arel (~> 7.0)
|
43
|
-
activesupport (5.0.7)
|
44
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
45
|
-
i18n (>= 0.7, < 2)
|
46
|
-
minitest (~> 5.1)
|
47
|
-
tzinfo (~> 1.1)
|
48
|
-
appraisal (2.2.0)
|
49
|
-
bundler
|
50
|
-
rake
|
51
|
-
thor (>= 0.14.0)
|
52
|
-
arel (7.1.4)
|
53
|
-
axiom-types (0.1.1)
|
54
|
-
descendants_tracker (~> 0.0.4)
|
55
|
-
ice_nine (~> 0.11.0)
|
56
|
-
thread_safe (~> 0.3, >= 0.3.1)
|
57
|
-
blockenspiel (0.5.0)
|
58
|
-
builder (3.2.3)
|
59
|
-
coercible (1.0.0)
|
60
|
-
descendants_tracker (~> 0.0.1)
|
61
|
-
concurrent-ruby (1.1.5)
|
62
|
-
crass (1.0.4)
|
63
|
-
descendants_tracker (0.0.4)
|
64
|
-
thread_safe (~> 0.3, >= 0.3.1)
|
65
|
-
equalizer (0.0.11)
|
66
|
-
erubis (2.7.0)
|
67
|
-
globalid (0.4.2)
|
68
|
-
activesupport (>= 4.2.0)
|
69
|
-
grape (1.1.0)
|
70
|
-
activesupport
|
71
|
-
builder
|
72
|
-
mustermann-grape (~> 1.0.0)
|
73
|
-
rack (>= 1.3.0)
|
74
|
-
rack-accept
|
75
|
-
virtus (>= 1.0.0)
|
76
|
-
i18n (1.6.0)
|
77
|
-
concurrent-ruby (~> 1.0)
|
78
|
-
ice_nine (0.11.2)
|
79
|
-
loofah (2.2.3)
|
80
|
-
crass (~> 1.0.2)
|
81
|
-
nokogiri (>= 1.5.9)
|
82
|
-
mail (2.7.1)
|
83
|
-
mini_mime (>= 0.1.1)
|
84
|
-
metaclass (0.0.4)
|
85
|
-
method_source (0.9.2)
|
86
|
-
mini_mime (1.0.1)
|
87
|
-
mini_portile2 (2.4.0)
|
88
|
-
minitest (5.11.3)
|
89
|
-
mocha (1.8.0)
|
90
|
-
metaclass (~> 0.0.1)
|
91
|
-
mustermann (1.0.3)
|
92
|
-
mustermann-grape (1.0.0)
|
93
|
-
mustermann (~> 1.0.0)
|
94
|
-
nio4r (2.3.1)
|
95
|
-
nokogiri (1.10.1)
|
96
|
-
mini_portile2 (~> 2.4.0)
|
97
|
-
rack (2.0.6)
|
98
|
-
rack-accept (0.4.5)
|
99
|
-
rack (>= 0.4)
|
100
|
-
rack-test (0.6.3)
|
101
|
-
rack (>= 1.0)
|
102
|
-
rails (5.0.7)
|
103
|
-
actioncable (= 5.0.7)
|
104
|
-
actionmailer (= 5.0.7)
|
105
|
-
actionpack (= 5.0.7)
|
106
|
-
actionview (= 5.0.7)
|
107
|
-
activejob (= 5.0.7)
|
108
|
-
activemodel (= 5.0.7)
|
109
|
-
activerecord (= 5.0.7)
|
110
|
-
activesupport (= 5.0.7)
|
111
|
-
bundler (>= 1.3.0)
|
112
|
-
railties (= 5.0.7)
|
113
|
-
sprockets-rails (>= 2.0.0)
|
114
|
-
rails-controller-testing (1.0.2)
|
115
|
-
actionpack (~> 5.x, >= 5.0.1)
|
116
|
-
actionview (~> 5.x, >= 5.0.1)
|
117
|
-
activesupport (~> 5.x)
|
118
|
-
rails-dom-testing (2.0.3)
|
119
|
-
activesupport (>= 4.2.0)
|
120
|
-
nokogiri (>= 1.6)
|
121
|
-
rails-html-sanitizer (1.0.4)
|
122
|
-
loofah (~> 2.2, >= 2.2.2)
|
123
|
-
railties (5.0.7)
|
124
|
-
actionpack (= 5.0.7)
|
125
|
-
activesupport (= 5.0.7)
|
126
|
-
method_source
|
127
|
-
rake (>= 0.8.7)
|
128
|
-
thor (>= 0.18.1, < 2.0)
|
129
|
-
rake (12.3.2)
|
130
|
-
sprockets (3.7.2)
|
131
|
-
concurrent-ruby (~> 1.0)
|
132
|
-
rack (> 1, < 3)
|
133
|
-
sprockets-rails (3.2.1)
|
134
|
-
actionpack (>= 4.0)
|
135
|
-
activesupport (>= 4.0)
|
136
|
-
sprockets (>= 3.0.0)
|
137
|
-
sqlite3 (1.3.13)
|
138
|
-
thor (0.20.3)
|
139
|
-
thread_safe (0.3.6)
|
140
|
-
tzinfo (1.2.5)
|
141
|
-
thread_safe (~> 0.1)
|
142
|
-
virtus (1.0.5)
|
143
|
-
axiom-types (~> 0.1)
|
144
|
-
coercible (~> 1.0)
|
145
|
-
descendants_tracker (~> 0.0, >= 0.0.3)
|
146
|
-
equalizer (~> 0.0, >= 0.0.9)
|
147
|
-
websocket-driver (0.6.5)
|
148
|
-
websocket-extensions (>= 0.1.0)
|
149
|
-
websocket-extensions (0.1.3)
|
150
|
-
|
151
|
-
PLATFORMS
|
152
|
-
ruby
|
153
|
-
|
154
|
-
DEPENDENCIES
|
155
|
-
ae_declarative_authorization!
|
156
|
-
appraisal (~> 2.1)
|
157
|
-
grape (= 1.1.0)
|
158
|
-
mocha (~> 1.0)
|
159
|
-
rails (= 5.0.7)
|
160
|
-
rails-controller-testing
|
161
|
-
sqlite3 (~> 1.3.0)
|
162
|
-
|
163
|
-
BUNDLED WITH
|
164
|
-
1.17.1
|