pushover 0.99.1 → 0.99.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 384098813f10cc5c417e2e4f833ba8b7e7e58397
4
+ data.tar.gz: 30885b1bda002d1e5a95ae34ab5c67328e4f5b95
5
+ SHA512:
6
+ metadata.gz: 584baf258b9ef963b9f818203fbc9c3a507feb0fb5c7a214b2aa01627853fcddee08264048cf156116343641e74202f1916a6444251a83ba8fd635f1ecee50ea
7
+ data.tar.gz: ce345127bb007692d1faab0973c35f0f4d752145ff1b62a74f39888fefbab7ec19bde59e48ed53124dc22a8965a4c96fc394162ae633b4d8f9b6db19c3d7160c
data/README.md CHANGED
@@ -29,7 +29,7 @@ require 'pushover'
29
29
  To send with the very minimum amount of information.
30
30
 
31
31
  ```ruby
32
- Pushover.notification('message', 'title', user:'USER_TOKEN', token:'APP_TOKEN')
32
+ Pushover.notification(message: 'message', title: 'title', user: 'USER_TOKEN', token: 'APP_TOKEN')
33
33
  ```
34
34
 
35
35
  Optional #configuration method:
@@ -39,7 +39,7 @@ Pushover.configure do |config|
39
39
  config.token='APP_TOKEN'
40
40
  end
41
41
 
42
- Pushover.notification('message', 'title')
42
+ Pushover.notification(message: 'message', title: 'title')
43
43
  ```
44
44
 
45
45
  ### CLI:
@@ -133,7 +133,7 @@ You can also save and use stored information. The username/application are titl
133
133
 
134
134
  Delete done in the api, not lifted to the cli.
135
135
 
136
- Now, you can use these to send messages instead of having to remeber the key:
136
+ Now, you can use these to send messages instead of having to remember the key:
137
137
 
138
138
  $ pushover -a myApp -u email@somewhere.net Hello from somewhere!
139
139
 
@@ -141,7 +141,7 @@ If you don't supply the application or user name, it will use the first one in t
141
141
 
142
142
  $ pushover so now I can just send an app.
143
143
 
144
- Anytime you supply token's directly to the cli, it will ignore any saved information and try them. This allows you to use it as a once-off tool while keeping credentials stored.
144
+ Anytime you supply tokens directly to the cli, it will ignore any saved information and try them. This allows you to use it as a once-off tool while keeping credentials stored.
145
145
 
146
146
  ## Contributing
147
147
 
@@ -1,4 +1,4 @@
1
1
  module Pushover
2
2
  # The current version of Pushover.
3
- VERSION = "0.99.1"
3
+ VERSION = "0.99.2"
4
4
  end
data/pushover.gemspec CHANGED
@@ -27,5 +27,5 @@ Gem::Specification.new do |gem|
27
27
 
28
28
  # dependencies.
29
29
  gem.add_runtime_dependency 'yajl-ruby'
30
- gem.add_runtime_dependency 'bini'
30
+ gem.add_runtime_dependency 'bini', '~> 0.6.0'
31
31
  end
data/whatsnew.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 0.99.2:
2
+ * Version constraint (thanks @freeatnet) on bini, I stupidily upgraded one without the other.
3
+
1
4
  ## 0.99.1:
2
5
  * Big one here, properly testing bin/pushover now.
3
6
  * Fixed a bug in the bin/pushover so --config_file and --app work as expected.
metadata CHANGED
@@ -1,48 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pushover
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.99.1
5
- prerelease:
4
+ version: 0.99.2
6
5
  platform: ruby
7
6
  authors:
8
7
  - Ernie Brodeur
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-02-02 00:00:00.000000000 Z
11
+ date: 2013-06-13 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: yajl-ruby
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - '>='
20
18
  - !ruby/object:Gem::Version
21
19
  version: '0'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - '>='
28
25
  - !ruby/object:Gem::Version
29
26
  version: '0'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: bini
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - ~>
36
32
  - !ruby/object:Gem::Version
37
- version: '0'
33
+ version: 0.6.0
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - ~>
44
39
  - !ruby/object:Gem::Version
45
- version: '0'
40
+ version: 0.6.0
46
41
  description: Api (and CLI) to interface with pushover.net
47
42
  email:
48
43
  - ebrodeur@ujami.net
@@ -75,6 +70,7 @@ files:
75
70
  - whatsnew.md
76
71
  homepage: https://github.com/erniebrodeur/pushover
77
72
  licenses: []
73
+ metadata: {}
78
74
  post_install_message:
79
75
  rdoc_options:
80
76
  - --line-numbers
@@ -87,22 +83,20 @@ rdoc_options:
87
83
  require_paths:
88
84
  - lib
89
85
  required_ruby_version: !ruby/object:Gem::Requirement
90
- none: false
91
86
  requirements:
92
- - - ! '>='
87
+ - - '>='
93
88
  - !ruby/object:Gem::Version
94
89
  version: '0'
95
90
  required_rubygems_version: !ruby/object:Gem::Requirement
96
- none: false
97
91
  requirements:
98
- - - ! '>='
92
+ - - '>='
99
93
  - !ruby/object:Gem::Version
100
94
  version: '0'
101
95
  requirements: []
102
96
  rubyforge_project:
103
- rubygems_version: 1.8.21
97
+ rubygems_version: 2.0.2
104
98
  signing_key:
105
- specification_version: 3
99
+ specification_version: 4
106
100
  summary: This gem provides both an API and CLI interface to pushover.net.
107
101
  test_files:
108
102
  - spec/bin/pushover_spec.rb