timely-app 1.0.3 → 1.0.5
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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +12 -2
- data/bin/timely-app +9 -5
- data/lib/timely-app/client.rb +8 -8
- data/lib/timely-app/version.rb +1 -1
- data/timely-app.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ec56417b676069c4da9087632caff37bef3e07dcf32c070e0d82bf46b4ee041
|
4
|
+
data.tar.gz: 40f7413ba2534eb51232990498e15a3919e69c90adb4c9e2aeeea3a3733cf2c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 399c5951f95667b2a774d834b98f14a50e459563ddc660dd5eef74955dea5dad7b33d3b43c689bfc759103c47c68bdb56616908b9d3e7bd3089beb4caea695b8
|
7
|
+
data.tar.gz: 1bc73a047fa303766e38381505d9498a7a01fc531178b679dd0c358976df70303dd136cd4057d8c49fd13cef82dbaf623821860aa2d008e0a4895b1cdffac38e
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -22,10 +22,12 @@ gem install timely-app
|
|
22
22
|
|
23
23
|
Register your local service at https://app.timelyapp.com/{account_id}/oauth_applications
|
24
24
|
|
25
|
-
|
25
|
+
Install `timely-app` gem as dependency or globally.
|
26
|
+
|
27
|
+
Run auth:
|
26
28
|
|
27
29
|
```sh
|
28
|
-
TIMELY_CLIENT_ID=<
|
30
|
+
TIMELY_CLIENT_ID=<client_id> TIMELY_CLIENT_SECRET=<client_secret> bundle exec timely-app auth -s
|
29
31
|
```
|
30
32
|
|
31
33
|
## Usage for web service
|
@@ -89,6 +91,14 @@ There are large list of available tools for tunneling: [awesome-tunneling](https
|
|
89
91
|
|
90
92
|
Bug reports and pull requests are welcome on GitHub at https://github.com/amkisko/timely-app
|
91
93
|
|
94
|
+
## Publishing
|
95
|
+
|
96
|
+
```sh
|
97
|
+
rm timely-app-*.gem
|
98
|
+
gem build timely-app.gemspec
|
99
|
+
gem push timely-app-*.gem
|
100
|
+
```
|
101
|
+
|
92
102
|
## License
|
93
103
|
|
94
104
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/bin/timely-app
CHANGED
@@ -26,6 +26,8 @@ module TimelyApp
|
|
26
26
|
end
|
27
27
|
|
28
28
|
def command_exists?(cmd)
|
29
|
+
return false if cmd.nil? || cmd.empty?
|
30
|
+
|
29
31
|
client.respond_to?(cmd)
|
30
32
|
end
|
31
33
|
|
@@ -139,10 +141,11 @@ cli = TimelyApp::CLI.new(options)
|
|
139
141
|
cmd = ARGV.shift
|
140
142
|
case cmd
|
141
143
|
when "auth"
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
144
|
+
client_id = ARGV.shift || ENV.fetch('TIMELY_CLIENT_ID')
|
145
|
+
client_secret = ARGV.shift || ENV.fetch('TIMELY_CLIENT_SECRET')
|
146
|
+
ARGV.clear
|
147
|
+
if client_id && client_secret
|
148
|
+
cli.auth(client_id, client_secret)
|
146
149
|
else
|
147
150
|
puts "Usage: timely-app auth CLIENT_ID CLIENT_SECRET"
|
148
151
|
exit 1
|
@@ -158,8 +161,9 @@ when "config"
|
|
158
161
|
end
|
159
162
|
else
|
160
163
|
if cli.command_exists?(cmd)
|
161
|
-
|
164
|
+
args = ARGV.reduce({}){ |h, arg| k, v = arg.split("="); h[k] = v; h }
|
162
165
|
ARGV.clear
|
166
|
+
response = cli.call(cmd, *args)
|
163
167
|
case response
|
164
168
|
when Array
|
165
169
|
response.each do |r|
|
data/lib/timely-app/client.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
+
|
2
3
|
require 'timely-app/version'
|
3
4
|
require 'timely-app/errors'
|
4
5
|
require 'timely-app/link_header'
|
@@ -13,7 +14,8 @@ module TimelyApp
|
|
13
14
|
attr_accessor :account_id
|
14
15
|
|
15
16
|
def initialize(options = {})
|
16
|
-
@auth_header
|
17
|
+
@auth_header = 'Authorization'
|
18
|
+
@auth_value = "Bearer #{options[:access_token]}"
|
17
19
|
@user_agent = options.fetch(:user_agent) { "timely-app/#{VERSION} ruby/#{RUBY_VERSION}" }
|
18
20
|
|
19
21
|
@host = 'api.timelyapp.com'
|
@@ -22,7 +24,7 @@ module TimelyApp
|
|
22
24
|
@http.use_ssl = true
|
23
25
|
|
24
26
|
@account_id = options[:account_id]
|
25
|
-
@verbose = options[:verbose] || ENV['VERBOSE'] || false
|
27
|
+
@verbose = options[:verbose] || !ENV['VERBOSE'].nil? || false
|
26
28
|
end
|
27
29
|
|
28
30
|
def get(path, params = nil)
|
@@ -32,7 +34,7 @@ module TimelyApp
|
|
32
34
|
private
|
33
35
|
|
34
36
|
def verbose?
|
35
|
-
|
37
|
+
@verbose == true
|
36
38
|
end
|
37
39
|
|
38
40
|
def host_uri_join(path, params)
|
@@ -67,11 +69,9 @@ module TimelyApp
|
|
67
69
|
puts "<< response: #{http_request.method} #{http_request.path} #{response.code} #{response.body}"
|
68
70
|
end
|
69
71
|
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
raise Response.error(response)
|
74
|
-
end
|
72
|
+
raise Response.error(response) unless response.is_a?(Net::HTTPSuccess)
|
73
|
+
|
74
|
+
Response.parse(response)
|
75
75
|
end
|
76
76
|
end
|
77
77
|
end
|
data/lib/timely-app/version.rb
CHANGED
data/timely-app.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: timely-app
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrei Makarov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-02
|
11
|
+
date: 2023-03-02 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Ruby client for the Timely API
|
14
14
|
email:
|