google-apis-generator 0.1.0 → 0.1.1

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: aedcde11e5607eccd0e826dd5fda9517c27a2038c65c9219a0b578708be2d248
4
- data.tar.gz: 857cd462fb81541ed6dffffd9345b991bb4571f568b0e8ee15446871363c64ec
3
+ metadata.gz: 17aaa5f6d78abd22d3766bcf3361cd178109f3d3e520640c1d37b3398094189c
4
+ data.tar.gz: ef3785b0543156a6e143414c237b8446b4971cc428e3dc9581624c749474052c
5
5
  SHA512:
6
- metadata.gz: 554c56d4ecad0dd2fd6aa951b24ce4e31797e35a43e41bdd0190fb53219bdf62f5390b09dc95d595b14966fc14204e1e5cbd5b5a7a516fc0914d421ae60c4414
7
- data.tar.gz: afd1460290ccac38c9fa0dadc88ac8ec2ea4c42ab1ff632b34f0b2b02d5f6f547c7175754c5df9f9d0c3a702acd92d41eddf56977065a1b63833f80e1d91aa77
6
+ metadata.gz: 6c37d53894a9b71abe414e5731fe7b1a40d7cd5dab8689fe89fa9540ac7f793817b7bf6155f0830c3e105cb14f966d156e487790a3eb88c3a9a2b895e3eca3d9
7
+ data.tar.gz: 7ab2014d75e0bff2e259dfa4592158feb8a65d0cfdcfa4c7888dfa41edd5635f321315235f7c32bd7baa6643b2dbadd1fb2d0ea7f436c80966cdc7062a3e0ed8
@@ -1,5 +1,9 @@
1
1
  # Release History
2
2
 
3
+ ### v0.1.1 (2021-01-06)
4
+
5
+ * Fix charset used in file comparison
6
+
3
7
  ### v0.1.0 (2021-01-01)
4
8
 
5
9
  * Initial release, extracted from google-api-client.
@@ -30,7 +30,7 @@ module Google
30
30
  version_content = changelog_content = nil
31
31
  generator_result.files.each do |path, content|
32
32
  full_path = File.join(base_dir, path)
33
- old_content = File.binread(full_path) if File.readable?(full_path)
33
+ old_content = File.read(full_path) if File.readable?(full_path)
34
34
  if path == generator_result.version_path
35
35
  version_content = old_content || content
36
36
  elsif path == generator_result.changelog_path
@@ -15,7 +15,7 @@
15
15
  module Google
16
16
  module Apis
17
17
  class Generator
18
- VERSION = "0.1.0"
18
+ VERSION = "0.1.1"
19
19
  end
20
20
  end
21
21
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-01 00:00:00.000000000 Z
11
+ date: 2021-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -105,7 +105,7 @@ licenses:
105
105
  metadata:
106
106
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
107
107
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/google-apis-generator/CHANGELOG.md
108
- documentation_uri: https://googleapis.dev/ruby/google-apis-core/v0.1.0
108
+ documentation_uri: https://googleapis.dev/ruby/google-apis-core/v0.1.1
109
109
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/google-apis-generator
110
110
  post_install_message:
111
111
  rdoc_options: []