-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbigml.gemspec
33 lines (25 loc) · 970 Bytes
/
bigml.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
require File.expand_path("../lib/version", __FILE__)
Gem::Specification.new do |s|
s.name = "bigml"
s.version = BigMLGem::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Francisco Martín", "Mercè Martín"]
s.email = ["mmartin@atinet.es"]
s.homepage = "https://github.com/mmerce/bigml_ruby"
s.summary = "BigML api"
s.description = "Ruby api for BigML objects' access"
s.required_rubygems_version = ">= 1.3.6"
# lol - required for validation
s.rubyforge_project = "bigml"
# If you have other dependencies, add them here
# s.add_dependency "another", "~> 1.2"
s.add_dependency "json", "~> 1.7.3"
s.add_dependency "rest-client", "~> 1.6.7"
# If you need to check in files that aren't .rb files, add them here
s.files = Dir["{lib}/**/*.rb"]
s.require_path = 'lib'
# If you need an executable, add it here
# s.executables = [""]
# If you have C extensions, uncomment this line
# s.extensions = "ext/extconf.rb"
end