outrigger 2.0.0 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: e82a9874959275eb5b4654aeb4374115ce636d83
4
- data.tar.gz: 2d769c28f0494b2d1a75b06fc5d6a81d804953ec
2
+ SHA256:
3
+ metadata.gz: 470f381099cffd17d79737efc2f7501ab70a3de44df06c92e0a14b579314bd76
4
+ data.tar.gz: 5fe33a5c351cb9a0511a62c0480d15a23e0cb4fe67bfd32f67aec9eeaefd9b5e
5
5
  SHA512:
6
- metadata.gz: 71cf03df7b484f547bcef6b2a6022b6fdfecd2133b0b35ecd235f0fd50404ca0ddd267a0c3c12674be902d2112d54f72248ea80d8edf4823866be0f800ad4d2e
7
- data.tar.gz: 59e5e4940e5c7e1836f2d73430b001ba05481461bb25d6b6be4c81370a1b238f6e54a7a76f9187ecda3008f24bbbf3b77ff2cbe76a44a7dd4f7adcf5167bdb89
6
+ metadata.gz: 53692e56afb3a76874bb7000811daed3cfac224e7dc344e946bf78cb97b2b44fdabc28529e36f12fb901d8d92f15d86183c9b42cfdd03cd90dbd566e9be68b2c
7
+ data.tar.gz: fd62d320a416ecbdeb31ef47efd5102097e55407f3213217c9f22b340287429d46bf636e4a4a91197082432e4c50fb4d048e919dcd80563e5cdffabcadfe470c
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'bundler/gem_tasks'
2
4
 
3
5
  begin
@@ -6,14 +8,6 @@ begin
6
8
  RSpec::Core::RakeTask.new(:spec)
7
9
 
8
10
  task(default: :spec)
9
- rescue LoadError # rubocop:disable Lint/HandleExceptions
10
- # no rspec available
11
- end
12
-
13
- task :console do
14
- require 'irb'
15
- require 'irb/completion'
16
- require 'outrigger'
17
- ARGV.clear
18
- IRB.start
11
+ rescue LoadError
12
+ nil
19
13
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module RuboCop
2
4
  module Cop
3
5
  module Migration
@@ -5,6 +7,7 @@ module RuboCop
5
7
  def on_class(node)
6
8
  _name, _superclass, body = *node
7
9
  return unless body && migration_class?(node)
10
+
8
11
  check(node, body)
9
12
  end
10
13
 
@@ -33,6 +36,7 @@ module RuboCop
33
36
  message: 'No allowed tags have been defined in the RuboCop configuration.'
34
37
  elsif tag
35
38
  return if allowed_tags.include? tag.children.last.to_a.last
39
+
36
40
  add_offense tag,
37
41
  location: :expression,
38
42
  message: "Tags may only be one of #{allowed_tags}."
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Outrigger
4
+ module Migrator
5
+ def runnable
6
+ result = super
7
+ return result unless Outrigger.ordered
8
+
9
+ # re-order according to configuration
10
+ result.sort_by! { |m| [Outrigger.ordered[m.tags.first] || 0, m.version] }
11
+ result.reverse! if down?
12
+ result
13
+ end
14
+ end
15
+ end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Outrigger
2
4
  class Railtie < Rails::Railtie
3
5
  railtie_name :taggable_migrations
@@ -8,8 +10,9 @@ module Outrigger
8
10
 
9
11
  initializer 'extend_migrations' do
10
12
  ActiveSupport.on_load :active_record do
11
- ActiveRecord::Migration.send :include, Outrigger::Taggable
12
- ActiveRecord::MigrationProxy.send :include, Outrigger::TaggableProxy
13
+ ActiveRecord::Migration.include(Outrigger::Taggable)
14
+ ActiveRecord::MigrationProxy.include(Outrigger::TaggableProxy)
15
+ ActiveRecord::Migrator.prepend(Outrigger::Migrator)
13
16
  end
14
17
  end
15
18
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Outrigger
2
4
  module Taggable
3
5
  def self.included(base)
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Outrigger
2
4
  module TaggableProxy
3
5
  def self.included(_body)
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Outrigger
2
- VERSION = '2.0.0'.freeze
4
+ VERSION = '3.0.0'
3
5
  end
data/lib/outrigger.rb CHANGED
@@ -1,13 +1,20 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'active_record' unless defined? ActiveRecord
2
4
 
5
+ require 'outrigger/migrator'
3
6
  require 'outrigger/taggable'
4
7
  require 'outrigger/taggable_proxy'
5
8
 
6
9
  require 'outrigger/railtie' if defined? Rails::Railtie
7
10
 
8
11
  module Outrigger
9
- def self.filter(*tags)
10
- tags = tags.flatten.map(&:to_sym)
11
- proc { |migration| (tags - migration.tags).empty? }
12
+ class << self
13
+ attr_accessor :ordered
14
+
15
+ def filter(*tags)
16
+ tags = tags.flatten.map(&:to_sym)
17
+ proc { |migration| (tags - migration.tags).empty? }
18
+ end
12
19
  end
13
20
  end
