Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
aklaiber committed Jun 26, 2014
1 parent c52d300 commit 48c456a
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,37 @@ Or install it yourself as:

## Usage

TODO: Write usage instructions here
``` ruby
collapse_key = '_GCM_COLLAPS_KEY_'
data = { foo: 'bar' }

Rgcm::Message.new('_API_KEY_').post('_GCM_REGESTRATION_ID_', collapse_key, data) # => Rgcm::Response

Rgcm::Message.new('_API_KEY_').post(['_GCM_REGESTRATION_ID_1_', '_GCM_REGESTRATION_ID_2_'], collapse_key, data) # => Rgcm::Response
```

With rails YML config file:

``` yml
development:
api_key: '_API_KEY_'

test:
api_key: '_API_KEY_'

production:
api_key: '_API_KEY_'
```
``` ruby
collapse_key = '_GCM_COLLAPS_KEY_'
data = { foo: 'bar' }

Rgcm::Message.new.post('_GCM_REGESTRATION_ID_', collapse_key, data) # => Rgcm::Response

Rgcm::Message.new.post(['_GCM_REGESTRATION_ID_1_', '_GCM_REGESTRATION_ID_2_'], collapse_key, data) # => Rgcm::Response
```


## Contributing

Expand Down

0 comments on commit 48c456a

Please sign in to comment.