torn_ruby 0.1.0.beta → 1.0.1.beta
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/.github/workflows/main.yml +27 -0
- data/.gitignore +11 -0
- data/CHANGELOG.md +14 -2
- data/Gemfile +25 -0
- data/Gemfile.lock +95 -0
- data/README.md +12 -0
- data/bin/console +8 -0
- data/bin/setup +8 -0
- data/lib/torn_ruby/client.rb +32 -11
- data/lib/torn_ruby/endpoints/base.rb +7 -7
- data/lib/torn_ruby/endpoints/company.rb +1 -5
- data/lib/torn_ruby/endpoints/faction.rb +1 -5
- data/lib/torn_ruby/endpoints/forum.rb +17 -0
- data/lib/torn_ruby/endpoints/market.rb +1 -5
- data/lib/torn_ruby/endpoints/property.rb +1 -5
- data/lib/torn_ruby/endpoints/racing.rb +18 -0
- data/lib/torn_ruby/endpoints/torn.rb +21 -0
- data/lib/torn_ruby/endpoints/user.rb +1 -5
- data/lib/torn_ruby/forum.rb +10 -0
- data/lib/torn_ruby/racing.rb +11 -0
- data/lib/torn_ruby/torn.rb +11 -0
- data/lib/torn_ruby/version.rb +1 -1
- data/spec/spec_helper.rb +18 -0
- data/spec/torn_ruby/base_spec.rb +73 -0
- data/spec/torn_ruby/client_spec.rb +336 -0
- data/spec/torn_ruby/company_spec.rb +3 -0
- data/spec/torn_ruby/endpoints/company_spec.rb +3 -0
- data/spec/torn_ruby/endpoints/faction_spec.rb +3 -0
- data/spec/torn_ruby/endpoints/forum_spec.rb +3 -0
- data/spec/torn_ruby/endpoints/market_spec.rb +3 -0
- data/spec/torn_ruby/endpoints/property_spec.rb +34 -0
- data/spec/torn_ruby/endpoints/racing_spec.rb +3 -0
- data/spec/torn_ruby/endpoints/torn_spec.rb +3 -0
- data/spec/torn_ruby/endpoints/user_spec.rb +3 -0
- data/spec/torn_ruby/faction_spec.rb +3 -0
- data/spec/torn_ruby/forum_spec.rb +3 -0
- data/spec/torn_ruby/market_spec.rb +3 -0
- data/spec/torn_ruby/property_spec.rb +44 -0
- data/spec/torn_ruby/racing_spec.rb +3 -0
- data/spec/torn_ruby/torn_spec.rb +3 -0
- data/spec/torn_ruby/user_spec.rb +3 -0
- data/spec/torn_ruby/utils_spec.rb +32 -0
- data/spec/torn_ruby_spec.rb +1 -0
- data/torn_ruby.gemspec +48 -0
- metadata +45 -10
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: torn_ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 1.0.1.beta
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bram
|
@@ -10,48 +10,54 @@ cert_chain: []
|
|
10
10
|
date: 2025-04-19 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
|
-
name:
|
13
|
+
name: fiddle
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
15
15
|
requirements:
|
16
16
|
- - "~>"
|
17
17
|
- !ruby/object:Gem::Version
|
18
|
-
version: '
|
18
|
+
version: '1.1'
|
19
19
|
type: :development
|
20
20
|
prerelease: false
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
22
22
|
requirements:
|
23
23
|
- - "~>"
|
24
24
|
- !ruby/object:Gem::Version
|
25
|
-
version: '
|
25
|
+
version: '1.1'
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
|
-
name:
|
27
|
+
name: pry
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
29
29
|
requirements:
|
30
30
|
- - "~>"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '
|
32
|
+
version: '0.15'
|
33
33
|
type: :development
|
34
34
|
prerelease: false
|
35
35
|
version_requirements: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '
|
40
|
-
description: A Ruby gem that provides a convenient wrapper around the Torn City API.
|
41
|
-
for developers looking to integrate Torn City data into Ruby applications.
|
39
|
+
version: '0.15'
|
40
|
+
description: A Ruby gem that provides a convenient wrapper around the Torn City API.
|
41
|
+
Ideal for developers looking to integrate Torn City data into Ruby applications.
|
42
42
|
email:
|
43
43
|
- bramjanssen@hey.com
|
44
44
|
executables: []
|
45
45
|
extensions: []
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
|
+
- ".github/workflows/main.yml"
|
49
|
+
- ".gitignore"
|
48
50
|
- ".rspec"
|
49
51
|
- ".rubocop.yml"
|
50
52
|
- CHANGELOG.md
|
51
53
|
- CODE_OF_CONDUCT.md
|
54
|
+
- Gemfile
|
55
|
+
- Gemfile.lock
|
52
56
|
- LICENSE.txt
|
53
57
|
- README.md
|
54
58
|
- Rakefile
|
59
|
+
- bin/console
|
60
|
+
- bin/setup
|
55
61
|
- lib/torn_ruby.rb
|
56
62
|
- lib/torn_ruby/base.rb
|
57
63
|
- lib/torn_ruby/client.rb
|
@@ -59,24 +65,53 @@ files:
|
|
59
65
|
- lib/torn_ruby/endpoints/base.rb
|
60
66
|
- lib/torn_ruby/endpoints/company.rb
|
61
67
|
- lib/torn_ruby/endpoints/faction.rb
|
68
|
+
- lib/torn_ruby/endpoints/forum.rb
|
62
69
|
- lib/torn_ruby/endpoints/market.rb
|
63
70
|
- lib/torn_ruby/endpoints/property.rb
|
71
|
+
- lib/torn_ruby/endpoints/racing.rb
|
72
|
+
- lib/torn_ruby/endpoints/torn.rb
|
64
73
|
- lib/torn_ruby/endpoints/user.rb
|
65
74
|
- lib/torn_ruby/faction.rb
|
75
|
+
- lib/torn_ruby/forum.rb
|
66
76
|
- lib/torn_ruby/market.rb
|
67
77
|
- lib/torn_ruby/property.rb
|
78
|
+
- lib/torn_ruby/racing.rb
|
79
|
+
- lib/torn_ruby/torn.rb
|
68
80
|
- lib/torn_ruby/user.rb
|
69
81
|
- lib/torn_ruby/utils.rb
|
70
82
|
- lib/torn_ruby/version.rb
|
71
83
|
- sig/torn_ruby.rbs
|
84
|
+
- spec/spec_helper.rb
|
85
|
+
- spec/torn_ruby/base_spec.rb
|
86
|
+
- spec/torn_ruby/client_spec.rb
|
87
|
+
- spec/torn_ruby/company_spec.rb
|
88
|
+
- spec/torn_ruby/endpoints/company_spec.rb
|
89
|
+
- spec/torn_ruby/endpoints/faction_spec.rb
|
90
|
+
- spec/torn_ruby/endpoints/forum_spec.rb
|
91
|
+
- spec/torn_ruby/endpoints/market_spec.rb
|
92
|
+
- spec/torn_ruby/endpoints/property_spec.rb
|
93
|
+
- spec/torn_ruby/endpoints/racing_spec.rb
|
94
|
+
- spec/torn_ruby/endpoints/torn_spec.rb
|
95
|
+
- spec/torn_ruby/endpoints/user_spec.rb
|
96
|
+
- spec/torn_ruby/faction_spec.rb
|
97
|
+
- spec/torn_ruby/forum_spec.rb
|
98
|
+
- spec/torn_ruby/market_spec.rb
|
99
|
+
- spec/torn_ruby/property_spec.rb
|
100
|
+
- spec/torn_ruby/racing_spec.rb
|
101
|
+
- spec/torn_ruby/torn_spec.rb
|
102
|
+
- spec/torn_ruby/user_spec.rb
|
103
|
+
- spec/torn_ruby/utils_spec.rb
|
104
|
+
- spec/torn_ruby_spec.rb
|
105
|
+
- torn_ruby.gemspec
|
72
106
|
homepage: https://github.com/ibramsterdam/torn_ruby
|
73
107
|
licenses:
|
74
108
|
- MIT
|
75
109
|
metadata:
|
76
|
-
allowed_push_host: https://rubygems.org
|
77
110
|
homepage_uri: https://github.com/ibramsterdam/torn_ruby
|
78
111
|
source_code_uri: https://github.com/ibramsterdam/torn_ruby
|
79
112
|
changelog_uri: https://github.com/ibramsterdam/torn_ruby/blob/main/CHANGELOG.md
|
113
|
+
documentation_uri: https://github.com/ibramsterdam/torn_ruby#readme
|
114
|
+
bug_tracker_uri: https://github.com/ibramsterdam/torn_ruby/issues
|
80
115
|
rdoc_options: []
|
81
116
|
require_paths:
|
82
117
|
- lib
|