forked from socrata/soda-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsoda.gemspec
More file actions
25 lines (20 loc) · 759 Bytes
/
soda.gemspec
File metadata and controls
25 lines (20 loc) · 759 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
25
require File.expand_path("../lib/soda/version", __FILE__)
Gem::Specification.new do |s|
s.name = 'soda-ruby'
s.version = SODA::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Chris Metcalf"]
s.email = 'chris.metcalf@socrata.com'
s.homepage =
'http://github.com/socrata/soda-ruby'
s.summary = "Ruby for SODA 2.0"
s.description = "A simple wrapper for SODA 2.0"
s.required_rubygems_version = ">= 1.3.6"
# lol - required for validation
s.rubyforge_project = "soda-ruby"
# If you need to check in files that aren't .rb files, add them here
s.files = Dir["{lib}/**/*.rb", "bin/*", "LICENSE", "*.mkd"]
s.require_path = 'lib'
# we depend on:
s.add_dependency 'hashie'
end