sandmanapp 0.0.1 → 0.1

Sign up to get free protection for your applications and to get access to all the features.
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: 29
4
+ hash: 9
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
- - 0
9
8
  - 1
10
- version: 0.0.1
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: Use this gem to connect to the sandmanapp service. Look at the homepage to find more information.
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
- - .gitignore
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: sandmanapp
68
- rubygems_version: 1.5.3
61
+ rubyforge_project:
62
+ rubygems_version: 1.5.2
69
63
  signing_key:
70
64
  specification_version: 3
71
- summary: Gem for the sandmanapp.com service.
65
+ summary: Gem to connect to the sandmanapp.com service.
72
66
  test_files: []
73
67
 
data/.gitignore DELETED
@@ -1,4 +0,0 @@
1
- *.gem
2
- .bundle
3
- Gemfile.lock
4
- pkg/*
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source "http://rubygems.org"
2
-
3
- # Specify your gem's dependencies in sandmanapp.gemspec
4
- gemspec
data/Rakefile DELETED
@@ -1,2 +0,0 @@
1
- require 'bundler'
2
- Bundler::GemHelper.install_tasks
@@ -1,3 +0,0 @@
1
- module Sandmanapp
2
- VERSION = "0.0.1"
3
- end
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