forked from ncherro/sms-fu
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsms_fu.gemspec
29 lines (26 loc) · 1.11 KB
/
sms_fu.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
# -*- encoding: utf-8 -*-
require './lib/sms_fu/version'
Gem::Specification.new do |s|
s.name = %q{sms_fu}
s.version = SMSFu::VERSION
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Yacin Bahi"]
s.date = %q{2013-02-11}
s.description = %q{SMS Fu allows you to send text messages to a mobile recipient for free. It leverages ActionMailer or Pony for delivery of text messages through e-mail.}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"README.rdoc"
]
s.files = Dir.glob("lib/**/*.rb")
s.files += ["Rakefile","install.rb", "tasks/sms_fu_tasks.rake", "templates/sms_fu.yml"]
s.has_rdoc = true
s.homepage = %q{https://github.com/yacc/sms-fu}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.1}
s.summary = %q{sms_fu allows you to send free text messages to a mobile recipient.}
s.add_dependency(%q<actionmailer>, [">= 3.2.0"])
s.add_dependency(%q<pony>, [">= 1.0"])
s.add_dependency(%q<phony>, [">= 1.8.6"])
s.add_development_dependency 'rspec', '~> 2.5'
end