-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtwitter-vine.gemspec
29 lines (24 loc) · 997 Bytes
/
twitter-vine.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "twitter-vine/version"
Gem::Specification.new do |s|
s.name = "twitter-vine"
s.version = TwitterVine::VERSION
s.authors = ["Darren Hicks"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/deevis/twitter-vine"
s.summary = "A simple API to search and retrieve information about Vines"
s.description = "Uses the existing Twitter API and Nokogiri to get the job done"
# s.rubyforge_project = "linkser"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# Gem dependencies
#
s.add_runtime_dependency('twitter', '>5.13.0')
s.add_runtime_dependency('faraday')
s.add_runtime_dependency('nokogiri')
# Specs
s.add_development_dependency('rspec', '>= 2.14.1')
end