sqlui 0.1.72 → 0.1.73

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: d93fb898461c1843f631c16ba879898e54e12374c89bdc49f702420e06d7789e
4
- data.tar.gz: 875364afb309801a644900301051cdbe96939d12aa3980eb2e1460668e032b24
3
+ metadata.gz: af1f679e82d6851884496c2b3b0a15a79b33a61f134afef3dc71b56dc1a84299
4
+ data.tar.gz: 21e037e5fa3c5528c890217d025ee2d6fbe928b86f1446b1c36af74168280d01
5
5
  SHA512:
6
- metadata.gz: 3868ba4eac83d9584e6da037ee34e475010b47e0ff4dcdb791837f81125a77f4090c38fd60360f1a12f4fd2f3c5402092b4a936c5eb670c15ab1518583c04b3e
7
- data.tar.gz: f9c9c07fdb3016aec05fb2f99c5d307eafc95b2fa9d4d693afb83af71a521d5fa32c9b03137c1f30293218186f432a2eff1a28490290f974b25163126c399fea
6
+ metadata.gz: ef97c2b8e874d261325f4a9915e4453deab0f7804bef375f47d75a6ca6c1604237299b184cfab58bfd6845f8c8600bef605247e59008f8c452e51e1dff7f1b79
7
+ data.tar.gz: b657b26b717f8a377dc22dce2d765edf96096839564be96136b08c836edd50612a9f633b1fe39c64b9c731120465da2874d25a54d5daa5ddc73a5776880a438f
data/.release-version CHANGED
@@ -1 +1 @@
1
- 0.1.72
1
+ 0.1.73
@@ -110,14 +110,15 @@ module Github
110
110
  ]
111
111
  }
112
112
  )
113
- message = path.size > 43 ? "Update [...]#{path[-38..]}" : "Update #{path}"
113
+ basename = File.basename(path)
114
+ message = basename.size > 45 ? "Edit […]#{basename[-42..]}" : "Edit #{basename}"
114
115
  commit_response = @client.post(
115
116
  "https://api.github.com/repos/#{owner}/#{repo}/git/commits",
116
117
  {
117
118
  message: message,
118
119
  author: {
119
- name: 'SQLUI',
120
- email: 'nicholasdower+sqlui@gmail.com',
120
+ name: author_name,
121
+ email: author_email,
121
122
  date: Time.now.iso8601
122
123
  },
123
124
  parents: [
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sqlui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.72
4
+ version: 0.1.73
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Dower