bucky-core 0.10.8 → 0.10.15

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec249f4632768c701fdd8be85a04d388c02cd21f72e233a83ded9e01da845d5d
4
- data.tar.gz: 61fbbb105a1a800a86fb30c38728e00cd97717e13ef5995fd9f748b2b5768a87
3
+ metadata.gz: 3d06310980c963c7b99602defee056a91228104ef3851484a8d25e87d225c3b7
4
+ data.tar.gz: 1e116f76e65d8512db9ea9fb029aae94de6ee6df6492470a63fcba10ef91b03a
5
5
  SHA512:
6
- metadata.gz: a8b73ca997385088e1636b603d4ca3d388e2e23f10e3826c6eb302c236d72f7bd1e32d451a21bd13ade065dbf87e17812d228fe3ccd1d4e14ed47e005641a3fb
7
- data.tar.gz: f08e06f2a6746bca753fac54e3e6bf081d032c08057b2c25bf0395686359b58ba54f8e20b272c8b7f5648300a932ea6b2bd7db159669ffc749b84000ede114f9
6
+ metadata.gz: e8bef7c22d91ed15301fd07034f6f219fc8a1adc661f08f5eab82d1df8a2d7780dc18e4d5d50f7f7dcafb432292688d1f5f81a0f65a35c9fdb0183a96fc665bd
7
+ data.tar.gz: 49b49a316e5bf95e1ef053841857eb69233c023ffb7b14b829731f6d843a98e7188c3dd5bc14f273fe0240c4be523b229e21c05e6c770a323d22815e671520c1
data/.circleci/config.yml CHANGED
@@ -5,7 +5,7 @@ jobs:
5
5
  steps:
6
6
  - checkout
7
7
  - restore_cache:
8
- key: docker-{{ checksum ".circleci/config.yml" }}-{{ checksum "docker-compose.system-test.yml" }}-{{ checksum "Dockerfile.system-test" }}-{{ checksum "bucky-core.gemspec" }}-{{ checksum ".dockerignore" }}-{{ checksum "Gemfile.lock" }}
8
+ key: docker-{{ checksum ".circleci/config.yml" }}-{{ checksum "docker-compose.system-test.yml" }}-{{ checksum "Dockerfile.system-test" }}-{{ checksum "bucky-core.gemspec" }}-{{ checksum ".dockerignore" }}
9
9
  - run:
10
10
  command: |
11
11
  if [ ! -f ~/caches/images.tar ]; then
@@ -14,7 +14,7 @@ jobs:
14
14
  docker save $(docker images | awk 'NR>=2 && ! /^<none>/{print $1}') -o ~/caches/images.tar
15
15
  fi
16
16
  - save_cache:
17
- key: docker-{{ checksum ".circleci/config.yml" }}-{{ checksum "docker-compose.system-test.yml" }}-{{ checksum "Dockerfile.system-test" }}-{{ checksum "bucky-core.gemspec" }}-{{ checksum ".dockerignore" }}-{{ checksum "Gemfile.lock" }}
17
+ key: docker-{{ checksum ".circleci/config.yml" }}-{{ checksum "docker-compose.system-test.yml" }}-{{ checksum "Dockerfile.system-test" }}-{{ checksum "bucky-core.gemspec" }}-{{ checksum ".dockerignore" }}
18
18
  paths: ~/caches/images.tar
19
19
  system_test:
20
20
  machine: true
@@ -22,7 +22,7 @@ jobs:
22
22
  steps:
23
23
  - checkout
24
24
  - restore_cache:
25
- key: docker-{{ checksum ".circleci/config.yml" }}-{{ checksum "docker-compose.system-test.yml" }}-{{ checksum "Dockerfile.system-test" }}-{{ checksum "bucky-core.gemspec" }}-{{ checksum ".dockerignore" }}-{{ checksum "Gemfile.lock" }}
25
+ key: docker-{{ checksum ".circleci/config.yml" }}-{{ checksum "docker-compose.system-test.yml" }}-{{ checksum "Dockerfile.system-test" }}-{{ checksum "bucky-core.gemspec" }}-{{ checksum ".dockerignore" }}
26
26
  - run:
27
27
  command: docker load -q -i ~/caches/images.tar
28
28
  - run:
@@ -130,4 +130,6 @@ workflows:
130
130
  tags:
131
131
  only: /^v[0-9]{1,}(\.[0-9]{1,}){2}$/
132
132
  branches:
133
- ignore: /.*/
133
+ ignore: /.*/
134
+ requires:
135
+ - publish_to_rubygems
@@ -1,4 +1,4 @@
1
- VERSION=$(git describe --tags | sed -e 's/^v//')
1
+ VERSION=$(git describe --tags | grep -o -E "([0-9]+\.){1}[0-9]+(\.[0-9]+)?" | head -n1)
2
2
  git config user.email "bucky-operator@users.noreply.github.com"
3
3
  git config user.name "bucky-operator"
4
4
  # Update version.rb
data/Dockerfile CHANGED
@@ -21,19 +21,7 @@ RUN apk update && \
21
21
  yaml-dev \
22
22
  zlib-dev
23
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
24
+ RUN gem install bucky-core
37
25
 
38
26
  WORKDIR /app
39
27
  RUN chown -R nobody:nobody /app
@@ -37,7 +37,6 @@ module Bucky
37
37
 
38
38
  def click(args)
39
39
  elem = @pages.get_part(args)
40
- elem.location_once_scrolled_into_view
41
40
  # when click successfully, return of click is nil.
42
41
  wait_until_helper(5, 0.1, Selenium::WebDriver::Error::WebDriverError) { elem.click.nil? }
43
42
  end
data/lib/bucky/version.rb CHANGED
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Bucky
4
4
  module Version
5
- VERSION = '0.10.8'
5
+ VERSION = '0.10.15'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bucky-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.8
4
+ version: 0.10.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - NaotoKishino
@@ -13,7 +13,7 @@ authors:
13
13
  autorequire:
14
14
  bindir: exe
15
15
  cert_chain: []
16
- date: 2021-02-08 00:00:00.000000000 Z
16
+ date: 2021-02-26 00:00:00.000000000 Z
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
19
19
  name: awesome_print