textmagic.gemspec in textmagic-0.6.0 vs textmagic.gemspec in textmagic-0.7.0
- old
+ new
@@ -1,24 +1,23 @@
-# -*- encoding: utf-8 -*-
+
require File.expand_path("../lib/textmagic/version", __FILE__)
Gem::Specification.new do |gem|
- gem.authors = ["Vladimir Bobes Tuzinsky"]
+ gem.authors = ["Vladimír Bobeš Tužinský"]
gem.email = ["vladimir@tuzinsky.com"]
- gem.summary = %q{Ruby interface to the TextMagic's Bulk SMS Gateway}
- gem.description = %q{
+ gem.summary = "Ruby interface to the TextMagic's Bulk SMS Gateway"
+ gem.description = "
textmagic is a Ruby interface to the TextMagic's Bulk SMS Gateway.
It can be used to easily integrate SMS features into your application.
It supports sending messages, receiving replies and more.
You need to have a valid TextMagic account to use this gem. You can get one at http://www.textmagic.com.
- }
- gem.homepage = ""
+ "
+ gem.homepage = "https://github.com/bobes/textmagic"
- gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
+ gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "textmagic"
+ gem.licenses = ["MIT"]
gem.require_paths = ["lib"]
gem.version = Textmagic::VERSION
-
- gem.add_runtime_dependency "httparty", "~> 0.5"
end