prowly 0.2.3 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +2 -1
- data/VERSION +1 -1
- data/bin/prowly +1 -1
- data/prowly.gemspec +3 -3
- metadata +4 -8
data/Rakefile
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
1
2
|
require 'rubygems'
|
|
2
3
|
require 'rake'
|
|
3
4
|
|
|
@@ -9,7 +10,7 @@ begin
|
|
|
9
10
|
gem.description = "The Prowly gem is a simple wrapper to the Prowl API, you can use it to send messages to your iPhone in a Rails or pure Ruby application."
|
|
10
11
|
gem.email = "raf.magana@gmail.com"
|
|
11
12
|
gem.homepage = "http://github.com/rafmagana/prowly"
|
|
12
|
-
gem.authors = ["Rafael
|
|
13
|
+
gem.authors = ["Rafael Magaña"]
|
|
13
14
|
gem.add_development_dependency "shoulda", ">= 0"
|
|
14
15
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
15
16
|
end
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.4
|
data/bin/prowly
CHANGED
|
@@ -78,7 +78,7 @@ else
|
|
|
78
78
|
end
|
|
79
79
|
|
|
80
80
|
available_priorities = Prowly::Notification::Priority.constants
|
|
81
|
-
unless available_priorities.include? options[:priority]
|
|
81
|
+
unless available_priorities.map(&:to_s).include? options[:priority]
|
|
82
82
|
abort("Invalid priority. Valid options are: " + available_priorities.join(", "))
|
|
83
83
|
end
|
|
84
84
|
|
data/prowly.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{prowly}
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.4"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
-
s.authors = ["Rafael
|
|
12
|
-
s.date = %q{2010-07-
|
|
11
|
+
s.authors = ["Rafael Magaña"]
|
|
12
|
+
s.date = %q{2010-07-28}
|
|
13
13
|
s.default_executable = %q{prowly}
|
|
14
14
|
s.description = %q{The Prowly gem is a simple wrapper to the Prowl API, you can use it to send messages to your iPhone in a Rails or pure Ruby application.}
|
|
15
15
|
s.email = %q{raf.magana@gmail.com}
|
metadata
CHANGED
|
@@ -1,21 +1,20 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: prowly
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash: 17
|
|
5
4
|
prerelease: false
|
|
6
5
|
segments:
|
|
7
6
|
- 0
|
|
8
7
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
8
|
+
- 4
|
|
9
|
+
version: 0.2.4
|
|
11
10
|
platform: ruby
|
|
12
11
|
authors:
|
|
13
|
-
- Rafael
|
|
12
|
+
- "Rafael Maga\xC3\xB1a"
|
|
14
13
|
autorequire:
|
|
15
14
|
bindir: bin
|
|
16
15
|
cert_chain: []
|
|
17
16
|
|
|
18
|
-
date: 2010-07-
|
|
17
|
+
date: 2010-07-28 00:00:00 -05:00
|
|
19
18
|
default_executable: prowly
|
|
20
19
|
dependencies:
|
|
21
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -26,7 +25,6 @@ dependencies:
|
|
|
26
25
|
requirements:
|
|
27
26
|
- - ">="
|
|
28
27
|
- !ruby/object:Gem::Version
|
|
29
|
-
hash: 3
|
|
30
28
|
segments:
|
|
31
29
|
- 0
|
|
32
30
|
version: "0"
|
|
@@ -70,7 +68,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
70
68
|
requirements:
|
|
71
69
|
- - ">="
|
|
72
70
|
- !ruby/object:Gem::Version
|
|
73
|
-
hash: 3
|
|
74
71
|
segments:
|
|
75
72
|
- 0
|
|
76
73
|
version: "0"
|
|
@@ -79,7 +76,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
79
76
|
requirements:
|
|
80
77
|
- - ">="
|
|
81
78
|
- !ruby/object:Gem::Version
|
|
82
|
-
hash: 3
|
|
83
79
|
segments:
|
|
84
80
|
- 0
|
|
85
81
|
version: "0"
|