sandmanapp 0.0.1 → 0.1
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.
- metadata +9 -15
- data/.gitignore +0 -4
- data/Gemfile +0 -4
- data/Rakefile +0 -2
- data/lib/sandmanapp/version.rb +0 -3
- data/lib/sandmanapp.rb +0 -15
- data/sandmanapp.gemspec +0 -21
metadata
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sandmanapp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 9
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
|
-
- 0
|
|
9
8
|
- 1
|
|
10
|
-
version: 0.
|
|
9
|
+
version: "0.1"
|
|
11
10
|
platform: ruby
|
|
12
11
|
authors:
|
|
13
12
|
- Florian Herlings
|
|
@@ -19,7 +18,7 @@ date: 2011-03-01 00:00:00 +01:00
|
|
|
19
18
|
default_executable:
|
|
20
19
|
dependencies: []
|
|
21
20
|
|
|
22
|
-
description:
|
|
21
|
+
description: Gem to connect to the sandmanapp.com service.
|
|
23
22
|
email:
|
|
24
23
|
- hello@sandmanapp.com
|
|
25
24
|
executables: []
|
|
@@ -28,15 +27,10 @@ extensions: []
|
|
|
28
27
|
|
|
29
28
|
extra_rdoc_files: []
|
|
30
29
|
|
|
31
|
-
files:
|
|
32
|
-
|
|
33
|
-
- Gemfile
|
|
34
|
-
- Rakefile
|
|
35
|
-
- lib/sandmanapp.rb
|
|
36
|
-
- lib/sandmanapp/version.rb
|
|
37
|
-
- sandmanapp.gemspec
|
|
30
|
+
files: []
|
|
31
|
+
|
|
38
32
|
has_rdoc: true
|
|
39
|
-
homepage: http://sandmanapp.com
|
|
33
|
+
homepage: http://sandmanapp.com
|
|
40
34
|
licenses: []
|
|
41
35
|
|
|
42
36
|
post_install_message:
|
|
@@ -64,10 +58,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
64
58
|
version: "0"
|
|
65
59
|
requirements: []
|
|
66
60
|
|
|
67
|
-
rubyforge_project:
|
|
68
|
-
rubygems_version: 1.5.
|
|
61
|
+
rubyforge_project:
|
|
62
|
+
rubygems_version: 1.5.2
|
|
69
63
|
signing_key:
|
|
70
64
|
specification_version: 3
|
|
71
|
-
summary: Gem
|
|
65
|
+
summary: Gem to connect to the sandmanapp.com service.
|
|
72
66
|
test_files: []
|
|
73
67
|
|
data/.gitignore
DELETED
data/Gemfile
DELETED
data/Rakefile
DELETED
data/lib/sandmanapp/version.rb
DELETED
data/lib/sandmanapp.rb
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
require 'CGI'
|
|
2
|
-
require 'net/http'
|
|
3
|
-
|
|
4
|
-
module Sandmanapp
|
|
5
|
-
|
|
6
|
-
def Sandmanapp.setApplicationId applicationId
|
|
7
|
-
@@applicationId = applicationId
|
|
8
|
-
end
|
|
9
|
-
|
|
10
|
-
def Sandmanapp.notify message, tags
|
|
11
|
-
path = "/v1/?application_id=" + @@applicationId + "&content=" + CGI::escape(message) + "&tags=" + tags.join("|")
|
|
12
|
-
resp, data = Net::HTTP.new('sandmanapp.com', 3333).get2(path)
|
|
13
|
-
end
|
|
14
|
-
|
|
15
|
-
end
|
data/sandmanapp.gemspec
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
|
2
|
-
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
-
require "sandmanapp/version"
|
|
4
|
-
|
|
5
|
-
Gem::Specification.new do |s|
|
|
6
|
-
s.name = "sandmanapp"
|
|
7
|
-
s.version = Sandmanapp::VERSION
|
|
8
|
-
s.platform = Gem::Platform::RUBY
|
|
9
|
-
s.authors = ["Florian Herlings"]
|
|
10
|
-
s.email = ["hello@sandmanapp.com"]
|
|
11
|
-
s.homepage = "http://sandmanapp.com/"
|
|
12
|
-
s.summary = %q{Gem for the sandmanapp.com service.}
|
|
13
|
-
s.description = %q{Use this gem to connect to the sandmanapp service. Look at the homepage to find more information.}
|
|
14
|
-
|
|
15
|
-
s.rubyforge_project = "sandmanapp"
|
|
16
|
-
|
|
17
|
-
s.files = `git ls-files`.split("\n")
|
|
18
|
-
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
19
|
-
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
20
|
-
s.require_paths = ["lib"]
|
|
21
|
-
end
|