machinist_redux 3.0.3 → 3.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.codeclimate.yml +4 -5
- data/.gem_release.yml +3 -0
- data/.rubocop +1 -0
- data/.rubocop.yml +23 -22
- data/.rubocop_todo.yml +35 -29
- data/.travis.yml +2 -0
- data/Appraisals +7 -3
- data/CHANGELOG.md +57 -0
- data/Gemfile +2 -1
- data/README.md +1 -1
- data/gemfiles/rails_4.2.gemfile +11 -11
- data/gemfiles/rails_4.2.gemfile.lock +97 -90
- data/gemfiles/rails_5.0.gemfile +11 -11
- data/gemfiles/rails_5.0.gemfile.lock +97 -92
- data/gemfiles/rails_5.1.gemfile +11 -11
- data/gemfiles/rails_5.1.gemfile.lock +97 -92
- data/gemfiles/rails_5.2.gemfile +31 -0
- data/gemfiles/rails_5.2.gemfile.lock +231 -0
- data/lib/generators/machinist/install/install_generator.rb +2 -4
- data/lib/machinist/blueprint.rb +1 -1
- data/lib/machinist/lathe.rb +1 -3
- data/lib/machinist/version.rb +1 -1
- data/machinist.gemspec +1 -3
- metadata +8 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: a639674cd6854fefd1c4d8e2af2ee3257e64312f4a678695923a0400a41a5b37
|
4
|
+
data.tar.gz: fafe0894a27f8dde946ec5d984f660d91c384ac1686dca0a1e09ab52cad766af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a5ca141ebd089cedbddfe82505f3f0945c8fefb94ecc0eba24a124f4efb6a302fc515cbd650f8ae64f7307a4400305256a5effdb0a7408b9c2d71c8fff2fd860
|
7
|
+
data.tar.gz: 8f1be71d2f20473465b2d1a4d00421462dabc2dfeb84f589b1406fd8d8f6591f5592a71a6aab2dc06a96e67443efc3ca0d22bbd22f650a12c5871d00a04c15a8
|
data/.codeclimate.yml
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
---
|
2
|
-
|
2
|
+
version: 2
|
3
|
+
plugins:
|
3
4
|
duplication:
|
4
5
|
enabled: true
|
5
6
|
config:
|
@@ -9,9 +10,7 @@ engines:
|
|
9
10
|
enabled: true
|
10
11
|
rubocop:
|
11
12
|
enabled: true
|
12
|
-
|
13
|
-
|
14
|
-
- '**.rb'
|
15
|
-
exclude_paths:
|
13
|
+
channel: rubocop-0-54
|
14
|
+
exclude_patterns:
|
16
15
|
- script/
|
17
16
|
- spec/
|
data/.gem_release.yml
ADDED
data/.rubocop
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--extra-details
|
data/.rubocop.yml
CHANGED
@@ -6,44 +6,41 @@ AllCops:
|
|
6
6
|
TargetRubyVersion: 2.2
|
7
7
|
DisplayCopNames: true
|
8
8
|
Exclude:
|
9
|
-
-
|
9
|
+
- gemfiles/**/*
|
10
|
+
- tmp/**/*
|
10
11
|
|
11
|
-
|
12
|
-
|
13
|
-
|
12
|
+
Layout/DotPosition:
|
13
|
+
EnforcedStyle: leading
|
14
|
+
Enabled: true
|
15
|
+
|
16
|
+
Layout/ExtraSpacing:
|
17
|
+
Enabled: true
|
18
|
+
|
19
|
+
Lint/LiteralInInterpolation:
|
20
|
+
AutoCorrect: true
|
14
21
|
|
15
22
|
Metrics/BlockLength:
|
16
23
|
CountComments: false # count full line comments?
|
17
24
|
Exclude:
|
18
25
|
- '**/*_spec.rb'
|
19
26
|
|
20
|
-
|
21
|
-
|
27
|
+
Metrics/LineLength:
|
28
|
+
Max: 120
|
22
29
|
Enabled: true
|
23
30
|
|
24
|
-
|
25
|
-
EnforcedStyle: leading
|
31
|
+
Naming/FileName:
|
26
32
|
Enabled: true
|
27
33
|
|
28
|
-
ClassAndModuleChildren:
|
34
|
+
Style/ClassAndModuleChildren:
|
29
35
|
EnforcedStyle: nested
|
30
36
|
Enabled: true
|
31
37
|
|
32
|
-
Documentation:
|
38
|
+
Style/Documentation:
|
33
39
|
Enabled: false
|
34
40
|
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
LineLength:
|
39
|
-
Max: 120
|
40
|
-
Enabled: true
|
41
|
-
|
42
|
-
Style/ExtraSpacing:
|
43
|
-
Enabled: true
|
44
|
-
|
45
|
-
Lint/LiteralInInterpolation:
|
46
|
-
AutoCorrect: true
|
41
|
+
Style/MixinGrouping:
|
42
|
+
Exclude:
|
43
|
+
- spec/**/*.rb
|
47
44
|
|
48
45
|
Style/ModuleFunction:
|
49
46
|
EnforcedStyle: extend_self # Allows us to have private methods too
|
@@ -58,3 +55,7 @@ Style/PercentLiteralDelimiters:
|
|
58
55
|
'%r': '{}'
|
59
56
|
'%w': '[]'
|
60
57
|
'%W': '[]'
|
58
|
+
|
59
|
+
Style/StringLiterals:
|
60
|
+
EnforcedStyle: single_quotes
|
61
|
+
Enabled: true
|
data/.rubocop_todo.yml
CHANGED
@@ -1,27 +1,28 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on
|
3
|
+
# on 2018-05-29 13:23:58 +0100 using RuboCop version 0.54.0.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
8
8
|
|
9
9
|
# Offense count: 1
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
#
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
Metrics/MethodLength:
|
20
|
-
Max: 13
|
10
|
+
# Configuration parameters: NamePrefix, NamePrefixBlacklist, NameWhitelist, MethodDefinitionMacros.
|
11
|
+
# NamePrefix: is_, has_, have_
|
12
|
+
# NamePrefixBlacklist: is_, has_, have_
|
13
|
+
# NameWhitelist: is_a?
|
14
|
+
# MethodDefinitionMacros: define_method, define_singleton_method
|
15
|
+
Naming/PredicateName:
|
16
|
+
Exclude:
|
17
|
+
- 'spec/**/*'
|
18
|
+
- 'lib/machinist/blueprint.rb'
|
21
19
|
|
22
|
-
# Offense count:
|
23
|
-
|
24
|
-
|
20
|
+
# Offense count: 4
|
21
|
+
# Configuration parameters: Prefixes.
|
22
|
+
# Prefixes: when, with, without
|
23
|
+
RSpec/ContextWording:
|
24
|
+
Exclude:
|
25
|
+
- 'spec/machinist/active_record_spec.rb'
|
25
26
|
|
26
27
|
# Offense count: 1
|
27
28
|
RSpec/DescribeMethod:
|
@@ -44,18 +45,26 @@ RSpec/IteratedExpectation:
|
|
44
45
|
- 'spec/machinist/machinable_spec.rb'
|
45
46
|
|
46
47
|
# Offense count: 21
|
48
|
+
# Configuration parameters: AggregateFailuresByDefault.
|
47
49
|
RSpec/MultipleExpectations:
|
48
50
|
Max: 6
|
49
51
|
|
50
52
|
# Offense count: 1
|
51
|
-
#
|
52
|
-
|
53
|
-
|
53
|
+
# Cop supports --auto-correct.
|
54
|
+
Style/Encoding:
|
55
|
+
Exclude:
|
56
|
+
- 'machinist.gemspec'
|
57
|
+
|
58
|
+
# Offense count: 2
|
59
|
+
# Cop supports --auto-correct.
|
60
|
+
Style/ExpandPathArguments:
|
54
61
|
Exclude:
|
55
|
-
- '
|
62
|
+
- 'lib/generators/machinist/install/install_generator.rb'
|
63
|
+
- 'machinist.gemspec'
|
56
64
|
|
57
65
|
# Offense count: 1
|
58
|
-
#
|
66
|
+
# Cop supports --auto-correct.
|
67
|
+
# Configuration parameters: EnforcedStyle.
|
59
68
|
# SupportedStyles: format, sprintf, percent
|
60
69
|
Style/FormatString:
|
61
70
|
Exclude:
|
@@ -68,17 +77,14 @@ Style/GuardClause:
|
|
68
77
|
- 'lib/generators/machinist/install/install_generator.rb'
|
69
78
|
- 'lib/machinist/lathe.rb'
|
70
79
|
|
71
|
-
# Offense count:
|
72
|
-
|
80
|
+
# Offense count: 2
|
81
|
+
# Cop supports --auto-correct.
|
82
|
+
Style/IfUnlessModifier:
|
73
83
|
Exclude:
|
84
|
+
- 'lib/generators/machinist/install/install_generator.rb'
|
74
85
|
- 'lib/machinist/lathe.rb'
|
75
86
|
|
76
87
|
# Offense count: 1
|
77
|
-
|
78
|
-
# NamePrefix: is_, has_, have_
|
79
|
-
# NamePrefixBlacklist: is_, has_, have_
|
80
|
-
# NameWhitelist: is_a?
|
81
|
-
Style/PredicateName:
|
88
|
+
Style/MethodMissing:
|
82
89
|
Exclude:
|
83
|
-
- '
|
84
|
-
- 'lib/machinist/blueprint.rb'
|
90
|
+
- 'lib/machinist/lathe.rb'
|
data/.travis.yml
CHANGED
@@ -3,6 +3,7 @@ language: ruby
|
|
3
3
|
|
4
4
|
rvm:
|
5
5
|
- ruby-head
|
6
|
+
- 2.5.1
|
6
7
|
- 2.4.1
|
7
8
|
- 2.3.4
|
8
9
|
- 2.2.6
|
@@ -11,6 +12,7 @@ gemfile:
|
|
11
12
|
- gemfiles/rails_4.2.gemfile
|
12
13
|
- gemfiles/rails_5.0.gemfile
|
13
14
|
- gemfiles/rails_5.1.gemfile
|
15
|
+
- gemfiles/rails_5.2.gemfile
|
14
16
|
|
15
17
|
matrix:
|
16
18
|
allow_failures:
|
data/Appraisals
CHANGED
@@ -1,11 +1,15 @@
|
|
1
1
|
appraise 'rails-4.2' do
|
2
|
-
gem 'activerecord', '~> 4.2.
|
2
|
+
gem 'activerecord', '~> 4.2.10', group: :test, require: false
|
3
3
|
end
|
4
4
|
|
5
5
|
appraise 'rails-5.0' do
|
6
|
-
gem 'activerecord', '~> 5.0.
|
6
|
+
gem 'activerecord', '~> 5.0.7', group: :test, require: false
|
7
7
|
end
|
8
8
|
|
9
9
|
appraise 'rails-5.1' do
|
10
|
-
gem 'activerecord', '~> 5.1.
|
10
|
+
gem 'activerecord', '~> 5.1.6', group: :test, require: false
|
11
|
+
end
|
12
|
+
|
13
|
+
appraise 'rails-5.2' do
|
14
|
+
gem 'activerecord', '~> 5.2.0', group: :test, require: false
|
11
15
|
end
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
# Change Log
|
2
|
+
|
3
|
+
## [Unreleased](https://github.com/dominicsayers/machinist/tree/HEAD)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/dominicsayers/machinist/compare/v3.0.3...HEAD)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- add rails 5.2 tests [\#5](https://github.com/dominicsayers/machinist/pull/5) ([thomasdziedzic-pd](https://github.com/thomasdziedzic-pd))
|
10
|
+
|
11
|
+
## [v3.0.3](https://github.com/dominicsayers/machinist/tree/v3.0.3) (2017-05-19)
|
12
|
+
[Full Changelog](https://github.com/dominicsayers/machinist/compare/v3.0.2...v3.0.3)
|
13
|
+
|
14
|
+
## [v3.0.2](https://github.com/dominicsayers/machinist/tree/v3.0.2) (2017-05-19)
|
15
|
+
[Full Changelog](https://github.com/dominicsayers/machinist/compare/v3.0.1...v3.0.2)
|
16
|
+
|
17
|
+
**Closed issues:**
|
18
|
+
|
19
|
+
- Better diagnostics when ActiveRecord model can't be instantiated [\#4](https://github.com/dominicsayers/machinist/issues/4)
|
20
|
+
|
21
|
+
**Merged pull requests:**
|
22
|
+
|
23
|
+
- Machinist v3 [\#3](https://github.com/dominicsayers/machinist/pull/3) ([dominicsayers](https://github.com/dominicsayers))
|
24
|
+
|
25
|
+
## [v3.0.1](https://github.com/dominicsayers/machinist/tree/v3.0.1) (2017-05-17)
|
26
|
+
[Full Changelog](https://github.com/dominicsayers/machinist/compare/v3.0.0...v3.0.1)
|
27
|
+
|
28
|
+
## [v3.0.0](https://github.com/dominicsayers/machinist/tree/v3.0.0) (2017-05-17)
|
29
|
+
[Full Changelog](https://github.com/dominicsayers/machinist/compare/v2.0...v3.0.0)
|
30
|
+
|
31
|
+
**Merged pull requests:**
|
32
|
+
|
33
|
+
- Development environment [\#2](https://github.com/dominicsayers/machinist/pull/2) ([dominicsayers](https://github.com/dominicsayers))
|
34
|
+
- Rails 4.2 [\#1](https://github.com/dominicsayers/machinist/pull/1) ([dominicsayers](https://github.com/dominicsayers))
|
35
|
+
|
36
|
+
## [v2.0](https://github.com/dominicsayers/machinist/tree/v2.0) (2012-01-13)
|
37
|
+
[Full Changelog](https://github.com/dominicsayers/machinist/compare/v2.0.0.beta2...v2.0)
|
38
|
+
|
39
|
+
## [v2.0.0.beta2](https://github.com/dominicsayers/machinist/tree/v2.0.0.beta2) (2010-07-06)
|
40
|
+
[Full Changelog](https://github.com/dominicsayers/machinist/compare/v2.0.0.beta1...v2.0.0.beta2)
|
41
|
+
|
42
|
+
## [v2.0.0.beta1](https://github.com/dominicsayers/machinist/tree/v2.0.0.beta1) (2010-07-06)
|
43
|
+
[Full Changelog](https://github.com/dominicsayers/machinist/compare/v1.0.6...v2.0.0.beta1)
|
44
|
+
|
45
|
+
## [v1.0.6](https://github.com/dominicsayers/machinist/tree/v1.0.6) (2009-11-29)
|
46
|
+
[Full Changelog](https://github.com/dominicsayers/machinist/compare/1.0.5...v1.0.6)
|
47
|
+
|
48
|
+
## [1.0.5](https://github.com/dominicsayers/machinist/tree/1.0.5) (2009-10-20)
|
49
|
+
[Full Changelog](https://github.com/dominicsayers/machinist/compare/1.0.4...1.0.5)
|
50
|
+
|
51
|
+
## [1.0.4](https://github.com/dominicsayers/machinist/tree/1.0.4) (2009-10-08)
|
52
|
+
[Full Changelog](https://github.com/dominicsayers/machinist/compare/1.0.0...1.0.4)
|
53
|
+
|
54
|
+
## [1.0.0](https://github.com/dominicsayers/machinist/tree/1.0.0) (2009-06-02)
|
55
|
+
|
56
|
+
|
57
|
+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
data/Gemfile
CHANGED
@@ -6,13 +6,14 @@ gem 'sqlite3'
|
|
6
6
|
|
7
7
|
group :development do
|
8
8
|
gem 'appraisal', require: false
|
9
|
-
gem 'gem-release', require: false
|
9
|
+
gem 'gem-release', '> 1', require: false
|
10
10
|
gem 'github_changelog_generator', require: false
|
11
11
|
gem 'guard', require: false
|
12
12
|
gem 'guard-rspec', require: false
|
13
13
|
gem 'guard-rubocop', require: false
|
14
14
|
gem 'guard-rubycritic', require: false
|
15
15
|
gem 'rdoc', require: false
|
16
|
+
gem 'rubocop', '= 0.54', require: false
|
16
17
|
gem 'rubocop-rspec', require: false
|
17
18
|
end
|
18
19
|
|
data/README.md
CHANGED
@@ -22,7 +22,7 @@ If you want support for Rails 3 or Rubies prior to 2.2, [go here](https://github
|
|
22
22
|
|
23
23
|
This is a fork of [Pete Yandell's Machinist](http://github.com/notahat/machinist). The original gem was abandoned for the reasons given below, as are most of its forks. The purpose of this fork is to keep Machinist under maintenance for legacy projects that have upgraded to Ruby 2.2 or later and Rails 4.2 or later, but still have Machinist factories in the test environment.
|
24
24
|
|
25
|
-
I'm pleased to say that Pete's code runs fine under Ruby 2.2, 2.3 & 2.
|
25
|
+
I'm pleased to say that Pete's code runs fine under Ruby 2.2, 2.3, 2.4 & 2.5 and Rails 4.2, 5.0, 5.1 and 5.2. I have allowed [RuboCop](https://github.com/bbatsov/rubocop) and [RuboCop RSpec](https://github.com/backus/rubocop-rspec) to suggest some changes, and I have converted to the more up-to-date RSpec syntax using [Transpec](https://github.com/yujinakayama/transpec). Few if any manual changes were needed.
|
26
26
|
|
27
27
|
Pete Yandell's reason for abandoning Machinist is that he found himself with less and less need for factories in tests. He recommends Bo Jeanes' [excellent article on the topic](http://bjeanes.com/2012/02/factories-breed-complexity).
|
28
28
|
|
data/gemfiles/rails_4.2.gemfile
CHANGED
@@ -4,19 +4,19 @@ source "http://rubygems.org"
|
|
4
4
|
|
5
5
|
ruby RUBY_VERSION
|
6
6
|
|
7
|
-
gem "
|
8
|
-
gem
|
7
|
+
gem "sqlite3"
|
8
|
+
gem "activerecord", "~> 4.2.10", group: :test, require: false
|
9
9
|
|
10
10
|
group :development do
|
11
|
-
gem
|
12
|
-
gem
|
13
|
-
gem
|
14
|
-
gem
|
15
|
-
gem
|
16
|
-
gem
|
17
|
-
gem
|
18
|
-
gem
|
19
|
-
gem
|
11
|
+
gem "appraisal", require: false
|
12
|
+
gem "gem-release", "> 1", require: false
|
13
|
+
gem "github_changelog_generator", require: false
|
14
|
+
gem "guard", require: false
|
15
|
+
gem "guard-rspec", require: false
|
16
|
+
gem "guard-rubocop", require: false
|
17
|
+
gem "guard-rubycritic", require: false
|
18
|
+
gem "rdoc", require: false
|
19
|
+
gem "rubocop-rspec", require: false
|
20
20
|
end
|
21
21
|
|
22
22
|
group :test do
|
@@ -1,74 +1,75 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
machinist_redux (3.0.
|
4
|
+
machinist_redux (3.0.4)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: http://rubygems.org/
|
8
8
|
specs:
|
9
|
-
activemodel (4.2.
|
10
|
-
activesupport (= 4.2.
|
9
|
+
activemodel (4.2.10)
|
10
|
+
activesupport (= 4.2.10)
|
11
11
|
builder (~> 3.1)
|
12
|
-
activerecord (4.2.
|
13
|
-
activemodel (= 4.2.
|
14
|
-
activesupport (= 4.2.
|
12
|
+
activerecord (4.2.10)
|
13
|
+
activemodel (= 4.2.10)
|
14
|
+
activesupport (= 4.2.10)
|
15
15
|
arel (~> 6.0)
|
16
|
-
activesupport (4.2.
|
16
|
+
activesupport (4.2.10)
|
17
17
|
i18n (~> 0.7)
|
18
18
|
minitest (~> 5.1)
|
19
19
|
thread_safe (~> 0.3, >= 0.3.4)
|
20
20
|
tzinfo (~> 1.1)
|
21
|
-
addressable (2.5.
|
22
|
-
public_suffix (
|
21
|
+
addressable (2.5.2)
|
22
|
+
public_suffix (>= 2.0.2, < 4.0)
|
23
23
|
appraisal (2.2.0)
|
24
24
|
bundler
|
25
25
|
rake
|
26
26
|
thor (>= 0.14.0)
|
27
27
|
arel (6.0.4)
|
28
|
-
ast (2.
|
28
|
+
ast (2.4.0)
|
29
29
|
axiom-types (0.1.1)
|
30
30
|
descendants_tracker (~> 0.0.4)
|
31
31
|
ice_nine (~> 0.11.0)
|
32
32
|
thread_safe (~> 0.3, >= 0.3.1)
|
33
33
|
builder (3.2.3)
|
34
|
-
codeclimate-engine-rb (0.4.
|
34
|
+
codeclimate-engine-rb (0.4.1)
|
35
35
|
virtus (~> 1.0)
|
36
36
|
codeclimate-test-reporter (1.0.7)
|
37
37
|
simplecov
|
38
|
-
coderay (1.1.
|
38
|
+
coderay (1.1.2)
|
39
39
|
coercible (1.0.0)
|
40
40
|
descendants_tracker (~> 0.0.1)
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
41
|
+
concurrent-ruby (1.0.5)
|
42
|
+
coveralls (0.7.2)
|
43
|
+
multi_json (~> 1.3)
|
44
|
+
rest-client (= 1.6.7)
|
45
|
+
simplecov (>= 0.7)
|
46
|
+
term-ansicolor (= 1.2.2)
|
47
|
+
thor (= 0.18.1)
|
47
48
|
descendants_tracker (0.0.4)
|
48
49
|
thread_safe (~> 0.3, >= 0.3.1)
|
49
50
|
diff-lcs (1.3)
|
50
|
-
docile (1.1
|
51
|
+
docile (1.3.1)
|
51
52
|
equalizer (0.0.11)
|
52
53
|
erubis (2.7.0)
|
53
|
-
faraday (0.
|
54
|
+
faraday (0.15.2)
|
54
55
|
multipart-post (>= 1.2, < 3)
|
55
56
|
faraday-http-cache (2.0.0)
|
56
57
|
faraday (~> 0.8)
|
57
|
-
ffi (1.9.
|
58
|
-
flay (2.
|
58
|
+
ffi (1.9.23)
|
59
|
+
flay (2.12.0)
|
59
60
|
erubis (~> 2.7.0)
|
60
61
|
path_expander (~> 1.0)
|
61
62
|
ruby_parser (~> 3.0)
|
62
63
|
sexp_processor (~> 4.0)
|
63
|
-
flog (4.6.
|
64
|
+
flog (4.6.2)
|
64
65
|
path_expander (~> 1.0)
|
65
66
|
ruby_parser (~> 3.1, > 3.1.0)
|
66
67
|
sexp_processor (~> 4.8)
|
67
68
|
formatador (0.2.5)
|
68
|
-
fuubar (2.
|
69
|
+
fuubar (2.3.1)
|
69
70
|
rspec-core (~> 3.0)
|
70
71
|
ruby-progressbar (~> 1.4)
|
71
|
-
gem-release (
|
72
|
+
gem-release (2.0.0.rc.3)
|
72
73
|
github_changelog_generator (1.14.3)
|
73
74
|
activesupport
|
74
75
|
faraday-http-cache
|
@@ -77,10 +78,10 @@ GEM
|
|
77
78
|
rainbow (>= 2.1)
|
78
79
|
rake (>= 10.0)
|
79
80
|
retriable (~> 2.1)
|
80
|
-
guard (2.14.
|
81
|
+
guard (2.14.2)
|
81
82
|
formatador (>= 0.2.4)
|
82
83
|
listen (>= 2.7, < 4.0)
|
83
|
-
lumberjack (
|
84
|
+
lumberjack (>= 1.0.12, < 2.0)
|
84
85
|
nenv (~> 0.1)
|
85
86
|
notiffany (~> 0.0)
|
86
87
|
pry (>= 0.9.12)
|
@@ -91,13 +92,14 @@ GEM
|
|
91
92
|
guard (~> 2.1)
|
92
93
|
guard-compat (~> 1.1)
|
93
94
|
rspec (>= 2.99.0, < 4.0)
|
94
|
-
guard-rubocop (1.
|
95
|
+
guard-rubocop (1.3.0)
|
95
96
|
guard (~> 2.0)
|
96
97
|
rubocop (~> 0.20)
|
97
98
|
guard-rubycritic (2.9.3)
|
98
99
|
guard (~> 2.6)
|
99
100
|
rubycritic (>= 2.9.3)
|
100
|
-
i18n (0.
|
101
|
+
i18n (0.9.5)
|
102
|
+
concurrent-ruby (~> 1.0)
|
101
103
|
ice_nine (0.11.2)
|
102
104
|
json (2.1.0)
|
103
105
|
launchy (2.4.3)
|
@@ -106,95 +108,100 @@ GEM
|
|
106
108
|
rb-fsevent (~> 0.9, >= 0.9.4)
|
107
109
|
rb-inotify (~> 0.9, >= 0.9.7)
|
108
110
|
ruby_dep (~> 1.2)
|
109
|
-
lumberjack (1.0.
|
110
|
-
method_source (0.
|
111
|
-
|
112
|
-
|
111
|
+
lumberjack (1.0.13)
|
112
|
+
method_source (0.9.0)
|
113
|
+
mime-types (3.1)
|
114
|
+
mime-types-data (~> 3.2015)
|
115
|
+
mime-types-data (3.2016.0521)
|
116
|
+
minitest (5.11.3)
|
117
|
+
multi_json (1.13.1)
|
113
118
|
multipart-post (2.0.0)
|
114
119
|
nenv (0.3.0)
|
115
120
|
notiffany (0.1.1)
|
116
121
|
nenv (~> 0.1)
|
117
122
|
shellany (~> 0.0)
|
118
|
-
octokit (4.
|
123
|
+
octokit (4.9.0)
|
119
124
|
sawyer (~> 0.8.0, >= 0.5.3)
|
120
|
-
|
121
|
-
|
122
|
-
|
125
|
+
parallel (1.12.1)
|
126
|
+
parser (2.5.1.0)
|
127
|
+
ast (~> 2.4.0)
|
128
|
+
path_expander (1.0.3)
|
123
129
|
powerpack (0.1.1)
|
124
|
-
pry (0.
|
130
|
+
pry (0.11.3)
|
125
131
|
coderay (~> 1.1.0)
|
126
|
-
method_source (~> 0.
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
rdoc (5.1.0)
|
136
|
-
reek (4.6.2)
|
132
|
+
method_source (~> 0.9.0)
|
133
|
+
public_suffix (3.0.2)
|
134
|
+
rainbow (3.0.0)
|
135
|
+
rake (12.3.1)
|
136
|
+
rb-fsevent (0.10.3)
|
137
|
+
rb-inotify (0.9.10)
|
138
|
+
ffi (>= 0.5.0, < 2)
|
139
|
+
rdoc (6.0.4)
|
140
|
+
reek (4.8.1)
|
137
141
|
codeclimate-engine-rb (~> 0.4.0)
|
138
|
-
parser (>= 2.
|
139
|
-
rainbow (
|
142
|
+
parser (>= 2.5.0.0, < 2.6)
|
143
|
+
rainbow (>= 2.0, < 4.0)
|
144
|
+
rest-client (1.6.7)
|
145
|
+
mime-types (>= 1.16)
|
140
146
|
retriable (2.1.0)
|
141
|
-
rspec (3.
|
142
|
-
rspec-core (~> 3.
|
143
|
-
rspec-expectations (~> 3.
|
144
|
-
rspec-mocks (~> 3.
|
145
|
-
rspec-core (3.
|
146
|
-
rspec-support (~> 3.
|
147
|
-
rspec-expectations (3.
|
147
|
+
rspec (3.7.0)
|
148
|
+
rspec-core (~> 3.7.0)
|
149
|
+
rspec-expectations (~> 3.7.0)
|
150
|
+
rspec-mocks (~> 3.7.0)
|
151
|
+
rspec-core (3.7.1)
|
152
|
+
rspec-support (~> 3.7.0)
|
153
|
+
rspec-expectations (3.7.0)
|
148
154
|
diff-lcs (>= 1.2.0, < 2.0)
|
149
|
-
rspec-support (~> 3.
|
150
|
-
rspec-mocks (3.
|
155
|
+
rspec-support (~> 3.7.0)
|
156
|
+
rspec-mocks (3.7.0)
|
151
157
|
diff-lcs (>= 1.2.0, < 2.0)
|
152
|
-
rspec-support (~> 3.
|
153
|
-
rspec-support (3.
|
154
|
-
rspec_junit_formatter (0.
|
155
|
-
builder (< 4)
|
158
|
+
rspec-support (~> 3.7.0)
|
159
|
+
rspec-support (3.7.1)
|
160
|
+
rspec_junit_formatter (0.4.0)
|
156
161
|
rspec-core (>= 2, < 4, != 2.12.0)
|
157
|
-
rubocop (0.
|
158
|
-
|
162
|
+
rubocop (0.56.0)
|
163
|
+
parallel (~> 1.10)
|
164
|
+
parser (>= 2.5)
|
159
165
|
powerpack (~> 0.1)
|
160
|
-
rainbow (>=
|
166
|
+
rainbow (>= 2.2.2, < 4.0)
|
161
167
|
ruby-progressbar (~> 1.7)
|
162
168
|
unicode-display_width (~> 1.0, >= 1.0.1)
|
163
|
-
rubocop-rspec (1.
|
164
|
-
rubocop (>= 0.
|
165
|
-
ruby-progressbar (1.
|
169
|
+
rubocop-rspec (1.25.1)
|
170
|
+
rubocop (>= 0.53.0)
|
171
|
+
ruby-progressbar (1.9.0)
|
166
172
|
ruby_dep (1.5.0)
|
167
|
-
ruby_parser (3.
|
168
|
-
sexp_processor (~> 4.
|
169
|
-
rubycritic (3.
|
173
|
+
ruby_parser (3.11.0)
|
174
|
+
sexp_processor (~> 4.9)
|
175
|
+
rubycritic (3.4.0)
|
170
176
|
flay (~> 2.8)
|
171
177
|
flog (~> 4.4)
|
172
178
|
launchy (= 2.4.3)
|
173
|
-
parser (~> 2.
|
174
|
-
rainbow (~>
|
179
|
+
parser (~> 2.5.0)
|
180
|
+
rainbow (~> 3.0)
|
175
181
|
reek (~> 4.4)
|
176
182
|
ruby_parser (~> 3.8)
|
183
|
+
tty-which (~> 0.3.0)
|
177
184
|
virtus (~> 1.0)
|
178
185
|
sawyer (0.8.1)
|
179
186
|
addressable (>= 2.3.5, < 2.6)
|
180
187
|
faraday (~> 0.8, < 1.0)
|
181
|
-
sexp_processor (4.
|
188
|
+
sexp_processor (4.11.0)
|
182
189
|
shellany (0.0.1)
|
183
|
-
simplecov (0.
|
184
|
-
docile (~> 1.1
|
190
|
+
simplecov (0.16.1)
|
191
|
+
docile (~> 1.1)
|
185
192
|
json (>= 1.8, < 3)
|
186
193
|
simplecov-html (~> 0.10.0)
|
187
|
-
simplecov-html (0.10.
|
188
|
-
slop (3.6.0)
|
194
|
+
simplecov-html (0.10.2)
|
189
195
|
sqlite3 (1.3.13)
|
190
|
-
term-ansicolor (1.
|
191
|
-
tins (~>
|
192
|
-
thor (0.
|
196
|
+
term-ansicolor (1.2.2)
|
197
|
+
tins (~> 0.8)
|
198
|
+
thor (0.18.1)
|
193
199
|
thread_safe (0.3.6)
|
194
|
-
tins (
|
195
|
-
|
200
|
+
tins (0.13.2)
|
201
|
+
tty-which (0.3.0)
|
202
|
+
tzinfo (1.2.5)
|
196
203
|
thread_safe (~> 0.1)
|
197
|
-
unicode-display_width (1.
|
204
|
+
unicode-display_width (1.3.3)
|
198
205
|
virtus (1.0.5)
|
199
206
|
axiom-types (~> 0.1)
|
200
207
|
coercible (~> 1.0)
|
@@ -205,12 +212,12 @@ PLATFORMS
|
|
205
212
|
ruby
|
206
213
|
|
207
214
|
DEPENDENCIES
|
208
|
-
activerecord (~> 4.2.
|
215
|
+
activerecord (~> 4.2.10)
|
209
216
|
appraisal
|
210
217
|
codeclimate-test-reporter
|
211
218
|
coveralls
|
212
219
|
fuubar
|
213
|
-
gem-release
|
220
|
+
gem-release (> 1)
|
214
221
|
github_changelog_generator
|
215
222
|
guard
|
216
223
|
guard-rspec
|
@@ -225,7 +232,7 @@ DEPENDENCIES
|
|
225
232
|
sqlite3
|
226
233
|
|
227
234
|
RUBY VERSION
|
228
|
-
ruby 2.
|
235
|
+
ruby 2.4.1p111
|
229
236
|
|
230
237
|
BUNDLED WITH
|
231
|
-
1.
|
238
|
+
1.16.2
|