-
Notifications
You must be signed in to change notification settings - Fork 0
/
lolcommits-twitter.gemspec
43 lines (37 loc) · 1.76 KB
/
lolcommits-twitter.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'lolcommits/twitter/version'
Gem::Specification.new do |spec|
spec.name = "lolcommits-twitter"
spec.version = Lolcommits::Twitter::VERSION
spec.authors = ["Matthew Hutchinson"]
spec.email = ["[email protected]"]
spec.summary = %q{Post lolcommits to Twitter}
spec.homepage = "https://github.com/lolcommits/lolcommits-twitter"
spec.license = "LGPL-3.0"
spec.description = %q{Automatically tweet your lolcommits}
spec.metadata = {
"homepage_uri" => "https://github.com/lolcommits/lolcommits-twitter",
"changelog_uri" => "https://github.com/lolcommits/lolcommits-twitter/blob/master/CHANGELOG.md",
"source_code_uri" => "https://github.com/lolcommits/lolcommits-twitter",
"bug_tracker_uri" => "https://github.com/lolcommits/lolcommits-twitter/issues",
"allowed_push_host" => "https://rubygems.org"
}
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(assets|test|features)/}) }
spec.test_files = `git ls-files -- {test,features}/*`.split("\n")
spec.bindir = "bin"
spec.executables = []
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.4"
spec.add_runtime_dependency "rest-client", ">= 2.1.0"
spec.add_runtime_dependency "oauth"
spec.add_runtime_dependency "simple_oauth"
spec.add_runtime_dependency "addressable"
spec.add_runtime_dependency "lolcommits", ">= 0.14.2"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
spec.add_development_dependency "minitest"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "webmock"
spec.add_development_dependency "pry"
end