declare_schema 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.dependabot/config.yml +10 -0
- data/.github/workflows/gem_release.yml +38 -0
- data/.gitignore +14 -0
- data/.jenkins/Jenkinsfile +72 -0
- data/.jenkins/ruby_build_pod.yml +19 -0
- data/.rspec +2 -0
- data/.rubocop.yml +189 -0
- data/.ruby-version +1 -0
- data/Appraisals +14 -0
- data/CHANGELOG.md +11 -0
- data/Gemfile +24 -0
- data/Gemfile.lock +203 -0
- data/LICENSE.txt +22 -0
- data/README.md +11 -0
- data/Rakefile +56 -0
- data/bin/declare_schema +11 -0
- data/declare_schema.gemspec +25 -0
- data/gemfiles/.bundle/config +2 -0
- data/gemfiles/rails_4.gemfile +25 -0
- data/gemfiles/rails_5.gemfile +25 -0
- data/gemfiles/rails_6.gemfile +25 -0
- data/lib/declare_schema.rb +44 -0
- data/lib/declare_schema/command.rb +65 -0
- data/lib/declare_schema/extensions/active_record/fields_declaration.rb +28 -0
- data/lib/declare_schema/extensions/module.rb +36 -0
- data/lib/declare_schema/field_declaration_dsl.rb +40 -0
- data/lib/declare_schema/model.rb +242 -0
- data/lib/declare_schema/model/field_spec.rb +162 -0
- data/lib/declare_schema/model/index_spec.rb +175 -0
- data/lib/declare_schema/railtie.rb +12 -0
- data/lib/declare_schema/version.rb +5 -0
- data/lib/generators/declare_schema/migration/USAGE +47 -0
- data/lib/generators/declare_schema/migration/migration_generator.rb +184 -0
- data/lib/generators/declare_schema/migration/migrator.rb +567 -0
- data/lib/generators/declare_schema/migration/templates/migration.rb.erb +9 -0
- data/lib/generators/declare_schema/model/USAGE +19 -0
- data/lib/generators/declare_schema/model/model_generator.rb +12 -0
- data/lib/generators/declare_schema/model/templates/model_injection.rb.erb +25 -0
- data/lib/generators/declare_schema/support/eval_template.rb +21 -0
- data/lib/generators/declare_schema/support/model.rb +64 -0
- data/lib/generators/declare_schema/support/thor_shell.rb +39 -0
- data/spec/lib/declare_schema/field_declaration_dsl_spec.rb +28 -0
- data/spec/spec_helper.rb +28 -0
- data/test/api.rdoctest +136 -0
- data/test/doc-only.rdoctest +76 -0
- data/test/generators.rdoctest +60 -0
- data/test/interactive_primary_key.rdoctest +56 -0
- data/test/migration_generator.rdoctest +846 -0
- data/test/migration_generator_comments.rdoctestDISABLED +74 -0
- data/test/prepare_testapp.rb +15 -0
- data/test_responses.txt +2 -0
- metadata +109 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 5cf5ebc856041d2f6a90e4a6f30a56e5a538545f79b227cd2ca691eb99dcf9a8
|
4
|
+
data.tar.gz: 3d2b3efe4d0647f8c94052e2e8a22433a021503f458203e9f0f73d131d7c6225
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 4771090d9ef1dbe0267eddfa4ac7d2fc25dd37a9c75a8e76bdb27ea9a072aac894671dc8115387eb9489855f6849ff7cf4c1f2f4e82eb36039824fd83328f2f3
|
7
|
+
data.tar.gz: 7fc9feb7d02f2b71f11ec4c21f3624c3dc503df64c443f304b1d19f75d6a81102a86d0b27be3c32749a191f966440a88c54c86db260123cd2e6457bdacd474cf
|
@@ -0,0 +1,38 @@
|
|
1
|
+
---
|
2
|
+
on:
|
3
|
+
push:
|
4
|
+
tags:
|
5
|
+
- 'v*'
|
6
|
+
- '!v*.pre*'
|
7
|
+
|
8
|
+
name: Create Release
|
9
|
+
|
10
|
+
jobs:
|
11
|
+
build:
|
12
|
+
name: Create Release
|
13
|
+
runs-on: ubuntu-latest
|
14
|
+
steps:
|
15
|
+
- name: Get version from tag
|
16
|
+
id: tag_name
|
17
|
+
shell: bash
|
18
|
+
run: |
|
19
|
+
echo ::set-output name=current_version::${GITHUB_REF#refs/tags/v}
|
20
|
+
- name: Checkout code
|
21
|
+
uses: actions/checkout@v2
|
22
|
+
- name: Get Changelog Entry
|
23
|
+
id: changelog_reader
|
24
|
+
uses: mindsers/changelog-reader-action@v1
|
25
|
+
with:
|
26
|
+
version: ${{ steps.tag_name.outputs.current_version }}
|
27
|
+
path: ./CHANGELOG.md
|
28
|
+
- name: Create Release
|
29
|
+
id: create_release
|
30
|
+
uses: actions/create-release@v1
|
31
|
+
env:
|
32
|
+
GITHUB_TOKEN: ${{ secrets.GEM_RELEASE_GIT_TOKEN }}
|
33
|
+
with:
|
34
|
+
tag_name: ${{ github.ref }}
|
35
|
+
release_name: Release ${{ github.ref }}
|
36
|
+
body: ${{ steps.changelog_reader.outputs.log_entry }}
|
37
|
+
draft: false
|
38
|
+
prerelease: false
|
data/.gitignore
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
#!/usr/bin/groovy
|
2
|
+
@Library('jenkins-pipeline@v0.5.1')
|
3
|
+
import com.invoca.ci.*;
|
4
|
+
|
5
|
+
pipeline {
|
6
|
+
agent {
|
7
|
+
kubernetes {
|
8
|
+
defaultContainer 'ruby'
|
9
|
+
yamlFile '.jenkins/ruby_build_pod.yml'
|
10
|
+
}
|
11
|
+
}
|
12
|
+
|
13
|
+
environment {
|
14
|
+
GITHUB_TOKEN = credentials('github_token')
|
15
|
+
BUNDLE_GEM__FURY__IO = credentials('gemfury_deploy_token')
|
16
|
+
}
|
17
|
+
|
18
|
+
stages {
|
19
|
+
stage('Setup') {
|
20
|
+
steps {
|
21
|
+
updateGitHubStatus('clean-build', 'pending', "Running unit tests")
|
22
|
+
sh 'bundle install'
|
23
|
+
sh 'bundle exec appraisal install'
|
24
|
+
}
|
25
|
+
}
|
26
|
+
|
27
|
+
stage("Current Unit Tests") {
|
28
|
+
steps {
|
29
|
+
sh 'bundle exec rake test:prepare_testapp[force]'
|
30
|
+
sh 'bundle exec rake test:all < test_responses.txt'
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
stage("Rails 4 Appraisal") {
|
35
|
+
steps {
|
36
|
+
sh 'bundle exec appraisal rails-4 rake test:prepare_testapp[force]'
|
37
|
+
sh 'bundle exec appraisal rails-4 rake test:all < test_responses.txt'
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
stage("Rails 5 Appraisal") {
|
42
|
+
steps {
|
43
|
+
sh 'bundle exec appraisal rails-5 rake test:prepare_testapp[force]'
|
44
|
+
sh 'bundle exec appraisal rails-5 rake test:all < test_responses.txt'
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
stage("Rails 6 Appraisal") {
|
49
|
+
steps {
|
50
|
+
sh 'bundle exec appraisal rails-6 rake test:prepare_testapp[force]'
|
51
|
+
sh 'bundle exec appraisal rails-6 rake test:all < test_responses.txt'
|
52
|
+
}
|
53
|
+
}
|
54
|
+
}
|
55
|
+
|
56
|
+
post {
|
57
|
+
success { updateGitHubStatus('clean-build', 'success', "Unit tests passed") }
|
58
|
+
failure { updateGitHubStatus('clean-build', 'failure', "Unit tests failed") }
|
59
|
+
}
|
60
|
+
}
|
61
|
+
|
62
|
+
void updateGitHubStatus(String context, String status, String description) {
|
63
|
+
gitHubStatus([
|
64
|
+
repoSlug: 'Invoca/declare_schema',
|
65
|
+
sha: env.GIT_COMMIT,
|
66
|
+
description: description,
|
67
|
+
context: context,
|
68
|
+
targetURL: env.RUN_DISPLAY_URL,
|
69
|
+
token: env.GITHUB_TOKEN,
|
70
|
+
status: status
|
71
|
+
])
|
72
|
+
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
|
2
|
+
---
|
3
|
+
apiVersion: v1
|
4
|
+
kind: Pod
|
5
|
+
metadata:
|
6
|
+
labels:
|
7
|
+
jenkins/declare_schema: 'true'
|
8
|
+
namespace: jenkins
|
9
|
+
name: declare_schema
|
10
|
+
spec:
|
11
|
+
containers:
|
12
|
+
- name: ruby
|
13
|
+
image: ruby:2.6.5
|
14
|
+
tty: true
|
15
|
+
resources:
|
16
|
+
requests:
|
17
|
+
memory: "100Mi"
|
18
|
+
command:
|
19
|
+
- cat
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,189 @@
|
|
1
|
+
# Examples of how to specifically exclude certain things
|
2
|
+
AllCops:
|
3
|
+
TargetRubyVersion: 2.6.1
|
4
|
+
Exclude:
|
5
|
+
- '**/*.yml'
|
6
|
+
- '**/*.sql'
|
7
|
+
- 'config/**/*'
|
8
|
+
- 'vendor/bundle/**/*'
|
9
|
+
- 'vendor/gems/**/*'
|
10
|
+
- 'node_modules/**/*'
|
11
|
+
- 'db/migrate/**/*.rb'
|
12
|
+
- '**/db/migrate/**/*.rb'
|
13
|
+
- '**/db/schema.rb'
|
14
|
+
- !ruby/regexp /old_and_unused\.rb$/
|
15
|
+
|
16
|
+
# Configure cops for styles that we do not adhere to or are not agreed upon
|
17
|
+
# Default settings and options can be viewed here: https://raw.githubusercontent.com/bbatsov/rubocop/master/config/default.yml
|
18
|
+
# Please add new configurations in alphabetical order
|
19
|
+
|
20
|
+
Layout/AccessModifierIndentation:
|
21
|
+
IndentationWidth: 2
|
22
|
+
|
23
|
+
Layout/HashAlignment:
|
24
|
+
Enabled: false
|
25
|
+
|
26
|
+
Layout/EmptyLinesAroundClassBody:
|
27
|
+
Enabled: false
|
28
|
+
|
29
|
+
Layout/EndOfLine:
|
30
|
+
Enabled: false
|
31
|
+
|
32
|
+
Layout/ExtraSpacing:
|
33
|
+
Enabled: false
|
34
|
+
|
35
|
+
Layout/HeredocIndentation:
|
36
|
+
EnforcedStyle: unindent
|
37
|
+
|
38
|
+
Layout/MultilineMethodCallIndentation:
|
39
|
+
EnforcedStyle: indented_relative_to_receiver
|
40
|
+
|
41
|
+
Layout/SpaceBeforeFirstArg:
|
42
|
+
Enabled: false
|
43
|
+
|
44
|
+
Layout/SpaceInsideBlockBraces:
|
45
|
+
EnforcedStyleForEmptyBraces: space
|
46
|
+
|
47
|
+
Lint/AmbiguousRegexpLiteral:
|
48
|
+
Enabled: false
|
49
|
+
|
50
|
+
Lint/AmbiguousBlockAssociation:
|
51
|
+
Enabled: false
|
52
|
+
|
53
|
+
Metrics/AbcSize:
|
54
|
+
Max: 25
|
55
|
+
|
56
|
+
Metrics/BlockLength:
|
57
|
+
Exclude:
|
58
|
+
- 'Rakefile'
|
59
|
+
- '**/*.rake'
|
60
|
+
- '**/*_test.rb'
|
61
|
+
# Autobahn - RSpec relies on large blocks
|
62
|
+
- '**/*_spec.rb'
|
63
|
+
|
64
|
+
Metrics/ClassLength:
|
65
|
+
Max: 200
|
66
|
+
Exclude:
|
67
|
+
- '**/*_test.rb'
|
68
|
+
|
69
|
+
Metrics/CyclomaticComplexity:
|
70
|
+
Max: 10
|
71
|
+
|
72
|
+
Metrics/LineLength:
|
73
|
+
Max: 150
|
74
|
+
Exclude:
|
75
|
+
- '**/*_test.rb'
|
76
|
+
|
77
|
+
Metrics/MethodLength:
|
78
|
+
Max: 20
|
79
|
+
|
80
|
+
Metrics/ModuleLength:
|
81
|
+
Max: 200
|
82
|
+
|
83
|
+
Metrics/ParameterLists:
|
84
|
+
Max: 10
|
85
|
+
|
86
|
+
Metrics/PerceivedComplexity:
|
87
|
+
Max: 10
|
88
|
+
|
89
|
+
Naming/HeredocDelimiterNaming:
|
90
|
+
Enabled: false
|
91
|
+
|
92
|
+
Naming/RescuedExceptionsVariableName:
|
93
|
+
Enabled: true
|
94
|
+
PreferredName: 'ex'
|
95
|
+
|
96
|
+
Naming/VariableNumber:
|
97
|
+
Enabled: false
|
98
|
+
|
99
|
+
Style/AndOr:
|
100
|
+
EnforcedStyle: conditionals
|
101
|
+
|
102
|
+
Style/ClassAndModuleChildren:
|
103
|
+
Enabled: true
|
104
|
+
|
105
|
+
# Mapping of methods to prefer, alternate => preferred
|
106
|
+
Style/CollectionMethods:
|
107
|
+
Enabled: true
|
108
|
+
PreferredMethods:
|
109
|
+
collect: 'map'
|
110
|
+
collect!: 'map!'
|
111
|
+
inject: 'reduce'
|
112
|
+
detect: 'find'
|
113
|
+
find_all: 'select'
|
114
|
+
length: 'size'
|
115
|
+
|
116
|
+
Style/CommentedKeyword:
|
117
|
+
Enabled: false
|
118
|
+
|
119
|
+
Style/Documentation:
|
120
|
+
Enabled: false
|
121
|
+
|
122
|
+
Style/DoubleNegation:
|
123
|
+
Enabled: false
|
124
|
+
|
125
|
+
Style/EachWithObject:
|
126
|
+
Enabled: false
|
127
|
+
|
128
|
+
Style/EmptyMethod:
|
129
|
+
Enabled: false
|
130
|
+
|
131
|
+
Style/FormatStringToken:
|
132
|
+
EnforcedStyle: template
|
133
|
+
|
134
|
+
Style/GuardClause:
|
135
|
+
Enabled: false
|
136
|
+
|
137
|
+
Style/HashSyntax:
|
138
|
+
EnforcedStyle: ruby19_no_mixed_keys
|
139
|
+
|
140
|
+
Style/IfUnlessModifier:
|
141
|
+
Enabled: false
|
142
|
+
|
143
|
+
Style/NegatedIf:
|
144
|
+
Enabled: false
|
145
|
+
|
146
|
+
Style/Lambda:
|
147
|
+
EnforcedStyle: literal
|
148
|
+
|
149
|
+
Style/Next:
|
150
|
+
Enabled: false
|
151
|
+
|
152
|
+
Style/NumericLiterals:
|
153
|
+
MinDigits: 9
|
154
|
+
|
155
|
+
Style/NumericPredicate:
|
156
|
+
Enabled: false
|
157
|
+
|
158
|
+
Style/ParallelAssignment:
|
159
|
+
Enabled: false
|
160
|
+
|
161
|
+
Style/PreferredHashMethods:
|
162
|
+
Enabled: false
|
163
|
+
|
164
|
+
Style/RegexpLiteral:
|
165
|
+
Enabled: false
|
166
|
+
|
167
|
+
Style/RescueStandardError:
|
168
|
+
Enabled: false
|
169
|
+
|
170
|
+
Style/SignalException:
|
171
|
+
Enabled: false
|
172
|
+
|
173
|
+
Style/StringLiterals:
|
174
|
+
Enabled: false
|
175
|
+
|
176
|
+
Style/SymbolArray:
|
177
|
+
Enabled: false
|
178
|
+
|
179
|
+
Style/TrailingCommaInArrayLiteral:
|
180
|
+
Enabled: false
|
181
|
+
|
182
|
+
Style/TrailingCommaInHashLiteral:
|
183
|
+
Enabled: false
|
184
|
+
|
185
|
+
Style/TrailingUnderscoreVariable:
|
186
|
+
Enabled: false
|
187
|
+
|
188
|
+
Style/WordArray:
|
189
|
+
EnforcedStyle: brackets
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.6.5
|
data/Appraisals
ADDED
data/CHANGELOG.md
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
# CHANGELOG for `declarative_schema`
|
2
|
+
|
3
|
+
Inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
4
|
+
|
5
|
+
Note: this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
## [0.1.0] - Unreleased
|
8
|
+
### Added
|
9
|
+
- Initial version from https://github.com/Invoca/declare_schema v4.0.0.
|
10
|
+
|
11
|
+
[0.1.0]: https://github.com/Invoca/declarative_schema/tree/v0.1.0
|
data/Gemfile
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
source 'https://gem.fury.io/invoca'
|
5
|
+
|
6
|
+
gemspec
|
7
|
+
|
8
|
+
group :testapp do
|
9
|
+
gem 'bootsnap', '>= 1.1.0', require: false
|
10
|
+
gem 'listen'
|
11
|
+
end
|
12
|
+
|
13
|
+
gem 'appraisal'
|
14
|
+
gem 'bundler', '< 2'
|
15
|
+
gem "climate_control", '~> 0.2'
|
16
|
+
gem 'pry'
|
17
|
+
gem 'pry-byebug'
|
18
|
+
gem 'rails', '~> 5.2', '>= 5.2.4.3'
|
19
|
+
gem 'responders'
|
20
|
+
gem 'rspec'
|
21
|
+
gem 'rubocop'
|
22
|
+
gem 'rubydoctest'
|
23
|
+
gem 'sqlite3'
|
24
|
+
gem 'yard'
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,203 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
declare_schema (0.1.0)
|
5
|
+
rails (>= 4.2)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
remote: https://gem.fury.io/invoca/
|
10
|
+
specs:
|
11
|
+
actioncable (5.2.4.4)
|
12
|
+
actionpack (= 5.2.4.4)
|
13
|
+
nio4r (~> 2.0)
|
14
|
+
websocket-driver (>= 0.6.1)
|
15
|
+
actionmailer (5.2.4.4)
|
16
|
+
actionpack (= 5.2.4.4)
|
17
|
+
actionview (= 5.2.4.4)
|
18
|
+
activejob (= 5.2.4.4)
|
19
|
+
mail (~> 2.5, >= 2.5.4)
|
20
|
+
rails-dom-testing (~> 2.0)
|
21
|
+
actionpack (5.2.4.4)
|
22
|
+
actionview (= 5.2.4.4)
|
23
|
+
activesupport (= 5.2.4.4)
|
24
|
+
rack (~> 2.0, >= 2.0.8)
|
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.4.4)
|
29
|
+
activesupport (= 5.2.4.4)
|
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.4.4)
|
35
|
+
activesupport (= 5.2.4.4)
|
36
|
+
globalid (>= 0.3.6)
|
37
|
+
activemodel (5.2.4.4)
|
38
|
+
activesupport (= 5.2.4.4)
|
39
|
+
activerecord (5.2.4.4)
|
40
|
+
activemodel (= 5.2.4.4)
|
41
|
+
activesupport (= 5.2.4.4)
|
42
|
+
arel (>= 9.0)
|
43
|
+
activestorage (5.2.4.4)
|
44
|
+
actionpack (= 5.2.4.4)
|
45
|
+
activerecord (= 5.2.4.4)
|
46
|
+
marcel (~> 0.3.1)
|
47
|
+
activesupport (5.2.4.4)
|
48
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
49
|
+
i18n (>= 0.7, < 2)
|
50
|
+
minitest (~> 5.1)
|
51
|
+
tzinfo (~> 1.1)
|
52
|
+
appraisal (2.3.0)
|
53
|
+
bundler
|
54
|
+
rake
|
55
|
+
thor (>= 0.14.0)
|
56
|
+
arel (9.0.0)
|
57
|
+
ast (2.4.1)
|
58
|
+
bootsnap (1.4.8)
|
59
|
+
msgpack (~> 1.0)
|
60
|
+
builder (3.2.4)
|
61
|
+
byebug (11.1.3)
|
62
|
+
climate_control (0.2.0)
|
63
|
+
coderay (1.1.3)
|
64
|
+
concurrent-ruby (1.1.7)
|
65
|
+
crass (1.0.6)
|
66
|
+
diff-lcs (1.4.4)
|
67
|
+
erubi (1.9.0)
|
68
|
+
ffi (1.13.1)
|
69
|
+
globalid (0.4.2)
|
70
|
+
activesupport (>= 4.2.0)
|
71
|
+
i18n (1.8.5)
|
72
|
+
concurrent-ruby (~> 1.0)
|
73
|
+
listen (3.2.1)
|
74
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
75
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
76
|
+
loofah (2.7.0)
|
77
|
+
crass (~> 1.0.2)
|
78
|
+
nokogiri (>= 1.5.9)
|
79
|
+
mail (2.7.1)
|
80
|
+
mini_mime (>= 0.1.1)
|
81
|
+
marcel (0.3.3)
|
82
|
+
mimemagic (~> 0.3.2)
|
83
|
+
method_source (1.0.0)
|
84
|
+
mimemagic (0.3.5)
|
85
|
+
mini_mime (1.0.2)
|
86
|
+
mini_portile2 (2.4.0)
|
87
|
+
minitest (5.14.2)
|
88
|
+
msgpack (1.3.3)
|
89
|
+
nio4r (2.5.4)
|
90
|
+
nokogiri (1.10.10)
|
91
|
+
mini_portile2 (~> 2.4.0)
|
92
|
+
parallel (1.19.2)
|
93
|
+
parser (2.7.1.4)
|
94
|
+
ast (~> 2.4.1)
|
95
|
+
pry (0.13.1)
|
96
|
+
coderay (~> 1.1)
|
97
|
+
method_source (~> 1.0)
|
98
|
+
pry-byebug (3.9.0)
|
99
|
+
byebug (~> 11.0)
|
100
|
+
pry (~> 0.13.0)
|
101
|
+
rack (2.2.3)
|
102
|
+
rack-test (1.1.0)
|
103
|
+
rack (>= 1.0, < 3)
|
104
|
+
rails (5.2.4.4)
|
105
|
+
actioncable (= 5.2.4.4)
|
106
|
+
actionmailer (= 5.2.4.4)
|
107
|
+
actionpack (= 5.2.4.4)
|
108
|
+
actionview (= 5.2.4.4)
|
109
|
+
activejob (= 5.2.4.4)
|
110
|
+
activemodel (= 5.2.4.4)
|
111
|
+
activerecord (= 5.2.4.4)
|
112
|
+
activestorage (= 5.2.4.4)
|
113
|
+
activesupport (= 5.2.4.4)
|
114
|
+
bundler (>= 1.3.0)
|
115
|
+
railties (= 5.2.4.4)
|
116
|
+
sprockets-rails (>= 2.0.0)
|
117
|
+
rails-dom-testing (2.0.3)
|
118
|
+
activesupport (>= 4.2.0)
|
119
|
+
nokogiri (>= 1.6)
|
120
|
+
rails-html-sanitizer (1.3.0)
|
121
|
+
loofah (~> 2.3)
|
122
|
+
railties (5.2.4.4)
|
123
|
+
actionpack (= 5.2.4.4)
|
124
|
+
activesupport (= 5.2.4.4)
|
125
|
+
method_source
|
126
|
+
rake (>= 0.8.7)
|
127
|
+
thor (>= 0.19.0, < 2.0)
|
128
|
+
rainbow (3.0.0)
|
129
|
+
rake (13.0.1)
|
130
|
+
rb-fsevent (0.10.4)
|
131
|
+
rb-inotify (0.10.1)
|
132
|
+
ffi (~> 1.0)
|
133
|
+
regexp_parser (1.8.0)
|
134
|
+
responders (3.0.1)
|
135
|
+
actionpack (>= 5.0)
|
136
|
+
railties (>= 5.0)
|
137
|
+
rexml (3.2.4)
|
138
|
+
rspec (3.9.0)
|
139
|
+
rspec-core (~> 3.9.0)
|
140
|
+
rspec-expectations (~> 3.9.0)
|
141
|
+
rspec-mocks (~> 3.9.0)
|
142
|
+
rspec-core (3.9.2)
|
143
|
+
rspec-support (~> 3.9.3)
|
144
|
+
rspec-expectations (3.9.2)
|
145
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
146
|
+
rspec-support (~> 3.9.0)
|
147
|
+
rspec-mocks (3.9.1)
|
148
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
149
|
+
rspec-support (~> 3.9.0)
|
150
|
+
rspec-support (3.9.3)
|
151
|
+
rubocop (0.91.0)
|
152
|
+
parallel (~> 1.10)
|
153
|
+
parser (>= 2.7.1.1)
|
154
|
+
rainbow (>= 2.2.2, < 4.0)
|
155
|
+
regexp_parser (>= 1.7)
|
156
|
+
rexml
|
157
|
+
rubocop-ast (>= 0.4.0, < 1.0)
|
158
|
+
ruby-progressbar (~> 1.7)
|
159
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
160
|
+
rubocop-ast (0.4.2)
|
161
|
+
parser (>= 2.7.1.4)
|
162
|
+
ruby-progressbar (1.10.1)
|
163
|
+
rubydoctest (1.1.5)
|
164
|
+
sprockets (4.0.2)
|
165
|
+
concurrent-ruby (~> 1.0)
|
166
|
+
rack (> 1, < 3)
|
167
|
+
sprockets-rails (3.2.2)
|
168
|
+
actionpack (>= 4.0)
|
169
|
+
activesupport (>= 4.0)
|
170
|
+
sprockets (>= 3.0.0)
|
171
|
+
sqlite3 (1.4.2)
|
172
|
+
thor (1.0.1)
|
173
|
+
thread_safe (0.3.6)
|
174
|
+
tzinfo (1.2.7)
|
175
|
+
thread_safe (~> 0.1)
|
176
|
+
unicode-display_width (1.7.0)
|
177
|
+
websocket-driver (0.7.3)
|
178
|
+
websocket-extensions (>= 0.1.0)
|
179
|
+
websocket-extensions (0.1.5)
|
180
|
+
yard (0.9.25)
|
181
|
+
|
182
|
+
PLATFORMS
|
183
|
+
ruby
|
184
|
+
|
185
|
+
DEPENDENCIES
|
186
|
+
appraisal
|
187
|
+
bootsnap (>= 1.1.0)
|
188
|
+
bundler (< 2)
|
189
|
+
climate_control (~> 0.2)
|
190
|
+
declare_schema!
|
191
|
+
listen
|
192
|
+
pry
|
193
|
+
pry-byebug
|
194
|
+
rails (~> 5.2, >= 5.2.4.3)
|
195
|
+
responders
|
196
|
+
rspec
|
197
|
+
rubocop
|
198
|
+
rubydoctest
|
199
|
+
sqlite3
|
200
|
+
yard
|
201
|
+
|
202
|
+
BUNDLED WITH
|
203
|
+
1.17.3
|