forked from facebookarchive/instagram-ruby-gem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstagram.gemspec
53 lines (47 loc) · 2.51 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/instagram/version', __FILE__)
Gem::Specification.new do |s|
s.add_development_dependency('rake', '~> 0.9.2.2')
s.add_development_dependency('rspec', '~> 2.4')
s.add_development_dependency('webmock', '~> 1.6')
s.add_development_dependency('bluecloth', '~> 2.2.0')
s.add_runtime_dependency('faraday', ['>= 0.7', '< 0.11'])
s.add_runtime_dependency('faraday_middleware', ['>= 0.8', '< 0.15'])
s.add_runtime_dependency('multi_json', '>= 1.0.3', '~> 1.0')
s.add_runtime_dependency('hashie', '>= 0.4.0')
s.authors = ["Adapted from original author Shayne Sweeney"]
s.description = %q{A Ruby wrapper for the Instagram REST and Search APIs - Community Maintained}
s.post_install_message =<<eos
********************************************************************************
*** This is an 'Unofficial' version of the gem that is a direct clone of the 'official' gem with
modifications to the dependency version numbers.
Instagram REST and Search APIs
------------------------------
Our developer site documents all the Instagram REST and Search APIs.
(http://instagram.com/developer)
Blog
----------------------------
The Developer Blog features news and important announcements about the Instagram Platform.
You will also find tutorials and best practices to help you build great platform integrations.
Make sure to subscribe to the RSS feed so you don't miss out on new posts:
(http://developers.instagram.com).
Community
----------------------
The Stack Overflow community is a great place to ask API related questions or if you need help with your code.
Make sure to tag your questions with the Instagram tag to get fast answers from other fellow developers and members of the Instagram team.
(http://stackoverflow.com/questions/tagged/instagram/)
********************************************************************************
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/GenomeUS/instagram-ruby-gem.git'
s.name = 'instagram-community-maintained'
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 - Community Maintained}
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.version = Instagram::VERSION.dup
end