timely-app 1.1.0 → 1.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: '081d23531d1a234416b20f80fb7ce3237cbe26b5e0d09bebe5c7fae92a277784'
4
- data.tar.gz: 3bbb2fde1f3f6de651c51fbf14702ef54aaf94eeb007e1958fdace1297716aa7
3
+ metadata.gz: 577cb59b198948cae3eb03848b97c14e5c57c57e88c4237f78c2ab1d52f38e90
4
+ data.tar.gz: 9985e9455cb41cf2c266e71abde6222afb5ac8043aee41f70e0a4786834e55ef
5
5
  SHA512:
6
- metadata.gz: 96c5cf25a5aa6eb5f15ef2d3dc8c271ed0d6888d8842cc7b2ef6d6788928d53c236bd42a2c858cdc30817ea2b593c776999a1b25682a5d9a0ac9d79550256794
7
- data.tar.gz: d0e430daefdb542b08f59245d314848433ea2d5a75a749083715faf46d44e68de4cbf9563ae82ea992f09894e559390afa65f84590ee3e0252b25b9ed99b23d0
6
+ metadata.gz: c876b26fc7b87974942d5170e38cba2a4beb970bda2591abfc82ddd22493fe4213b66baacc6af606f16f1c521c27e8768b1e3531e971270cd5baea36cb9364da
7
+ data.tar.gz: 5986ec6b07d9de41bd9efae0119e5bbe3e0b44ef175a72e54022831b2523578ceeccaab7f03eec67c2fa2c04106d9d6072352aa423ea62a8c783008cd5b123b7
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 1.1.1
2
+
3
+ * Update gem configuration
4
+
1
5
  # 1.1.0
2
6
 
3
7
  * Update ruby version to 3.2.2
data/lib/timely-app.rb CHANGED
@@ -13,3 +13,7 @@ require 'timely-app/client/teams'
13
13
  require 'timely-app/client/user_capacities'
14
14
  require 'timely-app/client/users'
15
15
  require 'timely-app/client/webhooks'
16
+
17
+ module TimelyApp
18
+ VERSION = '1.1.1'
19
+ end
data/timely-app.gemspec CHANGED
@@ -1,29 +1,36 @@
1
- Gem::Specification.new do |s|
2
- s.name = "timely-app"
3
- s.version = "1.1.0"
4
-
5
- s.license = "MIT"
6
-
7
- s.platform = Gem::Platform::RUBY
8
-
9
- s.authors = ["Andrei Makarov"]
10
- s.email = ["andrei@kiskolabs.com"]
11
- s.homepage = "https://github.com/amkisko/timely-app"
12
- s.description = "Ruby client for the Timely API"
13
- s.summary = "See description"
14
- s.metadata = {
15
- "homepage" => "https://github.com/amkisko/timely-app",
16
- "source_code_uri" => "https://github.com/amkisko/timely-app",
17
- "bug_tracker_uri" => "https://github.com/amkisko/timely-app/issues",
18
- "changelog_uri" => "https://github.com/amkisko/timely-app/blob/main/CHANGELOG.md",
1
+ Gem::Specification.new do |gem|
2
+ gem.name = "timely-app"
3
+ gem.version = File.read(File.expand_path('../lib/timely-app.rb', __FILE__)).match(/VERSION\s*=\s*'(.*?)'/)[1]
4
+
5
+ gem.license = "MIT"
6
+
7
+ gem.platform = Gem::Platform::RUBY
8
+
9
+ repository_url = "https://github.com/amkisko/timely_app.rb"
10
+
11
+ gem.authors = ["Andrei Makarov"]
12
+ gem.email = ["andrei@kiskolabs.com"]
13
+ gem.homepage = repository_url
14
+ gem.description = "Ruby client for the Timely API"
15
+ gem.summary = "See description"
16
+ gem.metadata = {
17
+ "homepage" => repository_url,
18
+ "source_code_uri" => repository_url,
19
+ "bug_tracker_uri" => "#{repository_url}/issues",
20
+ "changelog_uri" => "#{repository_url}/blob/main/CHANGELOG.md",
19
21
  "rubygems_mfa_required" => "true"
20
22
  }
21
23
 
22
- s.files = Dir.glob("lib/**/*.rb") + Dir.glob("bin/**/*") + %w(CHANGELOG.md LICENSE.md README.md timely-app.gemspec)
24
+ gem.files = Dir.glob("lib/**/*.rb") + Dir.glob("bin/**/*") + %w(CHANGELOG.md LICENSE.md README.md timely-app.gemspec)
25
+
26
+ gem.bindir = "bin"
27
+ gem.executables = ["timely-app"]
23
28
 
24
- s.bindir = "bin"
25
- s.executables = ["timely-app"]
29
+ gem.required_ruby_version = ">= 1.9.3"
30
+ gem.require_path = "lib"
26
31
 
27
- s.required_ruby_version = ">= 1.9.3"
28
- s.require_path = "lib"
32
+ gem.add_development_dependency 'rspec-core', '~> 3'
33
+ gem.add_development_dependency 'rspec-expectations', '~> 3'
34
+ gem.add_development_dependency 'webmock', '~> 3'
35
+ gem.add_development_dependency 'pry-byebug', '~> 3'
29
36
  end
metadata CHANGED
@@ -1,15 +1,71 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: timely-app
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
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-08-15 00:00:00.000000000 Z
12
- dependencies: []
11
+ date: 2023-08-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec-core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec-expectations
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '3'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '3'
41
+ - !ruby/object:Gem::Dependency
42
+ name: webmock
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry-byebug
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '3'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '3'
13
69
  description: Ruby client for the Timely API
14
70
  email:
15
71
  - andrei@kiskolabs.com
@@ -43,16 +99,15 @@ files:
43
99
  - lib/timely-app/params.rb
44
100
  - lib/timely-app/record.rb
45
101
  - lib/timely-app/response.rb
46
- - lib/timely-app/version.rb
47
102
  - timely-app.gemspec
48
- homepage: https://github.com/amkisko/timely-app
103
+ homepage: https://github.com/amkisko/timely_app.rb
49
104
  licenses:
50
105
  - MIT
51
106
  metadata:
52
- homepage: https://github.com/amkisko/timely-app
53
- source_code_uri: https://github.com/amkisko/timely-app
54
- bug_tracker_uri: https://github.com/amkisko/timely-app/issues
55
- changelog_uri: https://github.com/amkisko/timely-app/blob/main/CHANGELOG.md
107
+ homepage: https://github.com/amkisko/timely_app.rb
108
+ source_code_uri: https://github.com/amkisko/timely_app.rb
109
+ bug_tracker_uri: https://github.com/amkisko/timely_app.rb/issues
110
+ changelog_uri: https://github.com/amkisko/timely_app.rb/blob/main/CHANGELOG.md
56
111
  rubygems_mfa_required: 'true'
57
112
  post_install_message:
58
113
  rdoc_options: []
@@ -69,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
124
  - !ruby/object:Gem::Version
70
125
  version: '0'
71
126
  requirements: []
72
- rubygems_version: 3.4.10
127
+ rubygems_version: 3.4.19
73
128
  signing_key:
74
129
  specification_version: 4
75
130
  summary: See description
@@ -1,3 +0,0 @@
1
- module TimelyApp
2
- VERSION = '1.1.0'
3
- end