hello_world_hn 0.0.1.pre.beta.2 → 1.0.0.pre.beta.3

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
2
  SHA256:
3
- metadata.gz: eaf4122004d4af73aa1923855bc07bc55af584d03ed27318b346740e333ec0ba
4
- data.tar.gz: 252d687c489f6b895bfeccdfd6835fe0594cb4a95acbf2528090d6993e795dd1
3
+ metadata.gz: 6864142620283869580bfb065cf933c9a2bc7b213705f584ae59ec6595ca5e4c
4
+ data.tar.gz: e0367725f17eb1a4603fc97d5def6af8a639fa645353fb6fa1987a3b49d187a0
5
5
  SHA512:
6
- metadata.gz: 5bd5d7b45aca38303de7a7dc3135d7c8fb97efad8bc01c1ae03902db2b88e46c4b44f6316c3f08ddbb54364b393778d156c8d2a7f20c0d11186def573a46208f
7
- data.tar.gz: e4b3164daecd6155097c97b4c26414099ad55df0407a410d23b8dbfe740a4da6ac8997346a570136df14bb51ad339d2ebada799d1d51836e93da6e920af59897
6
+ metadata.gz: ce7a0e428bcbc9da9790a0f783ffd2ebb437d6374275b75c69dcc6f78abda381572206d5fe5f793233a38ef9488fa955fc4f74a6130fdf19abc99cc52e567a20
7
+ data.tar.gz: d06f8072e8204c59ef13b73a121b2f37c4cf038ea14c4ca2095dcb14bcc5c3f271b5025a21ec7bc6aca0e9412b2904c7168f805cc93d2ee8fb75d448f6dc02e5
data/Gemfile.lock ADDED
@@ -0,0 +1,45 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ hello_world_hn (1.0.0.pre.beta.3)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ ast (2.4.2)
10
+ json (2.6.3)
11
+ minitest (5.18.0)
12
+ parallel (1.23.0)
13
+ parser (3.2.2.1)
14
+ ast (~> 2.4.1)
15
+ rainbow (3.1.1)
16
+ rake (13.0.6)
17
+ regexp_parser (2.8.0)
18
+ rexml (3.2.5)
19
+ rubocop (1.51.0)
20
+ json (~> 2.3)
21
+ parallel (~> 1.10)
22
+ parser (>= 3.2.0.0)
23
+ rainbow (>= 2.2.2, < 4.0)
24
+ regexp_parser (>= 1.8, < 3.0)
25
+ rexml (>= 3.2.5, < 4.0)
26
+ rubocop-ast (>= 1.28.0, < 2.0)
27
+ ruby-progressbar (~> 1.7)
28
+ unicode-display_width (>= 2.4.0, < 3.0)
29
+ rubocop-ast (1.28.1)
30
+ parser (>= 3.2.1.0)
31
+ ruby-progressbar (1.13.0)
32
+ unicode-display_width (2.4.2)
33
+
34
+ PLATFORMS
35
+ ruby
36
+ x86-mingw32
37
+
38
+ DEPENDENCIES
39
+ hello_world_hn!
40
+ minitest (~> 5.0)
41
+ rake (~> 13.0)
42
+ rubocop (~> 1.21)
43
+
44
+ BUNDLED WITH
45
+ 2.4.13
@@ -1,12 +1,27 @@
1
+ # Template Ruby build
2
+ #
3
+ # This template allows you to validate your Ruby code.
4
+ # The workflow allows running tests and release on master branch.
5
+ # Requires environment variables to be configured:
6
+ # RUBYGEMS_API_KEY: RubyGem.org API Key
7
+ image: ruby:2.7
8
+
1
9
  pipelines:
2
- default:
3
- - step:
4
- name: Publicar gema
5
- image: ruby:2.7
6
- script:
7
- - echo "Instalando dependencias"
8
- - bundle install
9
- - echo "Construyendo gema"
10
- - gem build hello_world_hn.gemspec
11
- - echo "Publicando gema"
12
- - GEM_HOST_API_KEY=$RUBYGEMS_API_KEY gem push hello_world_hn-*.gem --host https://rubygems.org/
10
+ tags:
11
+ v*:
12
+ - step:
13
+ name: Build and test
14
+ script:
15
+ # Install gems
16
+ - bundle install
17
+ # Run tests
18
+ - bundle exec rake test
19
+ - step:
20
+ name: Release gem
21
+ script:
22
+ # Install gems
23
+ - bundle install
24
+ # Build gem
25
+ - gem build hello_world_hn.gemspec
26
+ # Publish gem
27
+ - GEM_HOST_API_KEY=$RUBYGEMS_API_KEY gem push hello_world_hn-*.gem --host https://rubygems.org/
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HelloWorldHn
4
- VERSION = "0.0.1-beta.2"
4
+ VERSION = "1.0.0-beta.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hello_world_hn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.pre.beta.2
4
+ version: 1.0.0.pre.beta.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - sovilleda07
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-05-15 00:00:00.000000000 Z
11
+ date: 2023-05-16 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email:
@@ -20,6 +20,7 @@ files:
20
20
  - ".rubocop.yml"
21
21
  - CHANGELOG.md
22
22
  - Gemfile
23
+ - Gemfile.lock
23
24
  - LICENSE.txt
24
25
  - README.md
25
26
  - Rakefile