forked from collectiveidea/tinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtinder.gemspec
32 lines (30 loc) · 1.32 KB
/
tinder.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'tinder/version'
Gem::Specification.new do |gem|
gem.add_dependency 'activesupport', ['>= 2.3', '< 4']
gem.add_dependency 'eventmachine', ['>= 0.12.0', '< 2']
gem.add_dependency 'faraday', '~> 0.8'
gem.add_dependency 'faraday_middleware', '~> 0.8'
gem.add_dependency 'hashie', '~> 1.0'
gem.add_dependency 'json', '~> 1.6'
gem.add_dependency 'mime-types', '~> 1.19'
gem.add_dependency 'multi_json', '~> 1.0'
gem.add_dependency 'multipart-post', '~> 1.1'
gem.add_dependency 'twitter-stream', '~> 0.1'
gem.add_development_dependency 'fakeweb'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.authors = ["Brandon Keepers", "Brian Ryckbost"]
gem.description = %q{A Ruby API for interfacing with Campfire, the 37Signals chat application.}
gem.email = ['[email protected]', '[email protected]']
gem.extra_rdoc_files = ['README.markdown']
gem.files = `git ls-files`.split("\n")
gem.homepage = 'http://github.com/collectiveidea/tinder'
gem.name = 'tinder'
gem.require_paths = ['lib']
gem.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
gem.summary = %q{Ruby wrapper for the Campfire API}
gem.test_files = `git ls-files -- spec/*`.split("\n")
gem.version = Tinder::VERSION
end