git_models 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. checksums.yaml +7 -0
  2. data/.dependabot/config.yml +10 -0
  3. data/.github/workflows/gem_release.yml +37 -0
  4. data/.gitignore +61 -0
  5. data/.jenkins/Jenkinsfile +80 -0
  6. data/.jenkins/ruby_build_pod.yml +18 -0
  7. data/.rspec +3 -0
  8. data/.rubocop.yml +51 -0
  9. data/Appraisals +14 -0
  10. data/CHANGELOG.md +25 -0
  11. data/Gemfile +25 -0
  12. data/Gemfile.lock +237 -0
  13. data/README.md +6 -0
  14. data/Rakefile +28 -0
  15. data/app/models/concerns/branch.rb +55 -0
  16. data/app/models/concerns/commit.rb +44 -0
  17. data/app/models/concerns/repository.rb +28 -0
  18. data/app/models/concerns/user.rb +33 -0
  19. data/gemfiles/.bundle/config +2 -0
  20. data/gemfiles/rails_4.gemfile +26 -0
  21. data/gemfiles/rails_5.gemfile +26 -0
  22. data/gemfiles/rails_6.gemfile +26 -0
  23. data/git_models.gemspec +27 -0
  24. data/lib/git_models.rb +6 -0
  25. data/lib/git_models/test_helpers.rb +60 -0
  26. data/lib/git_models/version.rb +5 -0
  27. data/spec/dummy/Rakefile +6 -0
  28. data/spec/dummy/app/assets/config/manifest.js +3 -0
  29. data/spec/dummy/app/assets/javascripts/application.js +16 -0
  30. data/spec/dummy/app/assets/javascripts/cable.js +13 -0
  31. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  32. data/spec/dummy/app/controllers/application_controller.rb +4 -0
  33. data/spec/dummy/app/helpers/application_helper.rb +4 -0
  34. data/spec/dummy/app/models/application_record.rb +7 -0
  35. data/spec/dummy/app/models/branch.rb +8 -0
  36. data/spec/dummy/app/models/commit.rb +8 -0
  37. data/spec/dummy/app/models/repository.rb +8 -0
  38. data/spec/dummy/app/models/user.rb +8 -0
  39. data/spec/dummy/app/views/layouts/application.html.erb +15 -0
  40. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  41. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  42. data/spec/dummy/bin/bundle +3 -0
  43. data/spec/dummy/bin/rails +4 -0
  44. data/spec/dummy/bin/rake +4 -0
  45. data/spec/dummy/bin/setup +36 -0
  46. data/spec/dummy/bin/spring +16 -0
  47. data/spec/dummy/bin/update +31 -0
  48. data/spec/dummy/bin/yarn +11 -0
  49. data/spec/dummy/config.ru +7 -0
  50. data/spec/dummy/config/application.rb +25 -0
  51. data/spec/dummy/config/boot.rb +5 -0
  52. data/spec/dummy/config/credentials.yml.enc +1 -0
  53. data/spec/dummy/config/database.yml +27 -0
  54. data/spec/dummy/config/environment.rb +8 -0
  55. data/spec/dummy/config/environments/development.rb +63 -0
  56. data/spec/dummy/config/environments/production.rb +96 -0
  57. data/spec/dummy/config/environments/test.rb +55 -0
  58. data/spec/dummy/config/initializers/application_controller_renderer.rb +10 -0
  59. data/spec/dummy/config/initializers/assets.rb +16 -0
  60. data/spec/dummy/config/initializers/backtrace_silencers.rb +9 -0
  61. data/spec/dummy/config/initializers/content_security_policy.rb +27 -0
  62. data/spec/dummy/config/initializers/cookies_serializer.rb +7 -0
  63. data/spec/dummy/config/initializers/filter_parameter_logging.rb +6 -0
  64. data/spec/dummy/config/initializers/inflections.rb +18 -0
  65. data/spec/dummy/config/initializers/mime_types.rb +6 -0
  66. data/spec/dummy/config/initializers/session_store.rb +5 -0
  67. data/spec/dummy/config/initializers/wrap_parameters.rb +16 -0
  68. data/spec/dummy/config/locales/en.yml +33 -0
  69. data/spec/dummy/config/puma.rb +39 -0
  70. data/spec/dummy/config/routes.rb +5 -0
  71. data/spec/dummy/config/spring.rb +8 -0
  72. data/spec/dummy/config/storage.yml +34 -0
  73. data/spec/dummy/db/migrate/20161123065534_create_users_table.rb +16 -0
  74. data/spec/dummy/db/migrate/20161123184217_create_commits_repositories_branches.rb +37 -0
  75. data/spec/dummy/db/schema.rb +53 -0
  76. data/spec/dummy/spec/models/branch_spec.rb +84 -0
  77. data/spec/dummy/spec/models/commit_spec.rb +60 -0
  78. data/spec/dummy/spec/models/user_spec.rb +64 -0
  79. data/spec/dummy/spec/spec_helper.rb +48 -0
  80. metadata +231 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 1d3f0dbab9cfa5ce373715146b02ec6aa66618add3c01da78627feef9f3e82fa