@@ -1,9 +1,11 @@
1
+ # frozen_string_literal: true
2
+
1
3
  namespace :db do
2
4
  namespace :migrate do
3
5
  desc 'Run migrations for a Tag'
4
6
  task tagged: %i[environment load_config] do |_t, args|
5
7
  puts("Migrating Tags: #{args.extras}")
6
- ActiveRecord::Migrator.migrate(ActiveRecord::Migrator.migrations_paths, &Outrigger.filter(args.extras))
8
+ ActiveRecord::Base.connection.migration_context.migrate(nil, &Outrigger.filter(args.extras))
7
9
  end
8
10
  end
9
11
  end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gemspec path: '../../'
6
+
7
+ gem 'activerecord', '~> 6.0.0'
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gemspec path: '../../'
6
+
7
+ gem 'activerecord', '~> 6.1.0'
@@ -1,7 +1,8 @@
1
- require 'spec_helper'
1
+ # frozen_string_literal: true
2
+
2
3
  require 'outrigger/cops/migration/tagged'
3
4
 
4
- RSpec.describe RuboCop::Cop::Migration::Tagged do # rubocop:disable Metrics/BlockLength
5
+ RSpec.describe RuboCop::Cop::Migration::Tagged do # rubocop:disable RSpec/FilePath
5
6
  let(:config_hash) do
