esi-sdk 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. checksums.yaml +7 -0
  2. data/.editorconfig +9 -0
  3. data/.github/ISSUE_TEMPLATE/bug_report.md +36 -0
  4. data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  5. data/.github/ISSUE_TEMPLATE/support.md +7 -0
  6. data/.github/PULL_REQUEST_TEMPLATE.md +37 -0
  7. data/.github/dependabot.yml +17 -0
  8. data/.github/workflows/cicd.yml +181 -0
  9. data/.gitignore +11 -0
  10. data/.rspec +2 -0
  11. data/.rubocop.yml +36 -0
  12. data/.ruby-version +1 -0
  13. data/.yardext.rb +18 -0
  14. data/.yardopts +17 -0
  15. data/CHANGELOG.md +17 -0
  16. data/CODE_OF_CONDUCT.md +84 -0
  17. data/CONTRIBUTING.md +69 -0
  18. data/Gemfile +24 -0
  19. data/Gemfile.lock +141 -0
  20. data/LICENSE.txt +21 -0
  21. data/README.md +87 -0
  22. data/Rakefile +349 -0
  23. data/SECURITY.md +13 -0
  24. data/bin/console +15 -0
  25. data/bin/setup +8 -0
  26. data/esi-sdk.gemspec +32 -0
  27. data/exe/esi-sdk +4 -0
  28. data/lib/esi/client/alliance.rb +104 -0
  29. data/lib/esi/client/assets.rb +179 -0
  30. data/lib/esi/client/bookmarks.rb +126 -0
  31. data/lib/esi/client/calendar.rb +139 -0
  32. data/lib/esi/client/character.rb +389 -0
  33. data/lib/esi/client/clones.rb +69 -0
  34. data/lib/esi/client/contacts.rb +277 -0
  35. data/lib/esi/client/contracts.rb +274 -0
  36. data/lib/esi/client/corporation.rb +626 -0
  37. data/lib/esi/client/dogma.rb +117 -0
  38. data/lib/esi/client/faction_warfare.rb +196 -0
  39. data/lib/esi/client/fittings.rb +93 -0
  40. data/lib/esi/client/fleets.rb +428 -0
  41. data/lib/esi/client/incursions.rb +30 -0
  42. data/lib/esi/client/industry.rb +237 -0
  43. data/lib/esi/client/insurance.rb +30 -0
  44. data/lib/esi/client/killmails.rb +95 -0
  45. data/lib/esi/client/location.rb +100 -0
  46. data/lib/esi/client/loyalty.rb +61 -0
  47. data/lib/esi/client/mail.rb +244 -0
  48. data/lib/esi/client/market.rb +302 -0
  49. data/lib/esi/client/opportunities.rb +124 -0
  50. data/lib/esi/client/planetary_interaction.rb +122 -0
  51. data/lib/esi/client/routes.rb +37 -0
  52. data/lib/esi/client/search.rb +68 -0
  53. data/lib/esi/client/skills.rb +97 -0
  54. data/lib/esi/client/sovereignty.rb +74 -0
  55. data/lib/esi/client/status.rb +31 -0
  56. data/lib/esi/client/universe.rb +640 -0
  57. data/lib/esi/client/user_interface.rb +145 -0
  58. data/lib/esi/client/wallet.rb +191 -0
  59. data/lib/esi/client/wars.rb +82 -0
  60. data/lib/esi/client.rb +225 -0
  61. data/lib/esi/errors.rb +51 -0
  62. data/lib/esi/version.rb +5 -0
  63. data/lib/esi-sdk.rb +8 -0
  64. data/release.config.js +32 -0
  65. data/yard/fulldoc/html/css/pygments-default.css +69 -0
  66. data/yard/fulldoc/html/setup.rb +6 -0
  67. data/yard/layout/html/setup.rb +6 -0
  68. metadata +156 -0
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ESI
4
+ VERSION = "1.1.1"
5
+ end
data/lib/esi-sdk.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "./esi/client"
4
+ require_relative "./esi/version"
5
+
6
+ # Namespace for the EVE Swagger Interface (ESI) SDK.
7
+ module ESI
8
+ end
data/release.config.js ADDED
@@ -0,0 +1,32 @@
1
+ module.exports = {
2
+ branches: ['main'],
3
+ plugins: [
4
+ ['@semantic-release/commit-analyzer', {
5
+ releaseRules: [
6
+ { breaking: true, release: 'major' },
7
+ { revert: true, release: 'patch' },
8
+ { type: 'feat', release: 'minor' },
9
+ { type: 'fix', release: 'patch' },
10
+ { type: 'perf', release: 'patch' },
11
+ { type: 'refactor', release: 'patch' },
12
+ { type: 'test', release: 'patch' },
13
+ { type: 'ci', release: 'patch' },
14
+ { type: 'docs', release: false },
15
+ ]
16
+ }],
17
+ '@semantic-release/release-notes-generator',
18
+ ['@semantic-release/changelog', {
19
+ changelogTitle: '# ESI SDK Changelog'
20
+ }],
21
+ ['@semantic-release/exec', {
22
+ prepareCmd: "VERSION=${nextRelease.version} bundle exec rake set_version"
23
+ }],
24
+ ['@semantic-release/git', {
25
+ assets: ['CHANGELOG.md', 'lib/esi/version.rb']
26
+ }],
27
+ ['@semantic-release/exec', {
28
+ publishCmd: "bundle exec rake build release:rubygem_push"
29
+ }],
30
+ '@semantic-release/github'
31
+ ]
32
+ }
@@ -0,0 +1,69 @@
1
+ .highlight .hll { background-color: #ffffcc }
2
+ .highlight { background: #f8f8f8; }
3
+ .highlight .c { color: #408080; font-style: italic } /* Comment */
4
+ .highlight .err { border: 1px solid #FF0000 } /* Error */
5
+ .highlight .k { color: #008000; font-weight: bold } /* Keyword */
6
+ .highlight .o { color: #666666 } /* Operator */
7
+ .highlight .ch { color: #408080; font-style: italic } /* Comment.Hashbang */
8
+ .highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */
9
+ .highlight .cp { color: #BC7A00 } /* Comment.Preproc */
10
+ .highlight .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */
11
+ .highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */
12
+ .highlight .cs { color: #408080; font-style: italic } /* Comment.Special */
13
+ .highlight .gd { color: #A00000 } /* Generic.Deleted */
14
+ .highlight .ge { font-style: italic } /* Generic.Emph */
15
+ .highlight .gr { color: #FF0000 } /* Generic.Error */
16
+ .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
17
+ .highlight .gi { color: #00A000 } /* Generic.Inserted */
18
+ .highlight .go { color: #888888 } /* Generic.Output */
19
+ .highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
20
+ .highlight .gs { font-weight: bold } /* Generic.Strong */
21
+ .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
22
+ .highlight .gt { color: #0044DD } /* Generic.Traceback */
23
+ .highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
24
+ .highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
25
+ .highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
26
+ .highlight .kp { color: #008000 } /* Keyword.Pseudo */
27
+ .highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
28
+ .highlight .kt { color: #B00040 } /* Keyword.Type */
29
+ .highlight .m { color: #666666 } /* Literal.Number */
30
+ .highlight .s { color: #BA2121 } /* Literal.String */
31
+ .highlight .na { color: #7D9029 } /* Name.Attribute */
32
+ .highlight .nb { color: #008000 } /* Name.Builtin */
33
+ .highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */
34
+ .highlight .no { color: #880000 } /* Name.Constant */
35
+ .highlight .nd { color: #AA22FF } /* Name.Decorator */
36
+ .highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
37
+ .highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
38
+ .highlight .nf { color: #0000FF } /* Name.Function */
39
+ .highlight .nl { color: #A0A000 } /* Name.Label */
40
+ .highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
41
+ .highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
42
+ .highlight .nv { color: #19177C } /* Name.Variable */
43
+ .highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
44
+ .highlight .w { color: #bbbbbb } /* Text.Whitespace */
45
+ .highlight .mb { color: #666666 } /* Literal.Number.Bin */
46
+ .highlight .mf { color: #666666 } /* Literal.Number.Float */
47
+ .highlight .mh { color: #666666 } /* Literal.Number.Hex */
48
+ .highlight .mi { color: #666666 } /* Literal.Number.Integer */
49
+ .highlight .mo { color: #666666 } /* Literal.Number.Oct */
50
+ .highlight .sa { color: #BA2121 } /* Literal.String.Affix */
51
+ .highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
52
+ .highlight .sc { color: #BA2121 } /* Literal.String.Char */
53
+ .highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */
54
+ .highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
55
+ .highlight .s2 { color: #BA2121 } /* Literal.String.Double */
56
+ .highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
57
+ .highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
58
+ .highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
59
+ .highlight .sx { color: #008000 } /* Literal.String.Other */
60
+ .highlight .sr { color: #BB6688 } /* Literal.String.Regex */
61
+ .highlight .s1 { color: #BA2121 } /* Literal.String.Single */
62
+ .highlight .ss { color: #19177C } /* Literal.String.Symbol */
63
+ .highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
64
+ .highlight .fm { color: #0000FF } /* Name.Function.Magic */
65
+ .highlight .vc { color: #19177C } /* Name.Variable.Class */
66
+ .highlight .vg { color: #19177C } /* Name.Variable.Global */
67
+ .highlight .vi { color: #19177C } /* Name.Variable.Instance */
68
+ .highlight .vm { color: #19177C } /* Name.Variable.Magic */
69
+ .highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ def stylesheets_full_list
4
+ # Load the existing stylesheets while appending the custom one
5
+ super + %w[css/pygments-default.css]
6
+ end
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ def stylesheets
4
+ # Load the existing stylesheets while appending the custom one
5
+ super + %w[css/pygments-default.css]
6
+ end
metadata ADDED
@@ -0,0 +1,156 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: esi-sdk
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Bokobo Shahni
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-07-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: faraday
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.5'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: faraday-http-cache
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.2'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.2'
41
+ - !ruby/object:Gem::Dependency
42
+ name: faraday_middleware
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.0'
55
+ description: ESI SDK is a Ruby API client for the EVE Swagger Interface (ESI), the
56
+ official API for the EVE Online MMORPG.
57
+ email:
58
+ - shahni@bokobo.space
59
+ executables:
60
+ - esi-sdk
61
+ extensions: []
62
+ extra_rdoc_files: []
63
+ files:
64
+ - ".editorconfig"
65
+ - ".github/ISSUE_TEMPLATE/bug_report.md"
66
+ - ".github/ISSUE_TEMPLATE/feature_request.md"
67
+ - ".github/ISSUE_TEMPLATE/support.md"
68
+ - ".github/PULL_REQUEST_TEMPLATE.md"
69
+ - ".github/dependabot.yml"
70
+ - ".github/workflows/cicd.yml"
71
+ - ".gitignore"
72
+ - ".rspec"
73
+ - ".rubocop.yml"
74
+ - ".ruby-version"
75
+ - ".yardext.rb"
76
+ - ".yardopts"
77
+ - CHANGELOG.md
78
+ - CODE_OF_CONDUCT.md
79
+ - CONTRIBUTING.md
80
+ - Gemfile
81
+ - Gemfile.lock
82
+ - LICENSE.txt
83
+ - README.md
84
+ - Rakefile
85
+ - SECURITY.md
86
+ - bin/console
87
+ - bin/setup
88
+ - esi-sdk.gemspec
89
+ - exe/esi-sdk
90
+ - lib/esi-sdk.rb
91
+ - lib/esi/client.rb
92
+ - lib/esi/client/alliance.rb
93
+ - lib/esi/client/assets.rb
94
+ - lib/esi/client/bookmarks.rb
95
+ - lib/esi/client/calendar.rb
96
+ - lib/esi/client/character.rb
97
+ - lib/esi/client/clones.rb
98
+ - lib/esi/client/contacts.rb
99
+ - lib/esi/client/contracts.rb
100
+ - lib/esi/client/corporation.rb
101
+ - lib/esi/client/dogma.rb
102
+ - lib/esi/client/faction_warfare.rb
103
+ - lib/esi/client/fittings.rb
104
+ - lib/esi/client/fleets.rb
105
+ - lib/esi/client/incursions.rb
106
+ - lib/esi/client/industry.rb
107
+ - lib/esi/client/insurance.rb
108
+ - lib/esi/client/killmails.rb
109
+ - lib/esi/client/location.rb
110
+ - lib/esi/client/loyalty.rb
111
+ - lib/esi/client/mail.rb
112
+ - lib/esi/client/market.rb
113
+ - lib/esi/client/opportunities.rb
114
+ - lib/esi/client/planetary_interaction.rb
115
+ - lib/esi/client/routes.rb
116
+ - lib/esi/client/search.rb
117
+ - lib/esi/client/skills.rb
118
+ - lib/esi/client/sovereignty.rb
119
+ - lib/esi/client/status.rb
120
+ - lib/esi/client/universe.rb
121
+ - lib/esi/client/user_interface.rb
122
+ - lib/esi/client/wallet.rb
123
+ - lib/esi/client/wars.rb
124
+ - lib/esi/errors.rb
125
+ - lib/esi/version.rb
126
+ - release.config.js
127
+ - yard/fulldoc/html/css/pygments-default.css
128
+ - yard/fulldoc/html/setup.rb
129
+ - yard/layout/html/setup.rb
130
+ homepage: https://github.com/bokoboshahni/esi-sdk
131
+ licenses:
132
+ - MIT
133
+ metadata:
134
+ homepage_uri: https://github.com/bokoboshahni/esi-sdk
135
+ source_code_uri: https://github.com/bokoboshahni/esi-sdk
136
+ changelog_uri: https://github.com/bokoboshahni/blob/main/CHANGELOG.md
137
+ post_install_message:
138
+ rdoc_options: []
139
+ require_paths:
140
+ - lib
141
+ required_ruby_version: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: 3.0.0
146
+ required_rubygems_version: !ruby/object:Gem::Requirement
147
+ requirements:
148
+ - - ">="
149
+ - !ruby/object:Gem::Version
150
+ version: '0'
151
+ requirements: []
152
+ rubygems_version: 3.2.22
153
+ signing_key:
154
+ specification_version: 4
155
+ summary: API client for the EVE Swagger Interface (ESI)
156
+ test_files: []