4
+ data.tar.gz: e59fde19927d7f30f7f36600477f181c0a89851f26daa16c415879d528702a0d
5
+ SHA512:
6
+ metadata.gz: e5b0d6eb382fbaeeca570a1ecf382e6eff23eefbee5b44a07852eab01ca178a80aee33b5ed4b2f756f2bb362d2865fba85f07678a181f3ad169adc4bf8a0cec6
7
+ data.tar.gz: 19d91e0e42cefb7bb81d2d646c1d14b89e7c10a8d4af57037d07e40ed9005164bb8b55eaa2704e5f371dbbcaa7828f62b9f5d316acbd83c3a6201904859ec7cc
@@ -0,0 +1,10 @@
1
+ ---
2
+ version: 1
3
+ update_configs:
4
+ - package_manager: "ruby:bundler"
5
+ directory: "/"
6
+ update_schedule: "weekly"
7
+ version_requirement_updates: "off"
8
+ commit_message:
9
+ prefix: "No-Jira"
10
+ include_scope: true
@@ -0,0 +1,37 @@
1
+ ---
2
+ on:
3
+ push:
4
+ tags:
5
+ - 'v*'
6
+
7
+ name: Create Release
8
+
9
+ jobs:
10
+ build:
11
+ name: Create Release
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Get version from tag
15
+ id: tag_name
16
+ shell: bash
17
+ run: |
18
+ echo ::set-output name=current_version::${GITHUB_REF#refs/tags/v}
19
+ - name: Checkout code
20
+ uses: actions/checkout@v2
21
+ - name: Get Changelog Entry
22
+ id: changelog_reader
23
+ uses: mindsers/changelog-reader-action@v1
24
+ with:
25
+ version: ${{ steps.tag_name.outputs.current_version }}
26
+ path: ./CHANGELOG.md
27
+ - name: Create Release
28
+ id: create_release
29
+ uses: actions/create-release@v1
30
+ env:
31
+ GITHUB_TOKEN: ${{ secrets.GEM_RELEASE_GIT_TOKEN }}
32
+ with:
33
+ tag_name: ${{ github.ref }}
34
+ release_name: Release ${{ github.ref }}
35
+ body: ${{ steps.changelog_reader.outputs.log_entry }}
36
+ draft: false
37
+ prerelease: false
@@ -0,0 +1,61 @@
1
+ *.gem
2
+ *.rbc
3
+ /*.pem
4
+ /.config
5
+ /coverage/
6
+ /InstalledFiles
7
+ /pkg/
8
+ /spec/reports/
9
+ /spec/dummy/spec/reports
10
+ /test/tmp/
11
+ /spec/dummy/tmp
12
+ /test/version_tmp/
13
+ /tmp/
14
+ *secrets*
15
+ /shared/
16
+ docker-secrets.env
17
+
18
+ ## Specific to RubyMotion:
19
+ .dat*
20
+ .repl_history
21
+ build/
22
+ shared/
23
+
24
+ ## Documentation cache and generated files:
25
+ /.yardoc/
26
+ /_yardoc/
27
+ /doc/
28
+ /rdoc/
29
+
30
+ ## Environment normalisation:
31
+ /.bundle/
32
+ /vendor/bundle
33
+ /lib/bundler/man/
34
+
35
+ # for a library or gem, you might want to ignore these files since the code is
36
+ # intended to run in multiple environments; otherwise, check them in:
37
+ # Gemfile.lock
38
+ # .ruby-version
39
+ # .ruby-gemset
40
+
41
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
42
+ .rvmrc
43
+
44
+ # rubymine
45
+ .idea
46
+
47
+ .keep
48
+
49
+ # mac
50
+ .DS_Store
51
+
52
+ # Ignore all logfiles and tempfiles.
53
+ /log/*
54
+ !/log/.keep
55
+ /tmp
56
+ /log
57
+ /spec/dummy/db/*.sqlite3
58
+ /spec/dummy/log/*
59
+ /spec/dummy/coverage/*
60
+
61
+ gemfiles/*.lock
@@ -0,0 +1,80 @@
1
+ #!/usr/bin/groovy
2
+ @Library('jenkins-pipeline@v0.4.5')
3
+ import com.invoca.docker.*;
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('Appraisals') {
28
+ parallel {
29
+ stage('Current') {
30
+ environment { JUNIT_OUTPUT = 'spec/reports/current/rspec.xml'
31
+ DATABASE_SUFFIX = 'current' }
32
+ steps { sh 'bundle exec rake db:test:prepare && \
33
+ bundle exec rake' }
34
+ post { always { junit JUNIT_OUTPUT } }
35
+ }
36
+
37
+ stage('Rails 4') {
38
+ environment { JUNIT_OUTPUT = 'spec/reports/rails-4/rspec.xml'
39
+ DATABASE_SUFFIX = 'rails-4' }
40
+ steps { sh 'bundle exec appraisal rails-4 rake db:test:prepare && \
41
+ bundle exec appraisal rails-4 rake' }
42
+ post { always { junit JUNIT_OUTPUT } }
43
+ }
44
+
45
+ stage('Rails 5') {
46
+ environment { JUNIT_OUTPUT = 'spec/reports/rails-5/rspec.xml'
47
+ DATABASE_SUFFIX = 'rails-5' }
48
+ steps { sh 'bundle exec appraisal rails-5 rake db:test:prepare && \
49
+ bundle exec appraisal rails-5 rake' }
50
+ post { always { junit JUNIT_OUTPUT } }
51
+ }
52
+
53
+ stage('Rails 6') {
54
+ environment { JUNIT_OUTPUT = 'spec/reports/rails-6/rspec.xml'
55
+ DATABASE_SUFFIX = 'rails-6' }
56
+ steps { sh 'bundle exec appraisal rails-5 rake db:test:prepare && \
57
+ bundle exec appraisal rails-5 rake' }
58
+ post { always { junit JUNIT_OUTPUT } }
59
+ }
60
+ }
61
+ }
62
+ }
63
+
64
+ post {
65
+ success { updateGitHubStatus('clean-build', 'success', 'Unit tests passed') }
66
+ failure { updateGitHubStatus('clean-build', 'failure', 'Unit tests failed') }
67
+ }
68
+ }
69
+
70
+ void updateGitHubStatus(String context, String status, String description) {
71
+ gitHubStatus([
72
+ repoSlug: 'Invoca/git_models',
73
+ sha: env.GIT_COMMIT,
74
+ description: description,
75
+ context: context,
76
+ targetURL: env.RUN_DISPLAY_URL,
77
+ token: env.GITHUB_TOKEN,
78
+ status: status
79
+ ])
80
+ }
@@ -0,0 +1,18 @@
1
+ ---
2
+ apiVersion: v1
3
+ kind: Pod
4
+ metadata:
5
+ labels:
6
+ jenkins/git-models: 'true'
7
+ namespace: jenkins
8
+ name: git-models
9
+ spec:
10
+ containers:
11
+ - name: ruby
12
+ image: ruby:2.6.1
13
+ tty: true
14
+ resources:
15
+ requests:
16
+ memory: "100Mi"
17
+ command:
18
+ - cat
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --require dummy/spec/spec_helper
2
+ --color
3
+ --format progress
@@ -0,0 +1,51 @@
1
+ require: rubocop-rspec
2
+
3
+ Metrics/LineLength:
4
+ Max: 120
5
+ Style/Lambda:
6
+ Enabled: false
7
+ Style/Documentation:
8
+ Enabled: false
9
+ Style/IfUnlessModifier:
10
+ Enabled: false
11
+ Style/GuardClause:
12
+ Enabled: false
13
+ Metrics/MethodLength:
14
+ Enabled: false
15
+ Metrics/ClassLength:
16
+ Enabled: false
17
+ Metrics/CyclomaticComplexity:
18
+ Enabled: false
19
+ Metrics/AbcSize:
20
+ Enabled: false
21
+ Metrics/PerceivedComplexity:
22
+ Enabled: false
23
+ RSpec/InstanceVariable:
24
+ Enabled: false
25
+ RSpec/ExampleLength:
26
+ Enabled: false
27
+ RSpec/AnyInstance:
28
+ Enabled: false
29
+ Style/RegexpLiteral:
30
+ Enabled: false
31
+ Style/WordArray:
32
+ Enabled: false
33
+ RSpec/DescribeClass:
34
+ Enabled: false
35
+ RSpec/DescribedClass:
36
+ Enabled: false
37
+ Style/NumericLiterals:
38
+ Enabled: false
39
+ Metrics/ParameterLists:
40
+ Enabled: false
41
+ RSpec/MultipleExpectations:
42
+ Enabled: false
43
+ AllCops:
44
+ Include:
45
+ - '**/*.rb'
46
+ Exclude:
47
+ - 'spec/dummy/db/migrate/**/*'
48
+ - 'spec/dummy/config/**/*'
49
+ - 'spec/dummy/bin/**/*'
50
+ - 'spec/dummy/db/schema.rb'
51
+ - 'vendor/**/*'
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ appraise 'rails-4' do
4
+ gem 'rails', '~> 4.2'
5
+ end
6
+
7
+ appraise 'rails-5' do
8
+ gem 'rails', '~> 5.2'
9
+ end
10
+
11
+ appraise 'rails-6' do
12
+ gem 'rails', '~> 6.0'
13
+ gem 'sqlite3', '~> 1.4'
14
+ end
@@ -0,0 +1,25 @@
1
+ # CHANGELOG for `git_models`
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
+ ## [1.2.0] - 2020-07-13
8
+ ### Added
9
+ - Add support for Rails 5 and 6.
10
+ - Add Appraisal and Jenkinsfile to test Rails 4, 5, 6.
11
+
12
+ ### Changed
13
+ - Modernize gemspec and Gemfile some more.
14
+ - Allow Activesupport > 4.
15
+
16
+ ## [1.1.1] - 2020-06-23
17
+ ### Changed
18
+ - Allow Rails '~> 4.2'.
19
+ - Clean up gemspec and Gemfile; bundle update.
20
+ - Add magic frozen_string_literal: true comment everywhere.
21
+ - Get rubocop running again.
22
+ - Clean up Rakefile.
23
+
24
+ [1.2.0]: https://github.com/Invoca/git_models/compare/v1.1.1...v1.2.0
25
+ [1.1.1]: https://github.com/Invoca/git_models/compare/v1.1.0...v1.1.1
data/Gemfile ADDED
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gemspec
6
+
7
+ gem 'appraisal'
8
+ gem 'bundler', '~> 1.17'
9
+ gem 'bundler-audit', require: false
10
+ gem 'climate_control'
11
+ gem 'coveralls', require: false
12
+ gem 'database_cleaner'
13
+ gem 'git_lib', '~> 1.2', git: 'https://github.com/Invoca/git_lib.git', ref: 'a4a4b46ba00d85df4ca907c960ddf92a85a8c169'
14
+ gem 'hobo_fields', '~> 3.0', git: 'https://github.com/Invoca/hobo_fields.git', ref: 'e9623e9c3aa98a4822ef61d1f1e87d0ff8001ffc'
15
+ gem 'pry'
16
+ gem 'rails', '>= 4.2'
17
+ gem 'rake'
18
+ gem 'rspec', '~> 3.5'
19
+ gem 'rspec-core'
20
+ gem 'rspec_junit_formatter'
21
+ gem 'rspec-rails'
22
+ gem 'rubocop', '~> 0.45.0', require: false
23
+ gem 'rubocop-rspec', require: false
24
+ gem 'sqlite3', '~> 1.3.6'
25
+ gem 'tzinfo-data'
@@ -0,0 +1,237 @@
1
+ GIT
2
+ remote: https://github.com/Invoca/git_lib.git
3
+ revision: a4a4b46ba00d85df4ca907c960ddf92a85a8c169
4
+ ref: a4a4b46ba00d85df4ca907c960ddf92a85a8c169
5
+ specs:
6
+ git_lib (1.2.0)
7
+ activesupport (>= 4.2, < 7)
8
+
9
+ GIT
10
+ remote: https://github.com/Invoca/hobo_fields.git
11
+ revision: e9623e9c3aa98a4822ef61d1f1e87d0ff8001ffc
12
+ ref: e9623e9c3aa98a4822ef61d1f1e87d0ff8001ffc
13
+ specs:
14
+ hobo_fields (3.0.0)
15
+ invoca-utils (~> 0.4)
16
+
17
+ PATH
18
+ remote: .
19
+ specs:
20
+ git_models (1.2.0)
21
+ git_lib (~> 1.2)
22
+ hobo_fields (~> 3.0)
23
+ rails (>= 4.2, < 7)
24
+
25
+ GEM
26
+ remote: https://rubygems.org/
27
+ specs:
28
+ actioncable (5.2.4.3)
29
+ actionpack (= 5.2.4.3)
30
+ nio4r (~> 2.0)
31
+ websocket-driver (>= 0.6.1)
32
+ actionmailer (5.2.4.3)
33
+ actionpack (= 5.2.4.3)
34
+ actionview (= 5.2.4.3)
35
+ activejob (= 5.2.4.3)
36
+ mail (~> 2.5, >= 2.5.4)
37
+ rails-dom-testing (~> 2.0)
38
+ actionpack (5.2.4.3)
39
+ actionview (= 5.2.4.3)
40
+ activesupport (= 5.2.4.3)
41
+ rack (~> 2.0, >= 2.0.8)
42
+ rack-test (>= 0.6.3)
43
+ rails-dom-testing (~> 2.0)
44
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
45
+ actionview (5.2.4.3)
46
+ activesupport (= 5.2.4.3)
47
+ builder (~> 3.1)
48
+ erubi (~> 1.4)
49
+ rails-dom-testing (~> 2.0)
50
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
51
+ activejob (5.2.4.3)
52
+ activesupport (= 5.2.4.3)
53
+ globalid (>= 0.3.6)
54
+ activemodel (5.2.4.3)
55
+ activesupport (= 5.2.4.3)
56
+ activerecord (5.2.4.3)
57
+ activemodel (= 5.2.4.3)
58
+ activesupport (= 5.2.4.3)
59
+ arel (>= 9.0)
60
+ activestorage (5.2.4.3)
61
+ actionpack (= 5.2.4.3)
62
+ activerecord (= 5.2.4.3)
63
+ marcel (~> 0.3.1)
64
+ activesupport (5.2.4.3)
65
+ concurrent-ruby (~> 1.0, >= 1.0.2)
66
+ i18n (>= 0.7, < 2)
67
+ minitest (~> 5.1)
68
+ tzinfo (~> 1.1)
69
+ appraisal (2.3.0)
70
+ bundler
71
+ rake
72
+ thor (>= 0.14.0)
73
+ arel (9.0.0)
74
+ ast (2.4.1)
75
+ builder (3.2.4)
76
+ bundler-audit (0.7.0.1)
77
+ bundler (>= 1.2.0, < 3)
78
+ thor (>= 0.18, < 2)
79
+ climate_control (0.2.0)
80
+ coderay (1.1.3)
81
+ concurrent-ruby (1.1.6)
82
+ coveralls (0.8.23)
83
+ json (>= 1.8, < 3)
84
+ simplecov (~> 0.16.1)
85
+ term-ansicolor (~> 1.3)
86
+ thor (>= 0.19.4, < 2.0)
87
+ tins (~> 1.6)
88
+ crass (1.0.6)
89
+ database_cleaner (1.8.5)
90
+ diff-lcs (1.3)
91
+ docile (1.3.2)
92
+ erubi (1.9.0)
93
+ globalid (0.4.2)
94
+ activesupport (>= 4.2.0)
95
+ i18n (1.8.3)
96
+ concurrent-ruby (~> 1.0)
97
+ invoca-utils (0.4.1)
98
+ json (2.3.0)
99
+ loofah (2.6.0)
100
+ crass (~> 1.0.2)
101
+ nokogiri (>= 1.5.9)
102
+ mail (2.7.1)
103
+ mini_mime (>= 0.1.1)
104
+ marcel (0.3.3)
105
+ mimemagic (~> 0.3.2)
106
+ method_source (1.0.0)
107
+ mimemagic (0.3.5)
108
+ mini_mime (1.0.2)
109
+ mini_portile2 (2.4.0)
110
+ minitest (5.14.1)
111
+ nio4r (2.5.2)
112
+ nokogiri (1.10.9)
113
+ mini_portile2 (~> 2.4.0)
114
+ parser (2.7.1.4)
115
+ ast (~> 2.4.1)
116
+ powerpack (0.1.2)
117
+ pry (0.13.1)
118
+ coderay (~> 1.1)
119
+ method_source (~> 1.0)
120
+ rack (2.2.3)
121
+ rack-test (1.1.0)
122
+ rack (>= 1.0, < 3)
123
+ rails (5.2.4.3)
124
+ actioncable (= 5.2.4.3)
125
+ actionmailer (= 5.2.4.3)
126
+ actionpack (= 5.2.4.3)
127
+ actionview (= 5.2.4.3)
128
+ activejob (= 5.2.4.3)
129
+ activemodel (= 5.2.4.3)
130
+ activerecord (= 5.2.4.3)
131
+ activestorage (= 5.2.4.3)
132
+ activesupport (= 5.2.4.3)
133
+ bundler (>= 1.3.0)
134
+ railties (= 5.2.4.3)
135
+ sprockets-rails (>= 2.0.0)
136
+ rails-dom-testing (2.0.3)
137
+ activesupport (>= 4.2.0)
138
+ nokogiri (>= 1.6)
139
+ rails-html-sanitizer (1.3.0)
140
+ loofah (~> 2.3)
141
+ railties (5.2.4.3)
142
+ actionpack (= 5.2.4.3)
143
+ activesupport (= 5.2.4.3)
144
+ method_source
145
+ rake (>= 0.8.7)
146
+ thor (>= 0.19.0, < 2.0)
147
+ rainbow (2.2.2)
148
+ rake
149
+ rake (13.0.1)
150
+ rspec (3.9.0)
151
+ rspec-core (~> 3.9.0)
152
+ rspec-expectations (~> 3.9.0)
153
+ rspec-mocks (~> 3.9.0)
154
+ rspec-core (3.9.2)
155
+ rspec-support (~> 3.9.3)
156
+ rspec-expectations (3.9.2)
157
+ diff-lcs (>= 1.2.0, < 2.0)
158
+ rspec-support (~> 3.9.0)
159
+ rspec-mocks (3.9.1)
160
+ diff-lcs (>= 1.2.0, < 2.0)
161
+ rspec-support (~> 3.9.0)
162
+ rspec-rails (4.0.1)
163
+ actionpack (>= 4.2)
164
+ activesupport (>= 4.2)
165
+ railties (>= 4.2)
166
+ rspec-core (~> 3.9)
167
+ rspec-expectations (~> 3.9)
168
+ rspec-mocks (~> 3.9)
169
+ rspec-support (~> 3.9)
170
+ rspec-support (3.9.3)
171
+ rspec_junit_formatter (0.4.1)
172
+ rspec-core (>= 2, < 4, != 2.12.0)
173
+ rubocop (0.45.0)
174
+ parser (>= 2.3.1.1, < 3.0)
175
+ powerpack (~> 0.1)
176
+ rainbow (>= 1.99.1, < 3.0)
177
+ ruby-progressbar (~> 1.7)
178
+ unicode-display_width (~> 1.0, >= 1.0.1)
179
+ rubocop-rspec (1.15.1)
180
+ rubocop (>= 0.42.0)
181
+ ruby-progressbar (1.10.1)
182
+ simplecov (0.16.1)
183
+ docile (~> 1.1)
184
+ json (>= 1.8, < 3)
185
+ simplecov-html (~> 0.10.0)
186
+ simplecov-html (0.10.2)
187
+ sprockets (4.0.2)
188
+ concurrent-ruby (~> 1.0)
189
+ rack (> 1, < 3)
190
+ sprockets-rails (3.2.1)
191
+ actionpack (>= 4.0)
192
+ activesupport (>= 4.0)
193
+ sprockets (>= 3.0.0)
194
+ sqlite3 (1.3.13)
195
+ sync (0.5.0)
196
+ term-ansicolor (1.7.1)
197
+ tins (~> 1.0)
198
+ thor (1.0.1)
199
+ thread_safe (0.3.6)
200
+ tins (1.25.0)
201
+ sync
202
+ tzinfo (1.2.7)
203
+ thread_safe (~> 0.1)
204
+ tzinfo-data (1.2020.1)
205
+ tzinfo (>= 1.0.0)
206
+ unicode-display_width (1.7.0)
207
+ websocket-driver (0.7.2)
208
+ websocket-extensions (>= 0.1.0)
209
+ websocket-extensions (0.1.5)
210
+
211
+ PLATFORMS
212
+ ruby
213
+
214
+ DEPENDENCIES
215
+ appraisal
216
+ bundler (~> 1.17)
217
+ bundler-audit
218
+ climate_control
219
+ coveralls
220
+ database_cleaner
221
+ git_lib (~> 1.2)!
222
+ git_models!
223
+ hobo_fields (~> 3.0)!
224
+ pry
225
+ rails (>= 4.2)
226
+ rake
227
+ rspec (~> 3.5)
228
+ rspec-core
229
+ rspec-rails
230
+ rspec_junit_formatter
231
+ rubocop (~> 0.45.0)
232
+ rubocop-rspec
233
+ sqlite3 (~> 1.3.6)
234
+ tzinfo-data
235
+
236
+ BUNDLED WITH
237
+ 1.17.3