u3d 1.3.1 → 1.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2cf79a6e28cc0f34c0089479cc30fd56a41095a858af99718380c303dc272858
4
- data.tar.gz: c07493cd5e872a9929b3da5292dfef80256928096251c8a131de69788c980fea
3
+ metadata.gz: 3b8c6297024b13bd11984f6ec8aff579025e29453014a56fdcb39305dcd4327a
4
+ data.tar.gz: 4da0b498014481742d548b1c08da1853ced0993e685f0bedaf31a48c818ff5fc
5
5
  SHA512:
6
- metadata.gz: 3cdd4923d39924b863c44e4757a40c32a16134c3b8087d2761be13149d97508d6da0c9b5dd9d1dd8454c86b4013fe2bf2a0e8fc9e65f90ac0a379d883180824c
7
- data.tar.gz: c5df159522cc12eb2b3bd1648317bfa9c79c7357328cbd08cf94a8a60525ad0b430d5303411544735e5a9eec0126aecd89838bd65661070743a160ca0ccc6037
6
+ metadata.gz: 6ad81c25616217fd76d77623d97a158ccdbf7e10ecf13890539ae3ff84a56c6585a6380e8b955c74bf8648b72f510e2b8f46328f4cec513b81ce27f22807d728
7
+ data.tar.gz: bcd292a2c041f976a6076d033f8eb66d94fac77b174bff7a76ffd6850d88c263d265fd951d08221fe16b6ca047be8e641c491a3c2b6e1d602b8385356a54d1ca
@@ -1,4 +1,4 @@
1
- future-release=v1.3.1
1
+ future-release=v1.3.2
2
2
  since-tag=v0.9
3
3
  exclude_tags_regex=v0\.[0-8]\..*
4
4
  exclude-labels=nochangelog,question
