bucky-core 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. checksums.yaml +7 -0
  2. data/.circleci/config.yml +66 -0
  3. data/.codeclimate.yml +48 -0
  4. data/.dockerignore +11 -0
  5. data/.gitignore +40 -0
  6. data/.rspec +3 -0
  7. data/.rubocop.yml +76 -0
  8. data/.rubocop_todo.yml +51 -0
  9. data/Dockerfile +38 -0
  10. data/Dockerfile.system-test +44 -0
  11. data/Gemfile +4 -0
  12. data/Gemfile.lock +115 -0
  13. data/LICENSE +201 -0
  14. data/README.md +246 -0
  15. data/Rakefile +8 -0
  16. data/bin/console +15 -0
  17. data/bin/setup +8 -0
  18. data/bucky-core.gemspec +47 -0
  19. data/docker-compose.dev-with-bm.yml +28 -0
  20. data/docker-compose.dev.yml +18 -0
  21. data/docker-compose.system-test.yml +21 -0
  22. data/docker/nginx/Dockerfile +7 -0
  23. data/docker/nginx/nginx.conf +22 -0
  24. data/docker/nginx/public/index.html +19 -0
  25. data/docker/nginx/public/test_page.html +12 -0
  26. data/exe/bucky +214 -0
  27. data/lib/bucky.rb +3 -0
  28. data/lib/bucky/core/database/db_connector.rb +29 -0
  29. data/lib/bucky/core/database/test_data_operator.rb +195 -0
  30. data/lib/bucky/core/exception/bucky_exception.rb +39 -0
  31. data/lib/bucky/core/report/screen_shot_generator.rb +24 -0
  32. data/lib/bucky/core/test_core/test_case_loader.rb +162 -0
  33. data/lib/bucky/core/test_core/test_class_generator.rb +129 -0
  34. data/lib/bucky/core/test_core/test_manager.rb +70 -0
  35. data/lib/bucky/core/test_core/test_result.rb +92 -0
  36. data/lib/bucky/test_equipment/evidence/evidence_generator.rb +36 -0
  37. data/lib/bucky/test_equipment/pageobject/base_pageobject.rb +55 -0
  38. data/lib/bucky/test_equipment/pageobject/pages.rb +61 -0
  39. data/lib/bucky/test_equipment/selenium_handler/webdriver_handler.rb +66 -0
  40. data/lib/bucky/test_equipment/test_case/abst_test_case.rb +49 -0
  41. data/lib/bucky/test_equipment/test_case/e2e_test_case.rb +70 -0
  42. data/lib/bucky/test_equipment/test_case/linkstatus_test_case.rb +28 -0
  43. data/lib/bucky/test_equipment/user_operation/user_operation_helper.rb +97 -0
  44. data/lib/bucky/test_equipment/user_operation/user_operation_logger.rb +15 -0
  45. data/lib/bucky/test_equipment/user_operation/user_operator.rb +61 -0
  46. data/lib/bucky/test_equipment/verifications/abst_verification.rb +13 -0
  47. data/lib/bucky/test_equipment/verifications/e2e_verification.rb +106 -0
  48. data/lib/bucky/test_equipment/verifications/js_error_checker.rb +23 -0
  49. data/lib/bucky/test_equipment/verifications/service_verifications.rb +62 -0
  50. data/lib/bucky/test_equipment/verifications/status_checker.rb +180 -0
  51. data/lib/bucky/tools/lint.rb +69 -0
  52. data/lib/bucky/utils/bucky_logger.rb +25 -0
  53. data/lib/bucky/utils/bucky_output.rb +23 -0
  54. data/lib/bucky/utils/config.rb +55 -0
  55. data/lib/bucky/utils/requests.rb +33 -0
  56. data/lib/bucky/utils/yaml_load.rb +24 -0
  57. data/lib/bucky/version.rb +7 -0
  58. data/system_testing/test_bucky_project/.bucky_home +2 -0
  59. data/system_testing/test_bucky_project/config/bucky_config.yml +6 -0
  60. data/system_testing/test_bucky_project/config/e2e_config.yml +15 -0
  61. data/system_testing/test_bucky_project/config/linkstatus_config.yml +3 -0
  62. data/system_testing/test_bucky_project/config/test_db_config.yml +8 -0
  63. data/system_testing/test_bucky_project/services/README.md +1 -0
  64. data/system_testing/test_bucky_project/services/service_a/pc/pageobject/index.rb +13 -0
  65. data/system_testing/test_bucky_project/services/service_a/pc/parts/index.yml +6 -0
  66. data/system_testing/test_bucky_project/services/service_a/pc/scenarios/e2e/pc_e2e.yml +68 -0
  67. data/system_testing/test_bucky_project/services/service_a/pc/scenarios/e2e/setup_each_pc_e2e.yml +20 -0
  68. data/system_testing/test_bucky_project/services/service_a/pc/scenarios/e2e/setup_teardown_each_pc_e2e.yml +35 -0
  69. data/system_testing/test_bucky_project/services/service_a/pc/scenarios/e2e/teardown_each_pc_e2e.yml +20 -0
  70. data/system_testing/test_bucky_project/services/service_a/pc/scenarios/linkstatus/pc_link.yml +10 -0
  71. data/system_testing/test_bucky_project/services/service_a/sp/pageobject/index.rb +14 -0
  72. data/system_testing/test_bucky_project/services/service_a/sp/parts/index.yml +6 -0
  73. data/system_testing/test_bucky_project/services/service_a/sp/scenarios/e2e/sp_e2e_test.yml +26 -0
  74. data/system_testing/test_bucky_project/services/service_a/sp/scenarios/linkstatus/sp_link.yml +10 -0
  75. data/system_testing/test_bucky_project/services/service_a/tablet/pageobject/index.rb +14 -0
  76. data/system_testing/test_bucky_project/services/service_a/tablet/parts/index.yml +6 -0
  77. data/system_testing/test_bucky_project/services/service_a/tablet/scenarios/e2e/tablet_e2e_test.yml +26 -0
  78. data/system_testing/test_bucky_project/system/evidences/README.md +1 -0
  79. data/system_testing/test_bucky_project/system/evidences/screen_shots/README.md +1 -0
  80. data/system_testing/test_bucky_project/system/logs/README.md +1 -0
  81. data/system_testing/test_specification.md +38 -0
  82. data/system_testing/testing_code/command.bats +42 -0
  83. data/system_testing/testing_code/e2e.bats +75 -0
  84. data/system_testing/testing_code/linkstatus.bats +24 -0
  85. data/template/make_page/pc/pageobject/sample_page.rb +23 -0
  86. data/template/make_page/pc/parts/sample_page.yml +9 -0
  87. data/template/make_page/sp/pageobject/sample_page.rb +24 -0
  88. data/template/make_page/sp/parts/sample_page.yml +9 -0
  89. data/template/make_page/tablet/pageobject/sample_page.rb +24 -0
  90. data/template/make_page/tablet/parts/sample_page.yml +9 -0
  91. data/template/new/.bucky_home +2 -0
  92. data/template/new/config/bucky_config.yml +6 -0
  93. data/template/new/config/e2e_config.yml +15 -0
  94. data/template/new/config/linkstatus_config.yml +3 -0
  95. data/template/new/config/test_db_config.yml +8 -0
  96. data/template/new/services/README.md +1 -0
  97. data/template/new/system/evidences/README.md +1 -0
  98. data/template/new/system/evidences/screen_shots/README.md +1 -0
  99. data/template/new/system/logs/README.md +1 -0
  100. metadata +415 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 84480202869791beb2216d99538d38bd3cbfa4d4