6
7
  {
7
8
  'Migration/Tagged' => {
@@ -23,7 +24,7 @@ RSpec.describe RuboCop::Cop::Migration::Tagged do # rubocop:disable Metrics/Bloc
23
24
  RUBY
24
25
  end
25
26
 
26
- subject(:cop) { described_class.new(config) }
27
+ subject(:cop) { described_class.new(config) } # rubocop:disable RSpec/LeadingSubject
27
28
 
28
29
  shared_examples_for 'valid migrations' do
29
30
  it 'passes valid versioned migration' do
@@ -32,10 +33,10 @@ RSpec.describe RuboCop::Cop::Migration::Tagged do # rubocop:disable Metrics/Bloc
32
33
  end
33
34
  end
34
35
 
35
- context 'valid config' do # rubocop:disable Metrics/BlockLength
36
+ context 'with valid config' do
36
37
  include_examples 'valid migrations'
37
38
 
38
- context 'missing tags' do
39
+ context 'with missing tags' do
39
40
  let(:migration_class) do
40
41
  <<~RUBY
41
42
  class Test < ActiveRecord::Migration[4.2]
@@ -52,7 +53,7 @@ RSpec.describe RuboCop::Cop::Migration::Tagged do # rubocop:disable Metrics/Bloc
52
53
  end
53
54
  end
54
55
 
55
- context 'invalid tag' do
56
+ context 'with invalid tag' do
56
57
  let(:migration_class) do
57
58
  <<~RUBY
58
59
  class Test < ActiveRecord::Migration[4.2]
@@ -71,7 +72,7 @@ RSpec.describe RuboCop::Cop::Migration::Tagged do # rubocop:disable Metrics/Bloc
71
72
  end
72
73
  end
73
74
 
74
- context 'invalid config' do
75
+ context 'with invalid config' do
75
76
  let(:config_hash) do
76
77
  {
77
78
  'Migration/Tagged' => {
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Outrigger
4
+ describe Migrator do
5
+ around do |example|
6
+ Outrigger.ordered = { predeploy: -1, postdeploy: 1 }
7
+ example.call
8
+ ensure
9
+ Outrigger.ordered = nil
10
+ end
11
+
12
+ let(:migrations) do
13
+ [PostDeployMigration.new(nil, 1), UntaggedMigration.new(nil, 2), PreDeployMigration.new(nil, 3),
14
+ MultiMigration.new(nil, 4)]
15
+ end
16
+
17
+ before do
18
+ allow(ActiveRecord::InternalMetadata).to receive(:create_table)
19
+ end
20
+
21
+ it 'sorts' do
22
+ schema_migration = object_double(ActiveRecord::SchemaMigration, create_table: nil, all_versions: [])
23
+ expect(ActiveRecord::Migrator.new(:up, migrations, schema_migration).runnable.map(&:class)).to eq(
24
+ [
25
+ PreDeployMigration, MultiMigration, UntaggedMigration, PostDeployMigration
26
+ ]
27
+ )
28
+ end
29
+
30
+ it 'reverse sorts when going down' do
31
+ schema_migration = object_double(ActiveRecord::SchemaMigration, create_table: nil, all_versions: [1, 2, 3, 4])
32
+ expect(ActiveRecord::Migrator.new(:down, migrations, schema_migration).runnable.map(&:class)).to eq(
33
+ [
34
+ PostDeployMigration, UntaggedMigration, MultiMigration, PreDeployMigration
35
+ ]
36
+ )
37
+ end
38
+ end
39
+ end
@@ -1,15 +1,15 @@
1
- require 'spec_helper'
1
+ # frozen_string_literal: true
2
2
 
3
3
  describe Outrigger do
4
4
  describe 'filter' do
5
- it 'should return a proc that tests migrations' do
6
- filter = Outrigger.filter(:predeploy)
5
+ it 'returns a proc that tests migrations' do
6
+ filter = described_class.filter(:predeploy)
7
7
 
8
8
  expect(filter.call(PreDeployMigration)).to eq(true)
9
9
  end
10
10
 
11
- it 'should accept multiple tags' do
12
- filter = Outrigger.filter(:predeploy, :postdeploy)
11
+ it 'accepts multiple tags' do
12
+ filter = described_class.filter(:predeploy, :postdeploy)
13
13
 
14
14
  expect(filter.call(MultiMigration)).to eq(true)
15
15
  expect(filter.call(PreDeployMigration)).to eq(false)
@@ -1,9 +1,7 @@
1
- require 'spec_helper'
1
+ # frozen_string_literal: true
2
2
 
3
3
  describe Outrigger::Railtie do
4
- let(:subject) { Outrigger::Railtie }
5
-
6
4
  it 'provides a railtie_name' do
7
- expect(subject.railtie_name).to eq 'taggable_migrations'
5
+ expect(described_class.railtie_name).to eq 'taggable_migrations'
8
6
  end
9
7
  end
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ # frozen_string_literal: true
2
2
 
3
3
  class TestProxy
4
4
  include Outrigger::TaggableProxy
@@ -6,7 +6,7 @@ class TestProxy
6
6
  end
7
7
 
8
8
  describe Outrigger::TaggableProxy do
9
- it 'it should delegate tags to the migration' do
9
+ it 'delegates tags to the migration' do
10
10
  proxy = TestProxy.new
11
11
  proxy.migration = PreDeployMigration.new
12
12
 
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ # frozen_string_literal: true
2
2
 
3
3
  describe Outrigger::Taggable do
4
4
  it 'PreDeployMigration should be predeploy' do
data/spec/spec_helper.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'simplecov'
2
4
  SimpleCov.start do
3
5
  add_filter 'lib/outrigger/version.rb'
@@ -7,14 +9,16 @@ end
7
9
  SimpleCov.minimum_coverage(85)
8
10
 
9
11
  require 'bundler/setup'
12
+ require 'byebug'
10
13
  require 'rails/railtie'
11
14
  require 'rubocop'
12
15
  require 'rubocop/rspec/support'
13
16
 
14
17
  require 'outrigger'
15
18
 
16
- ActiveRecord::Migration.send :include, Outrigger::Taggable
17
- ActiveRecord::MigrationProxy.send :include, Outrigger::TaggableProxy
19
+ ActiveRecord::Migration.include(Outrigger::Taggable)
20
+ ActiveRecord::MigrationProxy.include(Outrigger::TaggableProxy)
21
+ ActiveRecord::Migrator.prepend(Outrigger::Migrator)
18
22
 
19
23
  class PreDeployMigration < ActiveRecord::Migration[5.0]
20
24
  tag :predeploy
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: outrigger
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Drew Bowman
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-05-31 00:00:00.000000000 Z
11
+ date: 2021-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -16,112 +16,168 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '5.0'
19
+ version: '6.0'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '5.3'
22
+ version: '6.2'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '5.0'
29
+ version: '6.0'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '5.3'
32
+ version: '6.2'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: bundler
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.15'
39
+ version: '2.2'
40
40
  type: :development
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.15'
46
+ version: '2.2'
47
+ - !ruby/object:Gem::Dependency
48
+ name: byebug
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '11.1'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '11.1'
47
61
  - !ruby/object:Gem::Dependency
48
62
  name: railties
49
63
  requirement: !ruby/object:Gem::Requirement
50
64
  requirements:
51
65
  - - ">="
52
66
  - !ruby/object:Gem::Version
53
- version: '5.0'
67
+ version: '6.0'
54
68
  - - "<"
55
69
  - !ruby/object:Gem::Version
56
- version: '5.3'
70
+ version: '6.2'
57
71
  type: :development
58
72
  prerelease: false
59
73
  version_requirements: !ruby/object:Gem::Requirement
60
74
  requirements:
61
75
  - - ">="
62
76
  - !ruby/object:Gem::Version
63
- version: '5.0'
77
+ version: '6.0'
64
78
  - - "<"
65
79
  - !ruby/object:Gem::Version
66
- version: '5.3'
80
+ version: '6.2'
67
81
  - !ruby/object:Gem::Dependency
68
82
  name: rake
69
83
  requirement: !ruby/object:Gem::Requirement
70
84
  requirements:
71
85
  - - "~>"
72
86
  - !ruby/object:Gem::Version
73
- version: '12.0'
87
+ version: '13.0'
74
88
  type: :development
75
89
  prerelease: false
76
90
  version_requirements: !ruby/object:Gem::Requirement
77
91
  requirements:
78
92
  - - "~>"
79
93
  - !ruby/object:Gem::Version
80
- version: '12.0'
94
+ version: '13.0'
81
95
  - !ruby/object:Gem::Dependency
82
96
  name: rspec
83
97
  requirement: !ruby/object:Gem::Requirement
84
98
  requirements:
85
99
  - - "~>"
86
100
  - !ruby/object:Gem::Version
87
- version: 3.7.0
101
+ version: '3.7'
88
102
  type: :development
89
103
  prerelease: false
90
104
  version_requirements: !ruby/object:Gem::Requirement
91
105
  requirements:
92
106
  - - "~>"
93
107
  - !ruby/object:Gem::Version
94
- version: 3.7.0
108
+ version: '3.7'
95
109
  - !ruby/object:Gem::Dependency
96
110
  name: rubocop
97
111
  requirement: !ruby/object:Gem::Requirement
98
112
  requirements:
99
113
  - - "~>"
100
114
  - !ruby/object:Gem::Version
101
- version: 0.52.0
115
+ version: '1.20'
102
116
  type: :development
103
117
  prerelease: false
104
118
  version_requirements: !ruby/object:Gem::Requirement
105
119
  requirements:
106
120
  - - "~>"
107
121
  - !ruby/object:Gem::Version
108
- version: 0.52.0
122
+ version: '1.20'
123
+ - !ruby/object:Gem::Dependency
124
+ name: rubocop-rake
125
+ requirement: !ruby/object:Gem::Requirement
126
+ requirements:
127
+ - - "~>"
128
+ - !ruby/object:Gem::Version
129
+ version: '0.6'
130
+ type: :development
131
+ prerelease: false
132
+ version_requirements: !ruby/object:Gem::Requirement
133
+ requirements:
134
+ - - "~>"
135
+ - !ruby/object:Gem::Version
136
+ version: '0.6'
137
+ - !ruby/object:Gem::Dependency
138
+ name: rubocop-rspec
139
+ requirement: !ruby/object:Gem::Requirement
140
+ requirements:
141
+ - - "~>"
142
+ - !ruby/object:Gem::Version
143
+ version: '2.4'
144
+ type: :development
145
+ prerelease: false
146
+ version_requirements: !ruby/object:Gem::Requirement
147
+ requirements:
148
+ - - "~>"
149
+ - !ruby/object:Gem::Version
150
+ version: '2.4'
109
151
  - !ruby/object:Gem::Dependency
110
152
  name: simplecov
111
153
  requirement: !ruby/object:Gem::Requirement
112
154
  requirements:
113
155
  - - "~>"
114
156
  - !ruby/object:Gem::Version
115
- version: '0'
157
+ version: '0.21'
158
+ type: :development
159
+ prerelease: false
160
+ version_requirements: !ruby/object:Gem::Requirement
161
+ requirements:
162
+ - - "~>"
163
+ - !ruby/object:Gem::Version
164
+ version: '0.21'
165
+ - !ruby/object:Gem::Dependency
166
+ name: wwtd
167
+ requirement: !ruby/object:Gem::Requirement
168
+ requirements:
169
+ - - "~>"
170
+ - !ruby/object:Gem::Version
171
+ version: '1.4'
116
172
  type: :development
117
173
  prerelease: false
118
174
  version_requirements: !ruby/object:Gem::Requirement
119
175
  requirements:
120
176
  - - "~>"
121
177
  - !ruby/object:Gem::Version
122
- version: '0'
178
+ version: '1.4'
123
179
  description: Migrations
124
- email:
180
+ email:
125
181
  executables: []
126
182
  extensions: []
127
183
  extra_rdoc_files: []
@@ -129,18 +185,16 @@ files:
129
185
  - Rakefile
130
186
  - lib/outrigger.rb
131
187
  - lib/outrigger/cops/migration/tagged.rb
188
+ - lib/outrigger/migrator.rb
132
189
  - lib/outrigger/railtie.rb
133
190
  - lib/outrigger/taggable.rb
134
191
  - lib/outrigger/taggable_proxy.rb
135
192
  - lib/outrigger/version.rb
136
193
  - lib/tasks/outrigger.rake
137
- - spec/gemfiles/rails-5.0.gemfile
138
- - spec/gemfiles/rails-5.0.gemfile.lock
139
- - spec/gemfiles/rails-5.1.gemfile
140
- - spec/gemfiles/rails-5.1.gemfile.lock
141
- - spec/gemfiles/rails-5.2.gemfile
142
- - spec/gemfiles/rails-5.2.gemfile.lock
194
+ - spec/gemfiles/rails_6.0.gemfile
195
+ - spec/gemfiles/rails_6.1.gemfile
143
196
  - spec/outrigger/cops/migration/tagged_spec.rb
197
+ - spec/outrigger/migrator_spec.rb
144
198
  - spec/outrigger/outrigger_spec.rb
145
199
  - spec/outrigger/railtie_spec.rb
146
200
  - spec/outrigger/taggable_proxy_spec.rb
@@ -150,34 +204,30 @@ homepage: https://github.com/instructure/outrigger
150
204
  licenses:
151
205
  - MIT
152
206
  metadata: {}
153
- post_install_message:
207
+ post_install_message:
154
208
  rdoc_options: []
155
209
  require_paths:
156
210
  - lib
157
211
  required_ruby_version: !ruby/object:Gem::Requirement
158
212
  requirements:
159
- - - "~>"
213
+ - - ">="
160
214
  - !ruby/object:Gem::Version
161
- version: '2.3'
215
+ version: '2.6'
162
216
  required_rubygems_version: !ruby/object:Gem::Requirement
163
217
  requirements:
164
218
  - - ">="
165
219
  - !ruby/object:Gem::Version
166
220
  version: '0'
167
221
  requirements: []
168
- rubyforge_project:
169
- rubygems_version: 2.6.14.1
170
- signing_key:
222
+ rubygems_version: 3.2.24
223
+ signing_key:
171
224
  specification_version: 4
172
225
  summary: Tag migrations and run them separately
173
226
  test_files:
174
- - spec/gemfiles/rails-5.0.gemfile
175
- - spec/gemfiles/rails-5.0.gemfile.lock
176
- - spec/gemfiles/rails-5.1.gemfile
177
- - spec/gemfiles/rails-5.1.gemfile.lock
178
- - spec/gemfiles/rails-5.2.gemfile
179
- - spec/gemfiles/rails-5.2.gemfile.lock
227
+ - spec/gemfiles/rails_6.0.gemfile
228
+ - spec/gemfiles/rails_6.1.gemfile
180
229
  - spec/outrigger/cops/migration/tagged_spec.rb
230
+ - spec/outrigger/migrator_spec.rb
181
231
  - spec/outrigger/outrigger_spec.rb
182
232
  - spec/outrigger/railtie_spec.rb
183
233
  - spec/outrigger/taggable_proxy_spec.rb
@@ -1,5 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gemspec path: '../../'
4
-
5
- gem 'rails', '~> 5.0.7'
@@ -1,160 +0,0 @@
1
- PATH
2
- remote: ../..
3
- specs:
4
- outrigger (1.3.0)
5
- activerecord (>= 5.0, < 5.3)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (5.0.7)
11
- actionpack (= 5.0.7)
12
- nio4r (>= 1.2, < 3.0)
13
- websocket-driver (~> 0.6.1)
14
- actionmailer (5.0.7)
15
- actionpack (= 5.0.7)
16
- actionview (= 5.0.7)
17
- activejob (= 5.0.7)
18
- mail (~> 2.5, >= 2.5.4)
19
- rails-dom-testing (~> 2.0)
20
- actionpack (5.0.7)
21
- actionview (= 5.0.7)
22
- activesupport (= 5.0.7)
23
- rack (~> 2.0)
24
- rack-test (~> 0.6.3)
25
- rails-dom-testing (~> 2.0)
26
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- actionview (5.0.7)
28
- activesupport (= 5.0.7)
29
- builder (~> 3.1)
30
- erubis (~> 2.7.0)
31
- rails-dom-testing (~> 2.0)
32
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activejob (5.0.7)
34
- activesupport (= 5.0.7)
35
- globalid (>= 0.3.6)
36
- activemodel (5.0.7)
37
- activesupport (= 5.0.7)
38
- activerecord (5.0.7)
39
- activemodel (= 5.0.7)
40
- activesupport (= 5.0.7)
41
- arel (~> 7.0)
42
- activesupport (5.0.7)
43
- concurrent-ruby (~> 1.0, >= 1.0.2)
44
- i18n (>= 0.7, < 2)
45
- minitest (~> 5.1)
46
- tzinfo (~> 1.1)
47
- arel (7.1.4)
48
- ast (2.4.0)
49
- builder (3.2.3)
50
- concurrent-ruby (1.0.5)
51
- crass (1.0.4)
52
- diff-lcs (1.3)
53
- docile (1.3.1)
54
- erubis (2.7.0)
55
- globalid (0.4.1)
56
- activesupport (>= 4.2.0)
57
- i18n (1.0.1)
58
- concurrent-ruby (~> 1.0)
59
- json (2.1.0)
60
- loofah (2.2.2)
61
- crass (~> 1.0.2)
62
- nokogiri (>= 1.5.9)
63
- mail (2.7.0)
64
- mini_mime (>= 0.1.1)
65
- method_source (0.9.0)
66
- mini_mime (1.0.0)
67
- mini_portile2 (2.3.0)
68
- minitest (5.11.3)
69
- nio4r (2.3.1)
70
- nokogiri (1.8.2)
71
- mini_portile2 (~> 2.3.0)
72
- parallel (1.12.1)
73
- parser (2.5.1.0)
74
- ast (~> 2.4.0)
75
- powerpack (0.1.1)
76
- rack (2.0.5)
77
- rack-test (0.6.3)
78
- rack (>= 1.0)
79
- rails (5.0.7)
80
- actioncable (= 5.0.7)
81
- actionmailer (= 5.0.7)
82
- actionpack (= 5.0.7)
83
- actionview (= 5.0.7)
84
- activejob (= 5.0.7)
85
- activemodel (= 5.0.7)
86
- activerecord (= 5.0.7)
87
- activesupport (= 5.0.7)
88
- bundler (>= 1.3.0)
89
- railties (= 5.0.7)
90
- sprockets-rails (>= 2.0.0)
91
- rails-dom-testing (2.0.3)
92
- activesupport (>= 4.2.0)
93
- nokogiri (>= 1.6)
94
- rails-html-sanitizer (1.0.4)
95
- loofah (~> 2.2, >= 2.2.2)
96
- railties (5.0.7)
97
- actionpack (= 5.0.7)
98
- activesupport (= 5.0.7)
99
- method_source
100
- rake (>= 0.8.7)
101
- thor (>= 0.18.1, < 2.0)
102
- rainbow (3.0.0)
103
- rake (12.3.1)
104
- rspec (3.7.0)
105
- rspec-core (~> 3.7.0)
106
- rspec-expectations (~> 3.7.0)
107
- rspec-mocks (~> 3.7.0)
108
- rspec-core (3.7.1)
109
- rspec-support (~> 3.7.0)
110
- rspec-expectations (3.7.0)
111
- diff-lcs (>= 1.2.0, < 2.0)
112
- rspec-support (~> 3.7.0)
113
- rspec-mocks (3.7.0)
114
- diff-lcs (>= 1.2.0, < 2.0)
115
- rspec-support (~> 3.7.0)
116
- rspec-support (3.7.1)
117
- rubocop (0.52.1)
118
- parallel (~> 1.10)
119
- parser (>= 2.4.0.2, < 3.0)
120
- powerpack (~> 0.1)
121
- rainbow (>= 2.2.2, < 4.0)
122
- ruby-progressbar (~> 1.7)
123
- unicode-display_width (~> 1.0, >= 1.0.1)
124
- ruby-progressbar (1.9.0)
125
- simplecov (0.16.1)
126
- docile (~> 1.1)
127
- json (>= 1.8, < 3)
128
- simplecov-html (~> 0.10.0)
129
- simplecov-html (0.10.2)
130
- sprockets (3.7.1)
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
- thor (0.20.0)
138
- thread_safe (0.3.6)
139
- tzinfo (1.2.5)
140
- thread_safe (~> 0.1)
141
- unicode-display_width (1.3.3)
142
- websocket-driver (0.6.5)
143
- websocket-extensions (>= 0.1.0)
144
- websocket-extensions (0.1.3)
145
-
146
- PLATFORMS
147
- ruby
148
-
149
- DEPENDENCIES
150
- bundler (~> 1.15)
151
- outrigger!
152
- rails (~> 5.0.7)
153
- railties (>= 5.0, < 5.3)
154
- rake (~> 12.0)
155
- rspec (~> 3.7.0)
156
- rubocop (~> 0.52.0)
157
- simplecov (~> 0)
158
-
159
- BUNDLED WITH
160
- 1.15.3
@@ -1,5 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gemspec path: '../../'
4
-
5
- gem 'rails', '~> 5.1.6'
@@ -1,160 +0,0 @@
1
- PATH
2
- remote: ../..
3
- specs:
4
- outrigger (1.3.0)
5
- activerecord (>= 5.0, < 5.3)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (5.1.6)
11
- actionpack (= 5.1.6)
12
- nio4r (~> 2.0)
13
- websocket-driver (~> 0.6.1)
14
- actionmailer (5.1.6)
15
- actionpack (= 5.1.6)
16
- actionview (= 5.1.6)
17
- activejob (= 5.1.6)
18
- mail (~> 2.5, >= 2.5.4)
19
- rails-dom-testing (~> 2.0)
20
- actionpack (5.1.6)
21
- actionview (= 5.1.6)
22
- activesupport (= 5.1.6)
23
- rack (~> 2.0)
24
- rack-test (>= 0.6.3)
25
- rails-dom-testing (~> 2.0)
26
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- actionview (5.1.6)
28
- activesupport (= 5.1.6)
29
- builder (~> 3.1)
30
- erubi (~> 1.4)
31
- rails-dom-testing (~> 2.0)
32
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activejob (5.1.6)
34
- activesupport (= 5.1.6)
35
- globalid (>= 0.3.6)
36
- activemodel (5.1.6)
37
- activesupport (= 5.1.6)
38
- activerecord (5.1.6)
39
- activemodel (= 5.1.6)
40
- activesupport (= 5.1.6)
41
- arel (~> 8.0)
42
- activesupport (5.1.6)
43
- concurrent-ruby (~> 1.0, >= 1.0.2)
44
- i18n (>= 0.7, < 2)
45
- minitest (~> 5.1)
46
- tzinfo (~> 1.1)
47
- arel (8.0.0)
48
- ast (2.4.0)
49
- builder (3.2.3)
50
- concurrent-ruby (1.0.5)
51
- crass (1.0.4)
52
- diff-lcs (1.3)
53
- docile (1.3.1)
54
- erubi (1.7.1)
55
- globalid (0.4.1)
56
- activesupport (>= 4.2.0)
57
- i18n (1.0.1)
58
- concurrent-ruby (~> 1.0)
59
- json (2.1.0)
60
- loofah (2.2.2)
61
- crass (~> 1.0.2)
62
- nokogiri (>= 1.5.9)
63
- mail (2.7.0)
64
- mini_mime (>= 0.1.1)
65
- method_source (0.9.0)
66
- mini_mime (1.0.0)
67
- mini_portile2 (2.3.0)
68
- minitest (5.11.3)
69
- nio4r (2.3.1)
70
- nokogiri (1.8.2)
71
- mini_portile2 (~> 2.3.0)
72
- parallel (1.12.1)
73
- parser (2.5.1.0)
74
- ast (~> 2.4.0)
75
- powerpack (0.1.1)
76
- rack (2.0.5)
77
- rack-test (1.0.0)
78
- rack (>= 1.0, < 3)
79
- rails (5.1.6)
80
- actioncable (= 5.1.6)
81
- actionmailer (= 5.1.6)
82
- actionpack (= 5.1.6)
83
- actionview (= 5.1.6)
84
- activejob (= 5.1.6)
85
- activemodel (= 5.1.6)
86
- activerecord (= 5.1.6)
87
- activesupport (= 5.1.6)
88
- bundler (>= 1.3.0)
89
- railties (= 5.1.6)
90
- sprockets-rails (>= 2.0.0)
91
- rails-dom-testing (2.0.3)
92
- activesupport (>= 4.2.0)
93
- nokogiri (>= 1.6)
94
- rails-html-sanitizer (1.0.4)
95
- loofah (~> 2.2, >= 2.2.2)
96
- railties (5.1.6)
97
- actionpack (= 5.1.6)
98
- activesupport (= 5.1.6)
99
- method_source
100
- rake (>= 0.8.7)
101
- thor (>= 0.18.1, < 2.0)
102
- rainbow (3.0.0)
103
- rake (12.3.1)
104
- rspec (3.7.0)
105
- rspec-core (~> 3.7.0)
106
- rspec-expectations (~> 3.7.0)
107
- rspec-mocks (~> 3.7.0)
108
- rspec-core (3.7.1)
109
- rspec-support (~> 3.7.0)
110
- rspec-expectations (3.7.0)
111
- diff-lcs (>= 1.2.0, < 2.0)
112
- rspec-support (~> 3.7.0)
113
- rspec-mocks (3.7.0)
114
- diff-lcs (>= 1.2.0, < 2.0)
115
- rspec-support (~> 3.7.0)
116
- rspec-support (3.7.1)
117
- rubocop (0.52.1)
118
- parallel (~> 1.10)
119
- parser (>= 2.4.0.2, < 3.0)
120
- powerpack (~> 0.1)
121
- rainbow (>= 2.2.2, < 4.0)
122
- ruby-progressbar (~> 1.7)
123
- unicode-display_width (~> 1.0, >= 1.0.1)
124
- ruby-progressbar (1.9.0)
125
- simplecov (0.16.1)
126
- docile (~> 1.1)
127
- json (>= 1.8, < 3)
128
- simplecov-html (~> 0.10.0)
129
- simplecov-html (0.10.2)
130
- sprockets (3.7.1)
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
- thor (0.20.0)
138
- thread_safe (0.3.6)
139
- tzinfo (1.2.5)
140
- thread_safe (~> 0.1)
141
- unicode-display_width (1.3.3)
142
- websocket-driver (0.6.5)
143
- websocket-extensions (>= 0.1.0)
144
- websocket-extensions (0.1.3)
145
-
146
- PLATFORMS
147
- ruby
148
-
149
- DEPENDENCIES
150
- bundler (~> 1.15)
151
- outrigger!
152
- rails (~> 5.1.6)
153
- railties (>= 5.0, < 5.3)
154
- rake (~> 12.0)
155
- rspec (~> 3.7.0)
156
- rubocop (~> 0.52.0)
157
- simplecov (~> 0)
158
-
159
- BUNDLED WITH
160
- 1.15.3
@@ -1,5 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gemspec path: '../../'
4
-
5
- gem 'rails', '~> 5.2.0'
@@ -1,168 +0,0 @@
1
- PATH
2
- remote: ../..
3
- specs:
4
- outrigger (1.3.0)
5
- activerecord (>= 5.0, < 5.3)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (5.2.0)
11
- actionpack (= 5.2.0)
12
- nio4r (~> 2.0)
13
- websocket-driver (>= 0.6.1)
14
- actionmailer (5.2.0)
15
- actionpack (= 5.2.0)
16
- actionview (= 5.2.0)
17
- activejob (= 5.2.0)
18
- mail (~> 2.5, >= 2.5.4)
19
- rails-dom-testing (~> 2.0)
20
- actionpack (5.2.0)
21
- actionview (= 5.2.0)
22
- activesupport (= 5.2.0)
23
- rack (~> 2.0)
24
- rack-test (>= 0.6.3)
25
- rails-dom-testing (~> 2.0)
26
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- actionview (5.2.0)
28
- activesupport (= 5.2.0)
29
- builder (~> 3.1)
30
- erubi (~> 1.4)
31
- rails-dom-testing (~> 2.0)
32
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activejob (5.2.0)
34
- activesupport (= 5.2.0)
35
- globalid (>= 0.3.6)
36
- activemodel (5.2.0)
37
- activesupport (= 5.2.0)
38
- activerecord (5.2.0)
39
- activemodel (= 5.2.0)
40
- activesupport (= 5.2.0)
41
- arel (>= 9.0)
42
- activestorage (5.2.0)
43
- actionpack (= 5.2.0)
44
- activerecord (= 5.2.0)
45
- marcel (~> 0.3.1)
46
- activesupport (5.2.0)
47
- concurrent-ruby (~> 1.0, >= 1.0.2)
48
- i18n (>= 0.7, < 2)
49
- minitest (~> 5.1)
50
- tzinfo (~> 1.1)
51
- arel (9.0.0)
52
- ast (2.4.0)
53
- builder (3.2.3)
54
- concurrent-ruby (1.0.5)
55
- crass (1.0.4)
56
- diff-lcs (1.3)
57
- docile (1.3.1)
58
- erubi (1.7.1)
59
- globalid (0.4.1)
60
- activesupport (>= 4.2.0)
61
- i18n (1.0.1)
62
- concurrent-ruby (~> 1.0)
63
- json (2.1.0)
64
- loofah (2.2.2)
65
- crass (~> 1.0.2)
66
- nokogiri (>= 1.5.9)
67
- mail (2.7.0)
68
- mini_mime (>= 0.1.1)
69
- marcel (0.3.2)
70
- mimemagic (~> 0.3.2)
71
- method_source (0.9.0)
72
- mimemagic (0.3.2)
73
- mini_mime (1.0.0)
74
- mini_portile2 (2.3.0)
75
- minitest (5.11.3)
76
- nio4r (2.3.1)
77
- nokogiri (1.8.2)
78
- mini_portile2 (~> 2.3.0)
79
- parallel (1.12.1)
80
- parser (2.5.1.0)
81
- ast (~> 2.4.0)
82
- powerpack (0.1.1)
83
- rack (2.0.5)
84
- rack-test (1.0.0)
85
- rack (>= 1.0, < 3)
86
- rails (5.2.0)
87
- actioncable (= 5.2.0)
88
- actionmailer (= 5.2.0)
89
- actionpack (= 5.2.0)
90
- actionview (= 5.2.0)
91
- activejob (= 5.2.0)
92
- activemodel (= 5.2.0)
93
- activerecord (= 5.2.0)
94
- activestorage (= 5.2.0)
95
- activesupport (= 5.2.0)
96
- bundler (>= 1.3.0)
97
- railties (= 5.2.0)
98
- sprockets-rails (>= 2.0.0)
99
- rails-dom-testing (2.0.3)
100
- activesupport (>= 4.2.0)
101
- nokogiri (>= 1.6)
102
- rails-html-sanitizer (1.0.4)
103
- loofah (~> 2.2, >= 2.2.2)
104
- railties (5.2.0)
105
- actionpack (= 5.2.0)
106
- activesupport (= 5.2.0)
107
- method_source
108
- rake (>= 0.8.7)
109
- thor (>= 0.18.1, < 2.0)
110
- rainbow (3.0.0)
111
- rake (12.3.1)
112
- rspec (3.7.0)
113
- rspec-core (~> 3.7.0)
114
- rspec-expectations (~> 3.7.0)
115
- rspec-mocks (~> 3.7.0)
116
- rspec-core (3.7.1)
117
- rspec-support (~> 3.7.0)
118
- rspec-expectations (3.7.0)
119
- diff-lcs (>= 1.2.0, < 2.0)
120
- rspec-support (~> 3.7.0)
121
- rspec-mocks (3.7.0)
122
- diff-lcs (>= 1.2.0, < 2.0)
123
- rspec-support (~> 3.7.0)
124
- rspec-support (3.7.1)
125
- rubocop (0.52.1)
126
- parallel (~> 1.10)
127
- parser (>= 2.4.0.2, < 3.0)
128
- powerpack (~> 0.1)
129
- rainbow (>= 2.2.2, < 4.0)
130
- ruby-progressbar (~> 1.7)
131
- unicode-display_width (~> 1.0, >= 1.0.1)
132
- ruby-progressbar (1.9.0)
133
- simplecov (0.16.1)
134
- docile (~> 1.1)
135
- json (>= 1.8, < 3)
136
- simplecov-html (~> 0.10.0)
137
- simplecov-html (0.10.2)
138
- sprockets (3.7.1)
139
- concurrent-ruby (~> 1.0)
140
- rack (> 1, < 3)
141
- sprockets-rails (3.2.1)
142
- actionpack (>= 4.0)
143
- activesupport (>= 4.0)
144
- sprockets (>= 3.0.0)
145
- thor (0.20.0)
146
- thread_safe (0.3.6)
147
- tzinfo (1.2.5)
148
- thread_safe (~> 0.1)
149
- unicode-display_width (1.3.3)
150
- websocket-driver (0.7.0)
151
- websocket-extensions (>= 0.1.0)
152
- websocket-extensions (0.1.3)
153
-
154
- PLATFORMS
155
- ruby
156
-
157
- DEPENDENCIES
158
- bundler (~> 1.15)
159
- outrigger!
160
- rails (~> 5.2.0)
161
- railties (>= 5.0, < 5.3)
162
- rake (~> 12.0)
163
- rspec (~> 3.7.0)
164
- rubocop (~> 0.52.0)
165
- simplecov (~> 0)
166
-
167
- BUNDLED WITH
168
- 1.15.3