forked from facebookarchive/instagram-ruby-gem
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinstagram.gemspec
More file actions
26 lines (25 loc) · 1.25 KB
/
instagram.gemspec
File metadata and controls
26 lines (25 loc) · 1.25 KB
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
# -*- 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.5.4')
s.add_runtime_dependency('faraday_middleware', '>= 0.3.1')
s.add_runtime_dependency('multi_json', '>= 0.0.5')
s.add_runtime_dependency('hashie', '>= 0.4.0')
s.authors = ["Shayne Sweeney, Nate Westheimer"]
s.description = %q{A Ruby wrapper for the Instagram REST and Search APIs - adapted poorly but workingly by innonate.}
s.email = ['nate@innonate.com']
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/innonate/instagram-ruby-gem/'
s.name = 'instagram-innonate'
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