-
Notifications
You must be signed in to change notification settings - Fork 0
/
combine_hashtags.gemspec
40 lines (30 loc) · 1.46 KB
/
combine_hashtags.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
# frozen_string_literal: true
require_relative "lib/combine_hashtags/version"
Gem::Specification.new do |spec|
spec.name = "combine_hashtags"
spec.version = CombineHashtags::VERSION
spec.authors = ["sofia alvarez"]
spec.email = ["[email protected]"]
spec.summary = "Search combinations of hashtags using the Instagram API"
spec.description = "First version limited to Instagram Basic Display permissions
As such, using this gem requires having a Facebook Developper account in order to get an Instagram User Access Token
For more info: https://developers.facebook.com/docs/instagram-basic-display-api/getting-started "
spec.homepage = "https://github.com/sofofos/combine-hashtags"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.6.0"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "bin"
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
# Uncomment to register a new dependency of your gem
# spec.add_dependency "example-gem", "~> 1.0"
spec.add_development_dependency "rspec", "~> 3.2"
# gems required
spec.add_dependency "dotenv"
spec.add_dependency "json"
spec.add_dependency "rest-client"
# For more information and examples about making a new gem, checkout our
# guide at: https://bundler.io/guides/creating_gem.html
end