forked from sapcc/elektron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelektron.gemspec
24 lines (21 loc) · 919 Bytes
/
elektron.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'elektron/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'elektron'
s.version = Elektron::VERSION
s.authors = ['Andreas Pfau']
s.email = ['[email protected]']
s.homepage = 'https://github.com/sapcc/elektron'
s.summary = 'Elektron is a tiny client for OpenStack APIs.'
s.description = 'It handles the authentication, manages the session
(reauthentication), implements the service discovery and
offers the most important HTTP methods. Everything that
Elektron knows and depends on is based solely on the token
context it gets from Keystone.'
s.license = 'APACHE'
s.files = Dir[
'{lib}/**/*', 'APACHE-LICENSE', 'Rakefile', 'README.md'
]
end