4
+ data.tar.gz: 1a7d387572dc81f08e8ff3dc6db62d14e49e1cf3
5
+ SHA512:
6
+ metadata.gz: da5cba5f370ffefa0d395f587e3ec5327c6102e0b2ade30fd3be53e434e7dc0d589ceeb5a9fa451d6101b4ee358f8ba2f16da660afe6a7139236b306e599d3a2
7
+ data.tar.gz: 7f5faff4bfdc389dc135901158f5ab426a887d97891adbcbae76883083d560604320ca2089263fd65ab8263cee14ea04fe371957e0fc9e8fd589a4fc93416e0e
@@ -0,0 +1,66 @@
1
+ version: 2
2
+ jobs:
3
+ system_test:
4
+ machine: true
5
+ steps:
6
+ - checkout
7
+ - run:
8
+ name: docker up
9
+ command: docker-compose -f docker-compose.system-test.yml up --build -d
10
+ - run:
11
+ name: execute system testing
12
+ command: docker exec bucky-core bats /bucky-core/system_testing/testing_code/
13
+ - run:
14
+ name: docker down
15
+ command: docker-compose -f docker-compose.system-test.yml down
16
+ unit_test:
17
+ working_directory: ~/bucky-core
18
+ docker:
19
+ - image: circleci/ruby:2.4.1-node
20
+ environment:
21
+ CC_TEST_REPORTER_ID: 502b34fc3185ccc1230423dc8727976a66ad79be8faafa14cdb81af83dd69ab9
22
+ steps:
23
+ - checkout
24
+ - type: cache-restore
25
+ key: rails-demo-{{ checksum "Gemfile.lock" }}
26
+ - run: bundle install --path vendor/bundle
27
+ - type: cache-save
28
+ key: rails-demo-{{ checksum "Gemfile.lock" }}
29
+ paths:
30
+ - vendor/bundle
31
+ # Download test-reporter
32
+ - run:
33
+ name: Setup Code Climate test-reporter
34
+ command: |
35
+ curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
36
+ chmod +x ./cc-test-reporter
37
+ # Run rspec and show on code climate
38
+ - run: |
39
+ ./cc-test-reporter before-build
40
+ bundle exec rspec
41
+ ./cc-test-reporter after-build --coverage-input-type simplecov --exit-code $?
42
+ syntax_check:
43
+ docker:
44
+ - image: circleci/ruby:2.4.1-node
45
+ steps:
46
+ - checkout
47
+ - type: cache-restore
48
+ key: rails-demo-{{ checksum "Gemfile.lock" }}
49
+ - run: bundle install --path vendor/bundle
50
+ - type: cache-save
51
+ key: rails-demo-{{ checksum "Gemfile.lock" }}
52
+ paths:
53
+ - vendor/bundle
54
+ - run: bundle exec rubocop -f html --out report.html
55
+ - store_artifacts:
56
+ path: report.html
57
+
58
+ workflows:
59
+ version: 2
60
+ test:
61
+ jobs:
62
+ - unit_test
63
+ - system_test
64
+ lint:
65
+ jobs:
66
+ - syntax_check
data/.codeclimate.yml ADDED
@@ -0,0 +1,48 @@
1
+ version: "2"
2
+ checks:
3
+ argument-count:
4
+ enabled: true
5
+ config:
6
+ threshold: 4
7
+ complex-logic:
8
+ enabled: true
9
+ config:
10
+ threshold: 4
11
+ file-lines:
12
+ enabled: true
13
+ config:
14
+ threshold: 250
15
+ method-complexity:
16
+ enabled: true
17
+ config:
18
+ threshold: 10
19
+ method-count:
20
+ enabled: true
21
+ config:
22
+ threshold: 20
23
+ method-lines:
24
+ enabled: true
25
+ config:
26
+ threshold: 30
27
+ nested-control-flow:
28
+ enabled: true
29
+ config:
30
+ threshold: 4
31
+ return-statements:
32
+ enabled: true
33
+ config:
34
+ threshold: 4
35
+ similar-code:
36
+ enabled: true
37
+ config:
38
+ threshold: #language-specific defaults. overrides affect all languages.
39
+ identical-code:
40
+ enabled: true
41
+ config:
42
+ threshold: #language-specific defaults. overrides affect all languages.
43
+ plugins:
44
+ rubocop:
45
+ enabled: true
46
+ channel: rubocop-0-58
47
+ exclude_patterns:
48
+ - "spec/"
data/.dockerignore ADDED
@@ -0,0 +1,11 @@
1
+
2
+ *.log
3
+ .DS_Store
4
+ .bundle
5
+ .vscode
6
+ .yardoc
7
+ _docker
8
+ coverage/
9
+ doc
10
+ tags
11
+ tmp
data/.gitignore ADDED
@@ -0,0 +1,40 @@
1
+ *.sw[pon]
2
+ tags
3
+ bak_*
4
+ tmp_*
5
+ *.log
6
+ *.png
7
+ *.json
8
+ vendor/
9
+ .bundle
10
+
11
+ ### https://raw.github.com/github/gitignore/cc542de017c606138a87ee4880e5f06b3a306def/ruby.gitignore
12
+
13
+ *.gem
14
+ *.rbc
15
+ /.config
16
+ /coverage/
17
+ /InstalledFiles
18
+ /pkg/
19
+ /spec/reports/
20
+ /spec/examples.txt
21
+ /test/tmp/
22
+ /test/version_tmp/
23
+ /tmp/
24
+
25
+ ## Documentation cache and generated files:
26
+ /.yardoc/
27
+ /_yardoc/
28
+ /doc/
29
+ /rdoc/
30
+
31
+ ## Environment normalization:
32
+ /.bundle/
33
+ /vendor/bundle
34
+ /lib/bundler/man/
35
+
36
+ # Unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
37
+ .rvmrc
38
+
39
+ .DS_Store
40
+ .sample
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --color
2
+ --require spec_helper
3
+ --format documentation
data/.rubocop.yml ADDED
@@ -0,0 +1,76 @@
1
+ inherit_from: .rubocop_todo.yml
2
+
3
+ AllCops:
4
+ Exclude:
5
+ - 'lib/bucky/test_equipment/user_operation/user_operation_helper.rb'
6
+ - 'spec/fixtures/**/*'
7
+ - 'spec/test_code/**/*'
8
+ - 'template/**/*'
9
+ - 'tmp/**/*'
10
+ - 'vendor/**/*'
11
+ TargetRubyVersion: 2.5
12
+
13
+ AbcSize:
14
+ Enabled: false
15
+
16
+ # Allow method prefix start with "set_" and "get_"
17
+ AccessorMethodName:
18
+ Enabled: false
19
+
20
+ BlockLength:
21
+ Exclude:
22
+ - 'Rakefile'
23
+ - '**/*.rake'
24
+ - 'spec/**/*.rb'
25
+ - 'bucky-core.gemspec'
26
+ - 'lib/bucky/core/database/test_data_operator.rb'
27
+ - 'lib/bucky/core/test_core/test_class_generator.rb'
28
+
29
+ ClassVars:
30
+ Exclude:
31
+ - 'lib/bucky/test_equipment/selenium_handler/webdriver_handler.rb'
32
+ - 'lib/bucky/test_equipment/test_case/abst_test_case.rb'
33
+ - 'lib/bucky/utils/config.rb'
34
+ - 'lib/bucky/tools/lint.rb'
35
+
36
+ CyclomaticComplexity:
37
+ Enabled: false
38
+
39
+ # Allow missing top-level documentation comment of class
40
+ Documentation:
41
+ Enabled: false
42
+
43
+ FrozenStringLiteralComment:
44
+ EnforcedStyle: always
45
+
46
+ GlobalVars:
47
+ AllowedVariables: [$bucky_home_dir, $debug, $job_id, $round]
48
+
49
+ # Not allow using "->" for multi-line lambdas.
50
+ Lambda:
51
+ Enabled: false
52
+
53
+ LineLength:
54
+ Enabled: false
55
+
56
+ Lint/AmbiguousBlockAssociation:
57
+ Exclude:
58
+ - 'spec/**/*.rb'
59
+
60
+ MethodLength:
61
+ Enabled: false
62
+
63
+ ModuleLength:
64
+ Max: 120
65
+ Exclude:
66
+ - 'spec/**/*.rb'
67
+
68
+ PerceivedComplexity:
69
+ Enabled: false
70
+
71
+ UselessAssignment:
72
+ Exclude:
73
+ - 'lib/bucky/core/test_core/test_result.rb'
74
+
75
+ ClassLength:
76
+ Max: 110
data/.rubocop_todo.yml ADDED
@@ -0,0 +1,51 @@
1
+ # This configuration was generated by
2
+ # `rubocop --auto-gen-config`
3
+ # on 2018-07-30 18:33:29 +0900 using RuboCop version 0.58.2.
4
+ # The point is for the user to remove these configuration records
5
+ # one by one as the offenses are removed from the code base.
6
+ # Note that changes in the inspected code, or installation of new
7
+ # versions of RuboCop, may require this file to be generated again.
8
+
9
+ # Offense count: 1
10
+ # Configuration parameters: CountComments.
11
+ Metrics/ClassLength:
12
+ Max: 105
13
+ Exclude:
14
+ - 'lib/bucky/core/database/test_data_operator.rb'
15
+
16
+ # Offense count: 3
17
+ Security/Eval:
18
+ Exclude:
19
+ - 'lib/bucky/core/test_core/test_class_generator.rb'
20
+ - 'lib/bucky/test_equipment/pageobject/pages.rb'
21
+ - 'lib/bucky/test_equipment/verifications/service_verifications.rb'
22
+
23
+ # Offense count: 2
24
+ # Configuration parameters: EnforcedStyle.
25
+ # SupportedStyles: inline, group
26
+ Style/AccessModifierDeclarations:
27
+ Exclude:
28
+ - 'lib/bucky/test_equipment/selenium_handler/webdriver_handler.rb'
29
+ - 'lib/bucky/utils/bucky_logger.rb'
30
+
31
+ # Offense count: 2
32
+ Style/MethodMissingSuper:
33
+ Exclude:
34
+ - 'lib/bucky/test_equipment/user_operation/user_operator.rb'
35
+ - 'lib/bucky/test_equipment/verifications/service_verifications.rb'
36
+
37
+ # Offense count: 2
38
+ Style/MissingRespondToMissing:
39
+ Exclude:
40
+ - 'lib/bucky/test_equipment/user_operation/user_operator.rb'
41
+ - 'lib/bucky/test_equipment/verifications/service_verifications.rb'
42
+
43
+ # Offense count: 229
44
+ # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
45
+ # URISchemes: http, https
46
+ Metrics/LineLength:
47
+ Max: 225
48
+
49
+ Style/ExpandPathArguments:
50
+ Exclude:
51
+ - 'bucky-core.gemspec' # for lifull gem
data/Dockerfile ADDED
@@ -0,0 +1,38 @@
1
+ FROM ruby:2.4.1-alpine
2
+ ENV LANG ja_JP.UTF-8
3
+ ENV PAGER busybox less
4
+
5
+ RUN apk update && \
6
+ apk upgrade && \
7
+ apk add --update\
8
+ bash \
9
+ build-base \
10
+ curl-dev \
11
+ git \
12
+ libxml2-dev \
13
+ libxslt-dev \
14
+ linux-headers \
15
+ mysql-dev \
16
+ openssh \
17
+ ruby-dev \
18
+ ruby-json \
19
+ tzdata \
20
+ yaml \
21
+ yaml-dev \
22
+ zlib-dev
23
+
24
+ ENV BC_DIR /bucky-core/
25
+ WORKDIR $BC_DIR
26
+ COPY . $BC_DIR
27
+
28
+ RUN \
29
+ gem install bundler -v 1.17.3 && \
30
+ echo 'gem: --no-document' >> ~/.gemrc && \
31
+ cp ~/.gemrc /etc/gemrc && \
32
+ chmod uog+r /etc/gemrc && \
33
+ bundle config --global build.nokogiri --use-system-libraries && \
34
+ bundle config --global jobs 4 && \
35
+ bundle install && \
36
+ rm -rf ~/.gem
37
+
38
+ WORKDIR /app
@@ -0,0 +1,44 @@
1
+ FROM ruby:2.4.1-alpine
2
+ ENV LANG ja_JP.UTF-8
3
+ ENV PAGER busybox less
4
+
5
+ RUN apk update && \
6
+ apk upgrade && \
7
+ apk add --update\
8
+ bash \
9
+ build-base \
10
+ curl-dev \
11
+ git \
12
+ libxml2-dev \
13
+ libxslt-dev \
14
+ linux-headers \
15
+ mysql-dev \
16
+ openssh \
17
+ ruby-dev \
18
+ ruby-json \
19
+ tzdata \
20
+ yaml \
21
+ yaml-dev \
22
+ zlib-dev \
23
+ curl
24
+
25
+ ENV BATS_VER 1.1.0
26
+ RUN curl -sL "https://github.com/bats-core/bats-core/archive/v${BATS_VER}.tar.gz" | tar zx -C /var/opt \
27
+ && cd "/var/opt/bats-core-${BATS_VER}/" && ./install.sh /usr/local \
28
+ && rm -rf "/var/opt/bats-core-${BATS_VER}/"
29
+
30
+ ENV BC_DIR /bucky-core/
31
+ WORKDIR $BC_DIR
32
+ COPY . $BC_DIR
33
+
34
+ RUN \
35
+ gem install bundler -v 1.17.3 && \
36
+ echo 'gem: --no-document' >> ~/.gemrc && \
37
+ cp ~/.gemrc /etc/gemrc && \
38
+ chmod uog+r /etc/gemrc && \
39
+ bundle config --global build.nokogiri --use-system-libraries && \
40
+ bundle config --global jobs 4 && \
41
+ bundle install && \
42
+ rm -rf ~/.gem
43
+
44
+ WORKDIR /app
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,115 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ bucky-core (0.9.2)
5
+ color_echo (~> 3.1)
6
+ json (~> 2.1)
7
+ nokogiri (~> 1.8)
8
+ parallel (~> 1.11)
9
+ ruby-mysql (~> 2.9)
10
+ selenium-webdriver (~> 3.4)
11
+ sequel (~> 4.48)
12
+ test-unit (~> 3.2)
13
+
14
+ GEM
15
+ remote: https://rubygems.org/
16
+ specs:
17
+ ansi (1.5.0)
18
+ ast (2.4.0)
19
+ awesome_print (1.8.0)
20
+ binding_of_caller (0.8.0)
21
+ debug_inspector (>= 0.0.1)
22
+ byebug (9.1.0)
23
+ childprocess (0.9.0)
24
+ ffi (~> 1.0, >= 1.0.11)
25
+ coderay (1.1.2)
26
+ color_echo (3.1.1)
27
+ debug_inspector (0.0.3)
28
+ diff-lcs (1.3)
29
+ docile (1.1.5)
30
+ ffi (1.10.0)
31
+ hirb (0.7.3)
32
+ jaro_winkler (1.5.1)
33
+ json (2.1.0)
34
+ method_source (0.9.0)
35
+ mini_portile2 (2.4.0)
36
+ nokogiri (1.10.1)
37
+ mini_portile2 (~> 2.4.0)
38
+ parallel (1.12.1)
39
+ parser (2.5.1.2)
40
+ ast (~> 2.4.0)
41
+ power_assert (1.1.3)
42
+ powerpack (0.1.2)
43
+ pry (0.11.3)
44
+ coderay (~> 1.1.0)
45
+ method_source (~> 0.9.0)
46
+ pry-byebug (3.5.1)
47
+ byebug (~> 9.1)
48
+ pry (~> 0.10)
49
+ pry-stack_explorer (0.4.9.2)
50
+ binding_of_caller (>= 0.7)
51
+ pry (>= 0.9.11)
52
+ rainbow (3.0.0)
53
+ rake (12.3.0)
54
+ rspec (3.7.0)
55
+ rspec-core (~> 3.7.0)
56
+ rspec-expectations (~> 3.7.0)
57
+ rspec-mocks (~> 3.7.0)
58
+ rspec-core (3.7.1)
59
+ rspec-support (~> 3.7.0)
60
+ rspec-expectations (3.7.0)
61
+ diff-lcs (>= 1.2.0, < 2.0)
62
+ rspec-support (~> 3.7.0)
63
+ rspec-mocks (3.7.0)
64
+ diff-lcs (>= 1.2.0, < 2.0)
65
+ rspec-support (~> 3.7.0)
66
+ rspec-support (3.7.0)
67
+ rspec_junit_formatter (0.3.0)
68
+ rspec-core (>= 2, < 4, != 2.12.0)
69
+ rubocop (0.58.2)
70
+ jaro_winkler (~> 1.5.1)
71
+ parallel (~> 1.10)
72
+ parser (>= 2.5, != 2.5.1.1)
73
+ powerpack (~> 0.1)
74
+ rainbow (>= 2.2.2, < 4.0)
75
+ ruby-progressbar (~> 1.7)
76
+ unicode-display_width (~> 1.0, >= 1.0.1)
77
+ ruby-mysql (2.9.14)
78
+ ruby-progressbar (1.9.0)
79
+ rubyzip (1.2.2)
80
+ selenium-webdriver (3.141.0)
81
+ childprocess (~> 0.5)
82
+ rubyzip (~> 1.2, >= 1.2.2)
83
+ sequel (4.49.0)
84
+ simplecov (0.15.1)
85
+ docile (~> 1.1.0)
86
+ json (>= 1.8, < 3)
87
+ simplecov-html (~> 0.10.0)
88
+ simplecov-console (0.4.2)
89
+ ansi
90
+ hirb
91
+ simplecov
92
+ simplecov-html (0.10.2)
93
+ test-unit (3.3.0)
94
+ power_assert
95
+ unicode-display_width (1.4.0)
96
+
97
+ PLATFORMS
98
+ ruby
99
+
100
+ DEPENDENCIES
101
+ awesome_print (~> 1.8)
102
+ bucky-core!
103
+ bundler (~> 1.15)
104
+ hirb (~> 0.7)
105
+ pry (~> 0.10)
106
+ pry-byebug (~> 3.4)
107
+ pry-stack_explorer (~> 0.4)
108
+ rake (~> 12)
109
+ rspec (~> 3.6)
110
+ rspec_junit_formatter (~> 0.3)
111
+ rubocop (~> 0.54)
112
+ simplecov-console (~> 0.4.2)
113
+
114
+ BUNDLED WITH
115
+ 1.17.1