Sha256: c4ae9c4a8fc1354c2293d717a340b1d8ad9c60f1796820b01c1b01bf5ba4efb4

Contents?: true

Size: 963 Bytes

Versions: 4

Compression:

Stored size: 963 Bytes

Contents

# -*- encoding: utf-8 -*-
require File.expand_path('../lib/chutki/version', __FILE__)

Gem::Specification.new do |gem|
  gem.authors       = ["Aditya Sanghi"]
  gem.email         = ["aditya.sanghi@risingsuntech.net"]
  gem.description   = %q{Sends SMS thru a web api}
  gem.summary       = %q{Your SMS provider has given you an endpoint which you must call to Send SMS. Chutki makes it easy.}
  gem.homepage      = "https://github.com/asanghi/chutki"

  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.name          = "chutki"
  gem.require_paths = ["lib"]
  gem.version       = Chutki::VERSION

  gem.add_runtime_dependency "httparty", ">= 0.5.2"

  [["shoulda",">= 2.10.3"],["mocha",">= 0.9.8"],["mcmire-matchy",">= 0.5.2"],["fakeweb",">= 1.2.8"]].each do |d|
    gem.add_development_dependency d[0], d[1]
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
chutki-1.1.0 chutki.gemspec
chutki-1.0.0 chutki.gemspec
chutki-0.1.1 chutki.gemspec
chutki-0.0.1 chutki.gemspec