data/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [v1.3.2](https://github.com/DragonBox/u3d/tree/v1.3.2) (2022-06-08)
4
+
5
+ [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.3.1...v1.3.2)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Add Fiddle to gemspec / dependencies [\#427](https://github.com/DragonBox/u3d/pull/427) ([lacostej](https://github.com/lacostej))
10
+ - Run rspec within bundle exec [\#426](https://github.com/DragonBox/u3d/pull/426) ([lacostej](https://github.com/lacostej))
11
+ - Remove appveyor [\#425](https://github.com/DragonBox/u3d/pull/425) ([lacostej](https://github.com/lacostej))
12
+ - Fix parameter to update\_checker [\#424](https://github.com/DragonBox/u3d/pull/424) ([lacostej](https://github.com/lacostej))
13
+
3
14
  ## [v1.3.1](https://github.com/DragonBox/u3d/tree/v1.3.1) (2022-05-18)
4
15
 
5
16
  [Full Changelog](https://github.com/DragonBox/u3d/compare/v1.3.0...v1.3.1)
@@ -720,4 +731,4 @@
720
731
 
721
732
 
722
733
 
723
- \* *This Changelog was automatically generated by [github_changelog_generator] (https://github.com/github-changelog-generator/github-changelog-generator)*
734
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
data/Gemfile.lock CHANGED
@@ -1,9 +1,10 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- u3d (1.3.1)
4
+ u3d (1.3.2)
5
5
  colored (>= 1.2, < 2.0.0)
6
6
  commander (>= 4.4.0, < 5.0.0)
7
+ fiddle
7
8
  file-tail (>= 1.2.0)
8
9
  filesize (>= 0.1.1)
9
10
  inifile (>= 3.0.0, < 4.0.0)
@@ -84,6 +85,7 @@ GEM
84
85
  faraday-rack (1.0.0)
85
86
  faraday-retry (1.0.3)
86
87
  fiber-local (1.0.0)
88
+ fiddle (1.1.0)
87
89
  file-tail (1.2.0)
88
90
  tins (~> 1.0)
89
91
  filesize (0.2.0)
data/Rakefile CHANGED
@@ -184,7 +184,7 @@ task bump: 'ensure_git_clean' do
184
184
  UI.user_error! "Bump version stopped by user" unless UI.confirm("Next version will be #{nextversion}. Confirm?")
185
185
  U3dCode.version = nextversion
186
186
  GithubChangelogGenerator.future_release = nextversion
187
- sh 'rspec'
187
+ sh 'bundle exec rspec'
188
188
  sh 'git add .github_changelog_generator lib/u3d/version.rb Gemfile.lock'
189
189
  sh "git commit -m 'Bump version to #{nextversion}'"
190
190
  sh 'git push'
data/lib/u3d/version.rb CHANGED
@@ -23,7 +23,7 @@
23
23
  ## --- END LICENSE BLOCK ---
24
24
 
25
25
  module U3d
26
- VERSION = '1.3.1'
26
+ VERSION = '1.3.2'
27
27
  DESCRIPTION = 'Provides numerous tools for installing, managing and running the Unity game engine from command line.'
28
28
  UNITY_VERSIONS_NOTE = "Unity uses the following version formatting: 0.0.0x0. The \'x\' can takes different values:\n"\
29
29
  "\t. 'f' are the main release candidates for Unity\n"\
@@ -79,7 +79,7 @@ module U3dCore
79
79
  puts("# An update for #{gem_name} is available. You are on #{current_version}.")
80
80
  end
81
81
  puts("# You should use the latest version.")
82
- puts("# Please update using `#{update_command(gem_name: gem_name)}`.")
82
+ puts("# Please update using `#{update_command(gem_name)}`.")
83
83
 
84
84
  # this could be fetched from the gem
85
85
  puts("# To see what's new, open https://github.com/DragonBox/#{gem_name}/releases.") if U3dCore::Env.truthy?("U3D_HIDE_CHANGELOG")
data/u3d.gemspec CHANGED
@@ -27,6 +27,7 @@ Gem::Specification.new do |spec|
27
27
 
28
28
  spec.add_dependency 'colored', '>= 1.2', '< 2.0.0' # terminal
29
29
  spec.add_dependency 'commander', '>= 4.4.0', '< 5.0.0' # CLI parser
30
+ spec.add_dependency 'fiddle'
30
31
  spec.add_dependency 'filesize', '>= 0.1.1' # File sizes prettifier
31
32
  spec.add_dependency 'file-tail', '>= 1.2.0'
32
33
  spec.add_dependency 'inifile', '>= 3.0.0', '< 4.0.0' # Parses INI files
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: u3d
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jerome Lacoste
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2022-05-18 00:00:00.000000000 Z
12
+ date: 2022-06-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: colored
@@ -51,6 +51,20 @@ dependencies:
51
51
  - - "<"
52
52
  - !ruby/object:Gem::Version
53
53
  version: 5.0.0
54
+ - !ruby/object:Gem::Dependency
55
+ name: fiddle
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ type: :runtime
62
+ prerelease: false
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
54
68
  - !ruby/object:Gem::Dependency
55
69
  name: filesize
56
70
  requirement: !ruby/object:Gem::Requirement
@@ -357,7 +371,6 @@ files:
357
371
  - README.md
358
372
  - Rakefile
359
373
  - WIP
360
- - appveyor.yml
361
374
  - build.sh
362
375
  - config/log_rules.json
363
376
  - docs/assets/ci_jenkins_ansi.png
@@ -524,7 +537,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
524
537
  - !ruby/object:Gem::Version
525
538
  version: '0'
526
539
  requirements: []
527
- rubygems_version: 3.2.3
540
+ rubygems_version: 3.1.6
528
541
  signing_key:
529
542
  specification_version: 4
530
543
  summary: U3d
data/appveyor.yml DELETED
@@ -1,40 +0,0 @@
1
- # https://www.appveyor.com/docs/appveyor-yml/
2
- image: Visual Studio 2022
3
-
4
- version: "{build}"
5
-
6
- init:
7
- - git config --global core.autocrlf false
8
-
9
- cache:
10
- - vendor/bundle
11
-
12
- environment:
13
- LC_ALL: en_US.UTF-8
14
- LANG: en_US.UTF-8
15
- matrix:
16
- - RUBY_VERSION: 25
17
- - RUBY_VERSION: 26
18
- - RUBY_VERSION: 27
19
- - RUBY_VERSION: 30
20
- - RUBY_VERSION: 31
21
-
22
- install:
23
- - set PATH=C:\Ruby%RUBY_VERSION%-x64\bin;%PATH%
24
- - set BUNDLER_VERSION=2.3.11
25
- - ruby -v
26
- - gem -v
27
- - bundle -v
28
- - gem install bundler -v %BUNDLER_VERSION%
29
- - bundle config --local path vendor/bundle
30
- - bundle install
31
-
32
- build: off
33
-
34
- before_test:
35
- - ruby -v
36
- - gem -v
37
- - bundle -v
38
-
39
- test_script:
40
- - bundle exec rake