-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathf00px.gemspec
More file actions
24 lines (19 loc) · 827 Bytes
/
f00px.gemspec
File metadata and controls
24 lines (19 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require File.expand_path('../lib/f00px/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = "f00px"
gem.version = F00px::VERSION
gem.authors = ["Arthur Neves"]
gem.email = ["arthurnn@gmail.com"]
gem.homepage = ""
gem.summary = "500px api rubygem"
gem.description = ""
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.files = Dir.glob("lib/**/*") + %w(LICENSE README.md Rakefile)
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 1.9"
gem.required_rubygems_version = ">= 1.3.6"
gem.rubyforge_project = "f00px"
gem.add_dependency("faraday_middleware", ["~> 0.9.0"])
gem.add_dependency("simple_oauth", ["~> 0.2.0"])
end