Sha256: b997c2a4c6fbe104ae99d2c1e4848a0239366a711db845fc0f159ad6ae0dfe90
Contents?: true
Size: 950 Bytes
Versions: 2
Compression:
Stored size: 950 Bytes
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'totter/version' Gem::Specification.new do |gem| gem.name = 'totter' gem.version = Totter::VERSION gem.authors = ['Sam Soffes', 'Aaron Gotwalt', 'Adam Ryan'] gem.email = ['sam@soff.es', 'gotwalt@gmail.com', 'adam.g.ryan@gmail.com'] gem.description = 'Ruby gem for working with the Seesaw API.' gem.summary = gem.description gem.homepage = 'https://github.com/seesawco/totter-rb' gem.license = 'MIT' gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ['lib'] gem.required_ruby_version = '>= 1.8.7' gem.add_dependency 'multi_json', '~> 1.5.0' gem.add_dependency 'hashie', '~> 1.2.0' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
totter-0.3.3 | totter.gemspec |
totter-0.3.2 | totter.gemspec |