forked from mastodon/omniauth-mastodon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathomniauth-mastodon-st.gemspec
More file actions
22 lines (19 loc) · 881 Bytes
/
omniauth-mastodon-st.gemspec
File metadata and controls
22 lines (19 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'omniauth/mastodon/version'
Gem::Specification.new do |spec|
spec.authors = ["Eugen Rochko"]
spec.email = "eugen@zeonfederated.com"
spec.description = "OmniAuth Strategy for Mastodon"
spec.summary = spec.description
spec.homepage = "https://github.com/burakakca/omniauth-mastodon"
spec.licenses = %w(MIT)
spec.files = %w(omniauth-mastodon-st.gemspec) + Dir['lib/**/*.rb'] + Dir['lib/**/*.yml']
spec.name = "omniauth-mastodon-st"
spec.require_paths = %w(lib)
spec.version = OmniAuth::Mastodon::Version
spec.add_dependency 'omniauth', '~> 2.0'
spec.add_dependency 'omniauth-oauth2', '~> 1.7.1'
spec.add_dependency 'i18n', '~> 1.8.10'
spec.add_development_dependency 'bundler', '~> 2.0'
end