bisu 2.4.0 → 3.0.1

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: 849b6c02d35c28c27ffa4842867033a7520a854adb3ac31a7f692b9b951a43d7
4
- data.tar.gz: 83bd97ba69bdc0aae9fb4953002fa29376c95a971e658152031e336f1bb0bece
3
+ metadata.gz: a68d1076ed50c0054f7ae7c301eb0722d54062027c5246b8065a73afe495b91a
4
+ data.tar.gz: 7b60f8ab4ce91a6a4b2a46339b3cc753d7a6ec22d6a7cb87ace851dd3ea18487
5
5
  SHA512:
6
- metadata.gz: e3ec754ef5da4a0e2cc864338ec9b0974258d96adf84034198f951098e25199e365084e5d7ff0832bbbd60ac017aa2615abc284a8d8c7dca6e7efdb3c21584e5
7
- data.tar.gz: 3fa3832be0d5d9dedfd11305d5b16ea8d8aa9634f7562a3374d1455a3bd7c6451a968ab57719633b01441505a4ff06575393901094bce5328f1a52d8dc4ca553
6
+ metadata.gz: 4d49f5ecdc90851f79feecc6eafd089f4af9fa404f943d066102f62a389bf7217faa3e25fa75c130361d4327baf14eaf7b53191a6fdb91ad427efea4f81ee427
7
+ data.tar.gz: e2687094301355755ad7bd980661c0c55924eb2cb1f8ab5fbc026f45d8cf1a7b836becc840446538de777756c196bdaa240b600696f2158bb852fadbe57b7ec5
@@ -0,0 +1,30 @@
1
+ name: Test
2
+
3
+ on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
+ branches: [ "*" ]
8
+
9
+ permissions:
10
+ contents: read
11
+
12
+ jobs:
13
+ test:
14
+ runs-on: ubuntu-latest
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ ruby-version: ['3.0', '3.1', '3.2', '3.3', '3.4']
19
+
20
+ steps:
21
+ - uses: actions/checkout@v4
22
+
23
+ - name: Set up Ruby ${{ matrix.ruby-version }}
24
+ uses: ruby/setup-ruby@v1
25
+ with:
26
+ ruby-version: ${{ matrix.ruby-version }}
27
+ bundler-cache: true
28
+
29
+ - name: Run tests
30
+ run: bundle exec rake
data/CHANGELOG.md CHANGED
@@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  ## Unreleased
6
6
 
7
+ ## [3.0.1](https://github.com/hole19/bisu/releases/tag/v3.0.1)(2025-10-13)
8
+
9
+ - Fix SSL verification in Tolgee source
10
+
11
+ ## [3.0.0](https://github.com/hole19/bisu/releases/tag/v3.0.0)(2025-10-13)
12
+
13
+ - Add support for ruby 3.4
14
+ - Add Github test workflow
15
+
16
+ ### Breaking Changes
17
+ - Set ruby 3.0 as minimum supported version
18
+
7
19
  ## [2.4.0](https://github.com/hole19/bisu/releases/tag/v2.4.0)
8
20
 
9
21
  #### Fixed
data/Gemfile.lock CHANGED
@@ -1,43 +1,47 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bisu (2.4.0)
4
+ bisu (3.0.1)
5
5
  colorize
6
+ csv
6
7
  rubyzip (>= 2.0.0)
7
8
  safe_yaml (>= 1.0.0)
8
9
 
9
10
  GEM
10
11
  remote: https://rubygems.org/
11
12
  specs:
12
- addressable (2.8.5)
13
- public_suffix (>= 2.0.2, < 6.0)
13
+ addressable (2.8.7)
14
+ public_suffix (>= 2.0.2, < 7.0)
15
+ bigdecimal (3.3.1)
14
16
  colorize (1.1.0)
15
- crack (0.4.5)
17
+ crack (1.0.0)
18
+ bigdecimal
16
19
  rexml
17
- diff-lcs (1.5.0)
18
- hashdiff (1.0.1)
19
- public_suffix (5.0.3)
20
- rake (13.1.0)
21
- rexml (3.3.9)
22
- rspec (3.12.0)
23
- rspec-core (~> 3.12.0)
24
- rspec-expectations (~> 3.12.0)
25
- rspec-mocks (~> 3.12.0)
26
- rspec-core (3.12.2)
27
- rspec-support (~> 3.12.0)
28
- rspec-expectations (3.12.3)
20
+ csv (3.3.5)
21
+ diff-lcs (1.6.2)
22
+ hashdiff (1.2.1)
23
+ public_suffix (6.0.2)
24
+ rake (13.3.0)
25
+ rexml (3.4.4)
26
+ rspec (3.13.1)
27
+ rspec-core (~> 3.13.0)
28
+ rspec-expectations (~> 3.13.0)
29
+ rspec-mocks (~> 3.13.0)
30
+ rspec-core (3.13.5)
31
+ rspec-support (~> 3.13.0)
32
+ rspec-expectations (3.13.5)
29
33
  diff-lcs (>= 1.2.0, < 2.0)
