Skip to content

Commit

Permalink
fixed gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
youcune committed Jul 12, 2014
1 parent 53983fe commit 56cfcd6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# YoClient
# YoClient [![Build Status](https://travis-ci.org/youcune/yo_client.svg?branch=master)](https://travis-ci.org/youcune/yo_client)

is a Ruby client of [Yo](http://www.justyo.co/).

Expand All @@ -19,13 +19,13 @@ $ bundle
## Usage

```
client = YoClient::Client.new('API_TOKEN')
client = YoClient::Client.new(API_TOKEN)
# Send A Yo To All Subscribers
client.yoall
# Yo Individual Usernames
# Note that USERNAME will be upcased and send to API
# Note that USERNAME will be upcased and sent to API
client.yo(USERNAME)
# Count Total Subscribers
Expand All @@ -34,8 +34,9 @@ client.subscribers_count # -> 5

## Contributing

1. Fork it ( https://github.com/[my-github-username]/yo_client/fork )
1. Fork it ( https://github.com/youcune/yo_client/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request

2 changes: 1 addition & 1 deletion lib/yo_client/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module YoClient
VERSION = '0.0.1'
VERSION = '0.0.2'
end
2 changes: 1 addition & 1 deletion yo_client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
spec.homepage = 'https://github.com/youcune/yo_client'
spec.license = 'MIT'

spec.files = `git ls-files -z`.split('\x0')
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
Expand Down

0 comments on commit 56cfcd6

Please sign in to comment.