forked from facebookarchive/instagram-ruby-gem
-
Notifications
You must be signed in to change notification settings - Fork 1
/
instagram.gemspec
37 lines (33 loc) · 1.58 KB
/
instagram.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/instagram/version', __FILE__)
Gem::Specification.new do |s|
s.add_development_dependency('rspec', '~> 2.4')
s.add_development_dependency('webmock', '~> 1.6')
s.add_development_dependency('bluecloth', '~> 2.0.11')
s.add_runtime_dependency('faraday', ['>= 0.7', '< 0.9'])
s.add_runtime_dependency('faraday_middleware', '~> 0.8')
s.add_runtime_dependency('multi_json', '>= 1.0.3', '~> 1.0')
s.add_runtime_dependency('hashie', '>= 0.4.0')
s.authors = ["Shayne Sweeney"]
s.description = %q{A Ruby wrapper for the Instagram REST and Search APIs}
s.post_install_message =<<eos
********************************************************************************
Follow @instagram on Twitter for announcements, updates, and news.
https://twitter.com/instagramapi
Join the mailing list!
https://groups.google.com/group/instagram-ruby-gem
********************************************************************************
eos
s.email = ['[email protected]']
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.files = `git ls-files`.split("\n")
s.homepage = 'https://github.com/Instagram/instagram-ruby-gem'
s.name = 'instagram'
s.platform = Gem::Platform::RUBY
s.require_paths = ['lib']
s.required_rubygems_version = Gem::Requirement.new('>= 1.3.6') if s.respond_to? :required_rubygems_version=
s.rubyforge_project = s.name
s.summary = %q{Ruby wrapper for the Instagram API}
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.version = Instagram::VERSION.dup
end