Skip to content
This repository has been archived by the owner on Nov 16, 2021. It is now read-only.

Commit

Permalink
remove Echoe dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
sprsquish committed Nov 26, 2012
1 parent bde8388 commit ed05b90
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 36 deletions.
25 changes: 0 additions & 25 deletions Manifest

This file was deleted.

22 changes: 11 additions & 11 deletions Rakefile
@@ -1,14 +1,14 @@

require 'rubygems'
require 'echoe'
require 'rake/testtask'

Rake::TestTask.new(:test) do |test|
test.libs << 'lib' << 'test'
test.pattern = 'test/**/*_test.rb'
test.verbose = true
end

Echoe.new("thrift_client") do |p|
p.author = ["Evan Weaver", "Ryan King", "Jeff Hodges"]
p.project = "fauna"
p.summary = "A Thrift client wrapper that encapsulates some common failover behavior."
p.rubygems_version = ">= 0.8"
p.dependencies = ['thrift ~>0.8.0']
p.ignore_pattern = /^(vendor\/thrift)/
p.rdoc_pattern = /^(lib|bin|tasks|ext)|^README|^CHANGELOG|^TODO|^LICENSE|^COPYING$/
p.spec_pattern = "spec/*_spec.rb"
task :build do
`gem build thrift_client.gemspec`
end

task :default => :test
23 changes: 23 additions & 0 deletions thrift_client.gemspec
@@ -0,0 +1,23 @@
# -*- encoding: utf-8 -*-

VERSION = File.read("CHANGELOG")[/^\s*v([\d\w\.]+)(\.|\s|$)/, 1]

Gem::Specification.new do |s|
s.name = "thrift_client"
s.version = VERSION

s.platform = Gem::Platform::RUBY
s.authors = ["Evan Weaver", "Ryan King", "Jeff Hodges"]
s.homepage = "https://github.com/twitter/thrift_client"
s.summary = "A Thrift client wrapper that encapsulates some common failover behavior."

s.files = Dir["lib/**/*.rb"].to_a
s.test_files = Dir["test/**/*.rb"].to_a

s.require_paths = ["lib"]

s.add_dependency("thrift", ["~> 0.8.0"])

s.add_development_dependency 'rake'
s.add_development_dependency 'mongrel', '1.2.0.pre2'
end

0 comments on commit ed05b90

Please sign in to comment.