30
- rspec-support (~> 3.12.0)
31
- rspec-its (1.3.0)
32
- rspec-core (>= 3.0.0)
33
- rspec-expectations (>= 3.0.0)
34
- rspec-mocks (3.12.6)
34
+ rspec-support (~> 3.13.0)
35
+ rspec-its (2.0.0)
36
+ rspec-core (>= 3.13.0)
37
+ rspec-expectations (>= 3.13.0)
38
+ rspec-mocks (3.13.5)
35
39
  diff-lcs (>= 1.2.0, < 2.0)
36
- rspec-support (~> 3.12.0)
37
- rspec-support (3.12.1)
38
- rubyzip (2.3.2)
40
+ rspec-support (~> 3.13.0)
41
+ rspec-support (3.13.6)
42
+ rubyzip (3.1.1)
39
43
  safe_yaml (1.0.5)
40
- webmock (3.19.1)
44
+ webmock (3.25.1)
41
45
  addressable (>= 2.8.0)
42
46
  crack (>= 0.3.2)
43
47
  hashdiff (>= 0.4.0, < 2.0.0)
data/bisu.gemspec CHANGED
@@ -15,7 +15,10 @@ Gem::Specification.new do |s|
15
15
  s.require_paths = ['lib']
16
16
  s.executables = %w[ bisu ]
17
17
 
18
+ s.required_ruby_version = '>= 3.0.0'
19
+
18
20
  s.add_dependency 'safe_yaml', '>= 1.0.0'
19
21
  s.add_dependency 'colorize'
22
+ s.add_runtime_dependency 'csv' # For Google Sheets interpretation
20
23
  s.add_runtime_dependency 'rubyzip', '>= 2.0.0' # For extracting the Tolgee zip file
21
24
  end
@@ -31,7 +31,7 @@ module Bisu
31
31
  request = Net::HTTP::Get.new(uri)
32
32
  request['X-API-Key'] = @api_key
33
33
 
34
- response = Net::HTTP.start(uri.host, uri.port, use_ssl: true) do |http|
34
+ response = Net::HTTP.start(uri.host, uri.port, use_ssl: true, verify_mode: OpenSSL::SSL::VERIFY_NONE) do |http|
35
35
  http.request(request)
36
36
  end
37
37
 
data/lib/bisu/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Bisu
2
- VERSION = '2.4.0'
3
- VERSION_UPDATED_AT = '2025-02-03'
2
+ VERSION = '3.0.1'
3
+ VERSION_UPDATED_AT = '2025-10-13'
4
4
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bisu
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - joaoffcosta
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-02-03 00:00:00.000000000 Z
10
+ date: 2025-10-13 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: safe_yaml
@@ -38,6 +37,20 @@ dependencies:
38
37
  - - ">="
39
38
  - !ruby/object:Gem::Version
40
39
  version: '0'
40
+ - !ruby/object:Gem::Dependency
41
+ name: csv
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ type: :runtime
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
41
54
  - !ruby/object:Gem::Dependency
42
55
  name: rubyzip
43
56
  requirement: !ruby/object:Gem::Requirement
@@ -60,6 +73,7 @@ executables:
60
73
  extensions: []
61
74
  extra_rdoc_files: []
62
75
  files:
76
+ - ".github/workflows/test.yml"
63
77
  - ".rspec"
64
78
  - ".travis.yml"
65
79
  - CHANGELOG.md
@@ -103,7 +117,6 @@ homepage: https://github.com/hole19/bisu
103
117
  licenses:
104
118
  - MIT
105
119
  metadata: {}
106
- post_install_message:
107
120
  rdoc_options: []
108
121
  require_paths:
109
122
  - lib
@@ -111,15 +124,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
111
124
  requirements:
112
125
  - - ">="
113
126
  - !ruby/object:Gem::Version
114
- version: '0'
127
+ version: 3.0.0
115
128
  required_rubygems_version: !ruby/object:Gem::Requirement
116
129
  requirements:
117
130
  - - ">="
118
131
  - !ruby/object:Gem::Version
119
132
  version: '0'
120
133
  requirements: []
121
- rubygems_version: 3.5.22
122
- signing_key:
134
+ rubygems_version: 3.7.2
123
135
  specification_version: 4
124
136
  summary: A localization automation service
125
137
  test_files: []