Skip to content

Commit 7094b7f

Browse files
committed
Gem badge
1 parent 2690db9 commit 7094b7f

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
/pkg/
88
/spec/reports/
99
/tmp/
10+
/*.gem
1011
*.bundle
1112
*.so
1213
*.o

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# SmsRu
22

3+
[![Gem Version](https://badge.fury.io/rb/smsru.png)](http://badge.fury.io/rb/smsru)
4+
35
This gem is API for sending sms through [sms.ru](http://sms.ru) service. SmsRu allows you to connect to sms.ru api without Net::HTTP syntax sugar. Check [API](http://sms.ru/?panel=api) to list of all available queries.
46

57
## Installation

sms_ru.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Gem::Specification.new do |spec|
99
spec.authors = ['Alex Antonov']
1010
spec.email = ['[email protected]']
1111
spec.summary = %q{http://sms.ru api integration for ruby}
12-
spec.homepage = ''
12+
spec.homepage = 'https://github.com/asiniy/sms_ru'
1313
spec.license = 'MIT'
1414

15-
spec.files = `git ls-files -z`.split('\x0')
15+
spec.files = `git ls-files`.split($/)
1616
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
1717
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
1818
spec.require_paths = ['lib']

0 commit comments

Comments
 (0)