clickatell 0.1.0
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/History.txt +4 -0
- data/License.txt +20 -0
- data/Manifest.txt +29 -0
- data/README.txt +36 -0
- data/Rakefile +145 -0
- data/bin/sms +23 -0
- data/lib/clickatell.rb +7 -0
- data/lib/clickatell/api.rb +108 -0
- data/lib/clickatell/connection.rb +60 -0
- data/lib/clickatell/response.rb +19 -0
- data/lib/clickatell/utility.rb +6 -0
- data/lib/clickatell/utility/options.rb +59 -0
- data/lib/clickatell/version.rb +13 -0
- data/scripts/txt2html +67 -0
- data/setup.rb +1585 -0
- data/spec/api_spec.rb +98 -0
- data/spec/connection_spec.rb +25 -0
- data/spec/response_spec.rb +14 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +2 -0
- data/website/images/footer_bg.gif +0 -0
- data/website/index.html +111 -0
- data/website/index.txt +59 -0
- data/website/javascripts/codehighlighter/code_highlighter.js +188 -0
- data/website/javascripts/codehighlighter/ruby.js +18 -0
- data/website/javascripts/rounded_corners_lite.inc.js +285 -0
- data/website/stylesheets/limechoc.css +266 -0
- data/website/stylesheets/screen.css +456 -0
- data/website/template.rhtml +41 -0
- metadata +79 -0
@@ -0,0 +1,41 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<link rel="stylesheet" href="stylesheets/screen.css" type="text/css" media="screen" />
|
6
|
+
<link rel="stylesheet" href="stylesheets/limechoc.css" type="text/css" media="screen" />
|
7
|
+
<script type="text/javascript" charset="utf-8" src="javascripts/codehighlighter/code_highlighter.js"></script>
|
8
|
+
<script type="text/javascript" charset="utf-8" src="javascripts/codehighlighter/ruby.js"></script>
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
10
|
+
<title><%= title %></title>
|
11
|
+
</head>
|
12
|
+
<body>
|
13
|
+
|
14
|
+
<div id="wrapper">
|
15
|
+
<div id="container">
|
16
|
+
|
17
|
+
<div id="header">
|
18
|
+
|
19
|
+
<h1><%= title %> <%= version %>
|
20
|
+
<span class="tagline">gem install clickatell</span></h1>
|
21
|
+
|
22
|
+
</div>
|
23
|
+
|
24
|
+
<div id="content">
|
25
|
+
<div class="article"><%= body %></div>
|
26
|
+
</div>
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
30
|
+
<div id="footer_wrapper">
|
31
|
+
<div id="footer">
|
32
|
+
<p class="copyright">
|
33
|
+
<a href="http://rubyforge.org/projects/clickatell">Rubyforge Project Page</a> |
|
34
|
+
<a href="<%= download %>">Download latest version (<%= version %>)</a>
|
35
|
+
</p>
|
36
|
+
</div>
|
37
|
+
</div>
|
38
|
+
</div>
|
39
|
+
|
40
|
+
</body>
|
41
|
+
</html>
|
metadata
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.2
|
3
|
+
specification_version: 1
|
4
|
+
name: clickatell
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.1.0
|
7
|
+
date: 2007-08-21 00:00:00 +01:00
|
8
|
+
summary: Ruby interface to the Clickatell SMS gateway service.
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: contact[AT]lukeredpath.co.uk
|
12
|
+
homepage: http://clickatell.rubyforge.org
|
13
|
+
rubyforge_project: clickatell
|
14
|
+
description: Ruby interface to the Clickatell SMS gateway service.
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- Luke Redpath
|
31
|
+
files:
|
32
|
+
- History.txt
|
33
|
+
- License.txt
|
34
|
+
- Manifest.txt
|
35
|
+
- README.txt
|
36
|
+
- Rakefile
|
37
|
+
- bin/sms
|
38
|
+
- lib/clickatell.rb
|
39
|
+
- lib/clickatell/api.rb
|
40
|
+
- lib/clickatell/connection.rb
|
41
|
+
- lib/clickatell/response.rb
|
42
|
+
- lib/clickatell/utility.rb
|
43
|
+
- lib/clickatell/utility/options.rb
|
44
|
+
- lib/clickatell/version.rb
|
45
|
+
- scripts/txt2html
|
46
|
+
- setup.rb
|
47
|
+
- spec/api_spec.rb
|
48
|
+
- spec/connection_spec.rb
|
49
|
+
- spec/response_spec.rb
|
50
|
+
- spec/spec.opts
|
51
|
+
- spec/spec_helper.rb
|
52
|
+
- website/images/footer_bg.gif
|
53
|
+
- website/index.html
|
54
|
+
- website/index.txt
|
55
|
+
- website/javascripts/codehighlighter/code_highlighter.js
|
56
|
+
- website/javascripts/codehighlighter/ruby.js
|
57
|
+
- website/javascripts/rounded_corners_lite.inc.js
|
58
|
+
- website/stylesheets/limechoc.css
|
59
|
+
- website/stylesheets/screen.css
|
60
|
+
- website/template.rhtml
|
61
|
+
test_files: []
|
62
|
+
|
63
|
+
rdoc_options:
|
64
|
+
- --main
|
65
|
+
- README.txt
|
66
|
+
extra_rdoc_files:
|
67
|
+
- History.txt
|
68
|
+
- License.txt
|
69
|
+
- Manifest.txt
|
70
|
+
- README.txt
|
71
|
+
- website/index.txt
|
72
|
+
executables:
|
73
|
+
- sms
|
74
|
+
extensions: []
|
75
|
+
|
76
|
+
requirements: []
|
77
|
+
|
78
|
+
dependencies: []
|
79
|
+
|