-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathohmage.gemspec
More file actions
23 lines (22 loc) · 874 Bytes
/
ohmage.gemspec
File metadata and controls
23 lines (22 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ohmage/version'
Gem::Specification.new do |spec|
spec.add_dependency 'addressable', '~> 2.4'
spec.add_dependency 'http', '~> 0.8.0'
spec.add_dependency 'thor', '~> 0.19.1'
spec.add_dependency 'formatador', '~> 0.2.5'
spec.authors = ['Steve Nolen']
spec.description = 'A Ruby interface for the ohmage 2.x API.'
spec.email = %w(technolengy@gmail.com)
spec.files = %w(LICENSE.txt ohmage.gemspec bin/ohmage) + Dir['lib/**/*.rb']
spec.homepage = 'https://github.com/ohmage/gem'
spec.licenses = %w(Apache 2)
spec.name = 'ohmage'
spec.executables = 'ohmage'
spec.require_paths = %w(lib)
spec.required_ruby_version = '>= 1.9.3'
spec.required_rubygems_version = '>= 1.3.5'
spec.summary = spec.description
spec.version = Ohmage::Version
end