pact_broker 2.7.0.beta.1 → 2.7.0.beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/CHANGELOG.md +30 -4
- data/db/migrations/{01_create_pacticipant_table.rb → 000001_create_pacticipant_table.rb} +0 -0
- data/db/migrations/{02_create_versions_table.rb → 000002_create_versions_table.rb} +0 -0
- data/db/migrations/{03_create_pacts_table.rb → 000003_create_pacts_table.rb} +0 -0
- data/db/migrations/{04_create_tags_table.rb → 000004_create_tags_table.rb} +0 -0
- data/db/migrations/{05_add_order_column_to_version.rb → 000005_add_order_column_to_version.rb} +0 -0
- data/db/migrations/{06_make_version_foreign_key_mandatory.rb → 000006_make_version_foreign_key_mandatory.rb} +0 -0
- data/db/migrations/{07_increase_json_content_length.rb → 000007_increase_json_content_length.rb} +0 -0
- data/db/migrations/{08_create_latest_pact_view.rb → 000008_create_latest_pact_view.rb} +0 -0
- data/db/migrations/{09_add_timestamps.rb → 000009_add_timestamps.rb} +0 -0
- data/db/migrations/{10_populate_timestamps.rb → 000010_populate_timestamps.rb} +0 -0
- data/db/migrations/{11_made_timestamps_mandatory.rb → 000011_made_timestamps_mandatory.rb} +0 -0
- data/db/migrations/{12_create_webhooks_table.rb → 000012_create_webhooks_table.rb} +0 -0
- data/db/migrations/{13_add_columns_to_webhooks.rb → 000013_add_columns_to_webhooks.rb} +0 -0
- data/db/migrations/{14_add_timestamps_to_pact_views.rb → 000014_add_timestamps_to_pact_views.rb} +0 -0
- data/db/migrations/{15_create_pact_version_content.rb → 000015_create_pact_version_content.rb} +0 -0
- data/db/migrations/{16_add_pact_content_foreign_key_to_pacts.rb → 000016_add_pact_content_foreign_key_to_pacts.rb} +0 -0
- data/db/migrations/{17_migrate_json_content_to_pact_version_content_table.rb → 000017_migrate_json_content_to_pact_version_content_table.rb} +0 -0
- data/db/migrations/{18_drop_json_content_column_from_pacts.rb → 000018_drop_json_content_column_from_pacts.rb} +0 -0
- data/db/migrations/{19_make_pact_version_content_sha_not_nullable.rb → 000019_make_pact_version_content_sha_not_nullable.rb} +0 -0
- data/db/migrations/{20_add_pact_version_content_sha_to_all_pacts_view.rb → 000020_add_pact_version_content_sha_to_all_pacts_view.rb} +0 -0
- data/db/migrations/{21_recreate_latest_pacts_view.rb → 000021_recreate_latest_pacts_view.rb} +0 -0
- data/db/migrations/{22_create_latest_tagged_pacts_view.rb → 000022_create_latest_tagged_pacts_view.rb} +0 -0
- data/db/migrations/{23_create_pact_versions_table.rb → 000023_create_pact_versions_table.rb} +0 -0
- data/db/migrations/{24_populate_pact_versions.rb → 000024_populate_pact_versions.rb} +0 -0
- data/db/migrations/{25_make_pv_pacticipants_mandatory.rb → 000025_make_pv_pacticipants_mandatory.rb} +0 -0
- data/db/migrations/{26_create_pact_publications.rb → 000026_create_pact_publications.rb} +0 -0
- data/db/migrations/{27_populate_pact_publications.rb → 000027_populate_pact_publications.rb} +0 -0
- data/db/migrations/{28_create_all_pact_publications.rb → 000028_create_all_pact_publications.rb} +0 -0
- data/db/migrations/{29_create_latest_tagged_pact_publications.rb → 000029_create_latest_tagged_pact_publications.rb} +0 -0
- data/db/migrations/{30_drop_old_tables_and_views.rb → 000030_drop_old_tables_and_views.rb} +0 -0
- data/db/migrations/{31_create_verifications.rb → 000031_create_verifications.rb} +0 -0
- data/db/migrations/{32_create_latest_verifications.rb → 000032_create_latest_verifications.rb} +0 -0
- data/db/migrations/{33_create_config_table.rb → 000033_create_config_table.rb} +0 -0
- data/db/migrations/{34_create_index_on_consumer_version_order.rb → 000034_create_index_on_consumer_version_order.rb} +0 -0
- data/db/migrations/{35_create_index_on_names.rb → 000035_create_index_on_names.rb} +0 -0
- data/db/migrations/{36_create_webhook_execution.rb → 000036_create_webhook_execution.rb} +0 -0
- data/db/migrations/{37_create_labels_table.rb → 000037_create_labels_table.rb} +0 -0
- data/db/migrations/{38_create_triggered_webhooks_table.rb → 000038_create_triggered_webhooks_table.rb} +0 -0
- data/db/migrations/{39_add_triggered_webhooks_fk_to_execution.rb → 000039_add_triggered_webhooks_fk_to_execution.rb} +0 -0
- data/db/migrations/{40_create_latest_triggered_webhooks_view.rb → 000040_create_latest_triggered_webhooks_view.rb} +0 -0
- data/db/migrations/{41_migrate_execution_data.rb → 000041_migrate_execution_data.rb} +0 -0
- data/db/migrations/{42_delete_orphan_webhook_data.rb → 000042_delete_orphan_webhook_data.rb} +0 -0
- data/db/migrations/{43_add_provider_version_to_verification.rb → 000043_add_provider_version_to_verification.rb} +0 -0
- data/db/migrations/{44_populate_verifications_provider_version_id.rb → 000044_populate_verifications_provider_version_id.rb} +0 -0
- data/db/migrations/{45_set_verification_provider_number_nullable.rb → 000045_set_verification_provider_number_nullable.rb} +0 -0
- data/db/migrations/{46_recreate_latest_verifications.rb → 000046_recreate_latest_verifications.rb} +0 -0
- data/db/migrations/{47_create_all_verifications.rb → 000047_create_all_verifications.rb} +4 -0
- data/db/pact_broker_database.sqlite3 +0 -0
- data/db/test/backwards_compatibility/Appraisals +8 -0
- data/db/test/backwards_compatibility/Rakefile +23 -6
- data/db/test/backwards_compatibility/gemfiles/1.18.0.gemfile.lock +20 -19
- data/db/test/backwards_compatibility/gemfiles/2.0.0.gemfile.lock +20 -19
- data/db/test/backwards_compatibility/gemfiles/2.1.0.gemfile.lock +20 -19
- data/db/test/backwards_compatibility/gemfiles/2.2.0.gemfile.lock +29 -26
- data/db/test/backwards_compatibility/gemfiles/2.3.0.gemfile.lock +29 -26
- data/db/test/backwards_compatibility/gemfiles/2.4.2.gemfile.lock +29 -26
- data/db/test/backwards_compatibility/gemfiles/2.5.1.gemfile +13 -0
- data/db/test/backwards_compatibility/gemfiles/2.5.1.gemfile.lock +199 -0
- data/db/test/backwards_compatibility/gemfiles/2.6.0.gemfile +13 -0
- data/db/test/backwards_compatibility/gemfiles/2.6.0.gemfile.lock +199 -0
- data/db/test/backwards_compatibility/gemfiles/head.gemfile.lock +30 -27
- data/db/test/backwards_compatibility/spec/publish_pact_spec.rb +1 -1
- data/db/test/change_migration_strategy/Rakefile +21 -0
- data/db/test/change_migration_strategy/before/Gemfile +6 -0
- data/lib/pact_broker/api/decorators/matrix_decorator.rb +19 -1
- data/lib/pact_broker/api/decorators/matrix_text_decorator.rb +29 -0
- data/lib/pact_broker/api/renderers/html_pact_renderer.rb +1 -1
- data/lib/pact_broker/api/resources/matrix.rb +21 -11
- data/lib/pact_broker/api/resources/matrix_for_consumer_and_provider.rb +2 -2
- data/lib/pact_broker/app.rb +27 -2
- data/lib/pact_broker/db/migrate.rb +1 -1
- data/lib/pact_broker/db/version.rb +4 -5
- data/lib/pact_broker/db.rb +1 -1
- data/lib/pact_broker/domain/relationship.rb +4 -24
- data/lib/pact_broker/matrix/parse_query.rb +22 -0
- data/lib/pact_broker/matrix/repository.rb +57 -26
- data/lib/pact_broker/matrix/service.rb +23 -16
- data/lib/pact_broker/pacticipants/service.rb +5 -21
- data/lib/pact_broker/pacts/pact_publication.rb +0 -4
- data/lib/pact_broker/pacts/repository.rb +1 -1
- data/lib/pact_broker/tags/service.rb +1 -0
- data/lib/pact_broker/ui/controllers/matrix.rb +3 -2
- data/lib/pact_broker/ui/controllers/relationships.rb +2 -2
- data/lib/pact_broker/ui/view_models/matrix_line.rb +38 -5
- data/lib/pact_broker/ui/view_models/relationship.rb +1 -19
- data/lib/pact_broker/ui/views/matrix/show.haml +18 -3
- data/lib/pact_broker/ui/views/relationships/show.haml +2 -2
- data/lib/pact_broker/verifications/repository.rb +0 -3
- data/lib/pact_broker/version.rb +1 -1
- data/lib/rack/hal_browser/redirect.rb +2 -2
- data/lib/rack/pact_broker/configurable_make_it_later.rb +24 -0
- data/lib/rack/pact_broker/no_auth.rb +13 -0
- data/pact_broker.gemspec +1 -0
- data/script/seed-matrix.rb +71 -0
- data/script/seed.rb +0 -5
- data/spec/features/get_matrix_spec.rb +4 -1
- data/spec/lib/pact_broker/api/decorators/matrix_decorator_spec.rb +41 -7
- data/spec/lib/pact_broker/api/resources/matrix_spec.rb +6 -2
- data/spec/lib/pact_broker/app_spec.rb +69 -0
- data/spec/lib/pact_broker/domain/relationship_spec.rb +1 -1
- data/spec/lib/pact_broker/matrix/parse_query_spec.rb +79 -0
- data/spec/lib/pact_broker/matrix/repository_spec.rb +244 -12
- data/spec/lib/pact_broker/matrix/service_spec.rb +39 -9
- data/spec/lib/pact_broker/pacticipants/service_spec.rb +4 -78
- data/spec/lib/pact_broker/pacts/repository_spec.rb +14 -16
- data/spec/lib/pact_broker/ui/view_models/relationship_spec.rb +5 -4
- data/spec/migrations/change_migration_strategy_spec.rb +86 -0
- data/spec/service_consumers/provider_states_for_pact_broker_client.rb +34 -0
- data/spec/support/test_data_builder.rb +6 -0
- data/tasks/database.rb +1 -1
- metadata +78 -52
- data/lib/pact_broker/ui/views/relationships/show-prod-tags.haml +0 -83
- data/spec/lib/pact_broker/pacts/pact_publication_spec.rb +0 -35
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 55ed087a4bac3721c9d21d00522d4aa6af0d804b
|
|
4
|
+
data.tar.gz: 1b6058269a9c42452b3fc0ac7321f7467ee97f62
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 86f0f33980f4d8be7f9d19a391f6fc5329dd2c40d99a25ad08580181c30459b5dad4c80b4fd45c5e923e6edc0b54f5d507a950185a0c20c2ec7077a20eeba1b3
|
|
7
|
+
data.tar.gz: d29c13d0da4027ee2876759e7fcd31bc46f4819a65f935da844808bc3b06315ccbbd5dcdf33ad7c43ec28c6bd2becd32ce21148aa7408258a3d10d208ef2e877
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,36 @@
|
|
|
1
|
-
<a name="v2.7.0.beta.
|
|
2
|
-
### v2.7.0.beta.
|
|
1
|
+
<a name="v2.7.0.beta.2"></a>
|
|
2
|
+
### v2.7.0.beta.2 (2017-10-31)
|
|
3
3
|
|
|
4
4
|
#### Features
|
|
5
5
|
|
|
6
|
-
* **
|
|
7
|
-
*
|
|
6
|
+
* **matrix**
|
|
7
|
+
* add reason text to summary ([f979210](/../../commit/f979210))
|
|
8
|
+
* add text/plain content type for easier visualisation of matrix resource in terminal ([bab7720](/../../commit/bab7720))
|
|
9
|
+
* allow matrix rows to be returned for all versions of a pacticipant ([6d37545](/../../commit/6d37545))
|
|
10
|
+
* allow multiple verification statuses to be queried for using status[]= ([fba2771](/../../commit/fba2771))
|
|
11
|
+
* allow success param to be specified in query params ([2fb5817](/../../commit/2fb5817))
|
|
12
|
+
* change query params for matrix to use q[][pacticipant]=? and q[][version]=? ([e3913f7](/../../commit/e3913f7))
|
|
13
|
+
* return failure and success lines in matrix response, and a summary indicating whether the specified versions are compatible or not ([8783ef8](/../../commit/8783ef8))
|
|
14
|
+
* add method to find all matrix lines for a list of versions, regardless of verification status ([52755fd](/../../commit/52755fd))
|
|
15
|
+
* add pact publication and verification dates to response ([f0cc32b](/../../commit/f0cc32b))
|
|
16
|
+
* add validation errors to matrix resource ([7f91710](/../../commit/7f91710))
|
|
17
|
+
* allow matrix columns to be sorted ([7d22eb8](/../../commit/7d22eb8))
|
|
18
|
+
* add simple ui ([36f9480](/../../commit/36f9480))
|
|
19
|
+
* add endpoint for consumer/provider verification matrix ([6925dcb](/../../commit/6925dcb))
|
|
20
|
+
|
|
21
|
+
* rename 'hal browser' links to 'api browser' ([11d3464](/../../commit/11d3464))
|
|
22
|
+
* use timestamp migrator during app startup ([a87f393](/../../commit/a87f393))
|
|
23
|
+
* convert paths ending in .json to Accept: application/hal+json ([d81f129](/../../commit/d81f129))
|
|
24
|
+
|
|
25
|
+
* **auth**
|
|
26
|
+
* cascade UI before diagnostic api and broker api ([1b95461](/../../commit/1b95461))
|
|
27
|
+
|
|
28
|
+
* **verifications**
|
|
29
|
+
* create and link provider version resource when verification is published ([3014a8b](/../../commit/3014a8b))
|
|
30
|
+
|
|
31
|
+
#### Bug Fixes
|
|
32
|
+
|
|
33
|
+
* show webhook status as not_run when all triggered webhooks are not_run ([2d014b2](/../../commit/2d014b2))
|
|
8
34
|
|
|
9
35
|
<a name="v2.6.0"></a>
|
|
10
36
|
### v2.6.0 (2017-10-06)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/db/migrations/{05_add_order_column_to_version.rb → 000005_add_order_column_to_version.rb}
RENAMED
|
File without changes
|
|
File without changes
|
data/db/migrations/{07_increase_json_content_length.rb → 000007_increase_json_content_length.rb}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/db/migrations/{14_add_timestamps_to_pact_views.rb → 000014_add_timestamps_to_pact_views.rb}
RENAMED
|
File without changes
|
data/db/migrations/{15_create_pact_version_content.rb → 000015_create_pact_version_content.rb}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/db/migrations/{21_recreate_latest_pacts_view.rb → 000021_recreate_latest_pacts_view.rb}
RENAMED
|
File without changes
|
|
File without changes
|
data/db/migrations/{23_create_pact_versions_table.rb → 000023_create_pact_versions_table.rb}
RENAMED
|
File without changes
|
|
File without changes
|
data/db/migrations/{25_make_pv_pacticipants_mandatory.rb → 000025_make_pv_pacticipants_mandatory.rb}
RENAMED
|
File without changes
|
|
File without changes
|
data/db/migrations/{27_populate_pact_publications.rb → 000027_populate_pact_publications.rb}
RENAMED
|
File without changes
|
data/db/migrations/{28_create_all_pact_publications.rb → 000028_create_all_pact_publications.rb}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/db/migrations/{32_create_latest_verifications.rb → 000032_create_latest_verifications.rb}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/db/migrations/{42_delete_orphan_webhook_data.rb → 000042_delete_orphan_webhook_data.rb}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/db/migrations/{46_recreate_latest_verifications.rb → 000046_recreate_latest_verifications.rb}
RENAMED
|
File without changes
|
|
Binary file
|
|
@@ -44,6 +44,14 @@ appraise "2.4.2" do
|
|
|
44
44
|
gem "pact_broker", "2.4.2"
|
|
45
45
|
end
|
|
46
46
|
|
|
47
|
+
appraise "2.5.1" do
|
|
48
|
+
gem "pact_broker", "2.5.1"
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
appraise "2.6.0" do
|
|
52
|
+
gem "pact_broker", "2.5.1"
|
|
53
|
+
end
|
|
54
|
+
|
|
47
55
|
appraise "head" do
|
|
48
56
|
gem "pact_broker", path: "../../../"
|
|
49
57
|
end
|
|
@@ -1,26 +1,38 @@
|
|
|
1
1
|
require 'rspec/core'
|
|
2
2
|
require 'rspec/core/rake_task'
|
|
3
|
+
require 'open-uri'
|
|
3
4
|
|
|
4
5
|
TESTS = [
|
|
5
|
-
%w{
|
|
6
|
-
%w{2.4.2 9296},
|
|
7
|
-
%w{2.3.0 9295},
|
|
6
|
+
%w{2.1.0 9293},
|
|
8
7
|
%w{2.2.0 9294},
|
|
9
|
-
%w{2.
|
|
8
|
+
%w{2.3.0 9295},
|
|
9
|
+
%w{2.4.2 9296},
|
|
10
|
+
%w{2.5.1 9297},
|
|
11
|
+
%w{2.6.0 9298},
|
|
12
|
+
%w{head 9299}
|
|
10
13
|
]
|
|
11
14
|
|
|
12
15
|
DATABASE_VERSION = TESTS.first.first
|
|
13
16
|
|
|
14
17
|
def start_pact_broker code_version, port
|
|
15
18
|
Bundler.with_clean_env do
|
|
16
|
-
|
|
19
|
+
command = "bundle exec appraisal #{code_version} rackup -p #{port}"
|
|
20
|
+
puts command
|
|
21
|
+
IO.popen(command)
|
|
17
22
|
end
|
|
23
|
+
sleep 2
|
|
18
24
|
end
|
|
19
25
|
|
|
20
26
|
def kill_servers
|
|
21
27
|
Dir.chdir('pids') { Dir.glob("*") }.collect(&:to_i).each do | pid |
|
|
22
|
-
|
|
28
|
+
begin
|
|
29
|
+
puts "Killing broker with pid #{pid}"
|
|
30
|
+
Process.kill 'KILL', pid
|
|
31
|
+
rescue Errno::ESRCH
|
|
32
|
+
puts "Process with pid #{pid} already killed"
|
|
33
|
+
end
|
|
23
34
|
end
|
|
35
|
+
sleep 2
|
|
24
36
|
end
|
|
25
37
|
|
|
26
38
|
def clean
|
|
@@ -42,7 +54,12 @@ task 'db:check_backwards_compatibility' do
|
|
|
42
54
|
begin
|
|
43
55
|
TESTS.each do | (code_version, port) |
|
|
44
56
|
start_pact_broker code_version, port
|
|
57
|
+
end
|
|
45
58
|
|
|
59
|
+
# All the brokers must be started before we run the tests
|
|
60
|
+
# so that we have the latest version of the db running
|
|
61
|
+
|
|
62
|
+
TESTS.each do | (code_version, port) |
|
|
46
63
|
ENV['PACT_BROKER_CODE_VERSION'] = code_version
|
|
47
64
|
ENV['PORT'] = port
|
|
48
65
|
Rake::Task["spec"].execute
|
|
@@ -14,8 +14,8 @@ GEM
|
|
|
14
14
|
awesome_print (1.8.0)
|
|
15
15
|
blockenspiel (0.5.0)
|
|
16
16
|
concurrent-ruby (1.0.5)
|
|
17
|
-
daemons (1.2.
|
|
18
|
-
declarative (0.0.
|
|
17
|
+
daemons (1.2.5)
|
|
18
|
+
declarative (0.0.10)
|
|
19
19
|
declarative-builder (0.1.0)
|
|
20
20
|
declarative-option (< 0.2.0)
|
|
21
21
|
declarative-option (0.1.0)
|
|
@@ -31,10 +31,10 @@ GEM
|
|
|
31
31
|
dry-container (0.6.0)
|
|
32
32
|
concurrent-ruby (~> 1.0)
|
|
33
33
|
dry-configurable (~> 0.1, >= 0.1.3)
|
|
34
|
-
dry-core (0.3.
|
|
34
|
+
dry-core (0.3.4)
|
|
35
35
|
concurrent-ruby (~> 1.0)
|
|
36
36
|
dry-equalizer (0.2.0)
|
|
37
|
-
dry-logic (0.4.
|
|
37
|
+
dry-logic (0.4.2)
|
|
38
38
|
dry-container (~> 0.2, >= 0.2.6)
|
|
39
39
|
dry-core (~> 0.2)
|
|
40
40
|
dry-equalizer (~> 0.2)
|
|
@@ -62,7 +62,8 @@ GEM
|
|
|
62
62
|
url_mount (~> 0.2.1)
|
|
63
63
|
httparty (0.15.6)
|
|
64
64
|
multi_xml (>= 0.5.2)
|
|
65
|
-
i18n (0.
|
|
65
|
+
i18n (0.9.0)
|
|
66
|
+
concurrent-ruby (~> 1.0)
|
|
66
67
|
inflecto (0.0.2)
|
|
67
68
|
json (2.1.0)
|
|
68
69
|
minitest (5.10.3)
|
|
@@ -135,7 +136,7 @@ GEM
|
|
|
135
136
|
rack-proxy (~> 0.6, >= 0.6.1)
|
|
136
137
|
rack-test (0.6.3)
|
|
137
138
|
rack (>= 1.0)
|
|
138
|
-
rake (12.
|
|
139
|
+
rake (12.2.1)
|
|
139
140
|
randexp (0.1.7)
|
|
140
141
|
redcarpet (3.4.0)
|
|
141
142
|
reform (2.2.4)
|
|
@@ -147,26 +148,26 @@ GEM
|
|
|
147
148
|
uber (< 0.2.0)
|
|
148
149
|
roar (1.1.0)
|
|
149
150
|
representable (~> 3.0.0)
|
|
150
|
-
rspec (3.
|
|
151
|
-
rspec-core (~> 3.
|
|
152
|
-
rspec-expectations (~> 3.
|
|
153
|
-
rspec-mocks (~> 3.
|
|
154
|
-
rspec-core (3.
|
|
155
|
-
rspec-support (~> 3.
|
|
156
|
-
rspec-expectations (3.
|
|
151
|
+
rspec (3.7.0)
|
|
152
|
+
rspec-core (~> 3.7.0)
|
|
153
|
+
rspec-expectations (~> 3.7.0)
|
|
154
|
+
rspec-mocks (~> 3.7.0)
|
|
155
|
+
rspec-core (3.7.0)
|
|
156
|
+
rspec-support (~> 3.7.0)
|
|
157
|
+
rspec-expectations (3.7.0)
|
|
157
158
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
158
|
-
rspec-support (~> 3.
|
|
159
|
-
rspec-mocks (3.
|
|
159
|
+
rspec-support (~> 3.7.0)
|
|
160
|
+
rspec-mocks (3.7.0)
|
|
160
161
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
161
|
-
rspec-support (~> 3.
|
|
162
|
-
rspec-support (3.
|
|
162
|
+
rspec-support (~> 3.7.0)
|
|
163
|
+
rspec-support (3.7.0)
|
|
163
164
|
sequel (4.49.0)
|
|
164
165
|
sinatra (1.4.8)
|
|
165
166
|
rack (~> 1.5)
|
|
166
167
|
rack-protection (~> 1.4)
|
|
167
168
|
tilt (>= 1.3, < 3)
|
|
168
169
|
sqlite3 (1.3.13)
|
|
169
|
-
sucker_punch (2.0.
|
|
170
|
+
sucker_punch (2.0.4)
|
|
170
171
|
concurrent-ruby (~> 1.0.0)
|
|
171
172
|
term-ansicolor (1.6.0)
|
|
172
173
|
tins (~> 1.0)
|
|
@@ -178,7 +179,7 @@ GEM
|
|
|
178
179
|
thread_safe (0.3.6)
|
|
179
180
|
tilt (2.0.8)
|
|
180
181
|
tins (1.15.0)
|
|
181
|
-
tzinfo (1.2.
|
|
182
|
+
tzinfo (1.2.4)
|
|
182
183
|
thread_safe (~> 0.1)
|
|
183
184
|
uber (0.1.0)
|
|
184
185
|
url_mount (0.2.1)
|
|
@@ -13,8 +13,8 @@ GEM
|
|
|
13
13
|
as-notifications (1.0.1)
|
|
14
14
|
awesome_print (1.8.0)
|
|
15
15
|
concurrent-ruby (1.0.5)
|
|
16
|
-
daemons (1.2.
|
|
17
|
-
declarative (0.0.
|
|
16
|
+
daemons (1.2.5)
|
|
17
|
+
declarative (0.0.10)
|
|
18
18
|
declarative-builder (0.1.0)
|
|
19
19
|
declarative-option (< 0.2.0)
|
|
20
20
|
declarative-option (0.1.0)
|
|
@@ -30,10 +30,10 @@ GEM
|
|
|
30
30
|
dry-container (0.6.0)
|
|
31
31
|
concurrent-ruby (~> 1.0)
|
|
32
32
|
dry-configurable (~> 0.1, >= 0.1.3)
|
|
33
|
-
dry-core (0.3.
|
|
33
|
+
dry-core (0.3.4)
|
|
34
34
|
concurrent-ruby (~> 1.0)
|
|
35
35
|
dry-equalizer (0.2.0)
|
|
36
|
-
dry-logic (0.4.
|
|
36
|
+
dry-logic (0.4.2)
|
|
37
37
|
dry-container (~> 0.2, >= 0.2.6)
|
|
38
38
|
dry-core (~> 0.2)
|
|
39
39
|
dry-equalizer (~> 0.2)
|
|
@@ -61,7 +61,8 @@ GEM
|
|
|
61
61
|
url_mount (~> 0.2.1)
|
|
62
62
|
httparty (0.15.6)
|
|
63
63
|
multi_xml (>= 0.5.2)
|
|
64
|
-
i18n (0.
|
|
64
|
+
i18n (0.9.0)
|
|
65
|
+
concurrent-ruby (~> 1.0)
|
|
65
66
|
inflecto (0.0.2)
|
|
66
67
|
json (2.1.0)
|
|
67
68
|
minitest (5.10.3)
|
|
@@ -134,7 +135,7 @@ GEM
|
|
|
134
135
|
rack-proxy (~> 0.6, >= 0.6.1)
|
|
135
136
|
rack-test (0.6.3)
|
|
136
137
|
rack (>= 1.0)
|
|
137
|
-
rake (12.
|
|
138
|
+
rake (12.2.1)
|
|
138
139
|
randexp (0.1.7)
|
|
139
140
|
redcarpet (3.4.0)
|
|
140
141
|
reform (2.2.4)
|
|
@@ -146,19 +147,19 @@ GEM
|
|
|
146
147
|
uber (< 0.2.0)
|
|
147
148
|
roar (1.1.0)
|
|
148
149
|
representable (~> 3.0.0)
|
|
149
|
-
rspec (3.
|
|
150
|
-
rspec-core (~> 3.
|
|
151
|
-
rspec-expectations (~> 3.
|
|
152
|
-
rspec-mocks (~> 3.
|
|
153
|
-
rspec-core (3.
|
|
154
|
-
rspec-support (~> 3.
|
|
155
|
-
rspec-expectations (3.
|
|
150
|
+
rspec (3.7.0)
|
|
151
|
+
rspec-core (~> 3.7.0)
|
|
152
|
+
rspec-expectations (~> 3.7.0)
|
|
153
|
+
rspec-mocks (~> 3.7.0)
|
|
154
|
+
rspec-core (3.7.0)
|
|
155
|
+
rspec-support (~> 3.7.0)
|
|
156
|
+
rspec-expectations (3.7.0)
|
|
156
157
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
157
|
-
rspec-support (~> 3.
|
|
158
|
-
rspec-mocks (3.
|
|
158
|
+
rspec-support (~> 3.7.0)
|
|
159
|
+
rspec-mocks (3.7.0)
|
|
159
160
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
160
|
-
rspec-support (~> 3.
|
|
161
|
-
rspec-support (3.
|
|
161
|
+
rspec-support (~> 3.7.0)
|
|
162
|
+
rspec-support (3.7.0)
|
|
162
163
|
semver2 (3.4.2)
|
|
163
164
|
sequel (4.49.0)
|
|
164
165
|
sinatra (1.4.8)
|
|
@@ -166,7 +167,7 @@ GEM
|
|
|
166
167
|
rack-protection (~> 1.4)
|
|
167
168
|
tilt (>= 1.3, < 3)
|
|
168
169
|
sqlite3 (1.3.13)
|
|
169
|
-
sucker_punch (2.0.
|
|
170
|
+
sucker_punch (2.0.4)
|
|
170
171
|
concurrent-ruby (~> 1.0.0)
|
|
171
172
|
term-ansicolor (1.6.0)
|
|
172
173
|
tins (~> 1.0)
|
|
@@ -178,7 +179,7 @@ GEM
|
|
|
178
179
|
thread_safe (0.3.6)
|
|
179
180
|
tilt (2.0.8)
|
|
180
181
|
tins (1.15.0)
|
|
181
|
-
tzinfo (1.2.
|
|
182
|
+
tzinfo (1.2.4)
|
|
182
183
|
thread_safe (~> 0.1)
|
|
183
184
|
uber (0.1.0)
|
|
184
185
|
url_mount (0.2.1)
|
|
@@ -13,8 +13,8 @@ GEM
|
|
|
13
13
|
as-notifications (1.0.1)
|
|
14
14
|
awesome_print (1.8.0)
|
|
15
15
|
concurrent-ruby (1.0.5)
|
|
16
|
-
daemons (1.2.
|
|
17
|
-
declarative (0.0.
|
|
16
|
+
daemons (1.2.5)
|
|
17
|
+
declarative (0.0.10)
|
|
18
18
|
declarative-builder (0.1.0)
|
|
19
19
|
declarative-option (< 0.2.0)
|
|
20
20
|
declarative-option (0.1.0)
|
|
@@ -30,10 +30,10 @@ GEM
|
|
|
30
30
|
dry-container (0.6.0)
|
|
31
31
|
concurrent-ruby (~> 1.0)
|
|
32
32
|
dry-configurable (~> 0.1, >= 0.1.3)
|
|
33
|
-
dry-core (0.3.
|
|
33
|
+
dry-core (0.3.4)
|
|
34
34
|
concurrent-ruby (~> 1.0)
|
|
35
35
|
dry-equalizer (0.2.0)
|
|
36
|
-
dry-logic (0.4.
|
|
36
|
+
dry-logic (0.4.2)
|
|
37
37
|
dry-container (~> 0.2, >= 0.2.6)
|
|
38
38
|
dry-core (~> 0.2)
|
|
39
39
|
dry-equalizer (~> 0.2)
|
|
@@ -61,7 +61,8 @@ GEM
|
|
|
61
61
|
url_mount (~> 0.2.1)
|
|
62
62
|
httparty (0.15.6)
|
|
63
63
|
multi_xml (>= 0.5.2)
|
|
64
|
-
i18n (0.
|
|
64
|
+
i18n (0.9.0)
|
|
65
|
+
concurrent-ruby (~> 1.0)
|
|
65
66
|
inflecto (0.0.2)
|
|
66
67
|
json (2.1.0)
|
|
67
68
|
minitest (5.10.3)
|
|
@@ -135,7 +136,7 @@ GEM
|
|
|
135
136
|
rack-proxy (~> 0.6, >= 0.6.1)
|
|
136
137
|
rack-test (0.6.3)
|
|
137
138
|
rack (>= 1.0)
|
|
138
|
-
rake (12.
|
|
139
|
+
rake (12.2.1)
|
|
139
140
|
randexp (0.1.7)
|
|
140
141
|
redcarpet (3.4.0)
|
|
141
142
|
reform (2.2.4)
|
|
@@ -147,19 +148,19 @@ GEM
|
|
|
147
148
|
uber (< 0.2.0)
|
|
148
149
|
roar (1.1.0)
|
|
149
150
|
representable (~> 3.0.0)
|
|
150
|
-
rspec (3.
|
|
151
|
-
rspec-core (~> 3.
|
|
152
|
-
rspec-expectations (~> 3.
|
|
153
|
-
rspec-mocks (~> 3.
|
|
154
|
-
rspec-core (3.
|
|
155
|
-
rspec-support (~> 3.
|
|
156
|
-
rspec-expectations (3.
|
|
151
|
+
rspec (3.7.0)
|
|
152
|
+
rspec-core (~> 3.7.0)
|
|
153
|
+
rspec-expectations (~> 3.7.0)
|
|
154
|
+
rspec-mocks (~> 3.7.0)
|
|
155
|
+
rspec-core (3.7.0)
|
|
156
|
+
rspec-support (~> 3.7.0)
|
|
157
|
+
rspec-expectations (3.7.0)
|
|
157
158
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
158
|
-
rspec-support (~> 3.
|
|
159
|
-
rspec-mocks (3.
|
|
159
|
+
rspec-support (~> 3.7.0)
|
|
160
|
+
rspec-mocks (3.7.0)
|
|
160
161
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
161
|
-
rspec-support (~> 3.
|
|
162
|
-
rspec-support (3.
|
|
162
|
+
rspec-support (~> 3.7.0)
|
|
163
|
+
rspec-support (3.7.0)
|
|
163
164
|
semver2 (3.4.2)
|
|
164
165
|
sequel (4.49.0)
|
|
165
166
|
sinatra (1.4.8)
|
|
@@ -167,7 +168,7 @@ GEM
|
|
|
167
168
|
rack-protection (~> 1.4)
|
|
168
169
|
tilt (>= 1.3, < 3)
|
|
169
170
|
sqlite3 (1.3.13)
|
|
170
|
-
sucker_punch (2.0.
|
|
171
|
+
sucker_punch (2.0.4)
|
|
171
172
|
concurrent-ruby (~> 1.0.0)
|
|
172
173
|
term-ansicolor (1.6.0)
|
|
173
174
|
tins (~> 1.0)
|
|
@@ -179,7 +180,7 @@ GEM
|
|
|
179
180
|
thread_safe (0.3.6)
|
|
180
181
|
tilt (2.0.8)
|
|
181
182
|
tins (1.15.0)
|
|
182
|
-
tzinfo (1.2.
|
|
183
|
+
tzinfo (1.2.4)
|
|
183
184
|
thread_safe (~> 0.1)
|
|
184
185
|
uber (0.1.0)
|
|
185
186
|
url_mount (0.2.1)
|