arikui1911-hatenadiary 0.0.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.
Files changed (4) hide show
  1. data/LICENSE +28 -0
  2. data/README +24 -0
  3. data/Rakefile +17 -0
  4. metadata +76 -0
data/LICENSE ADDED
@@ -0,0 +1,28 @@
1
+ Copyright (c) 2009 arikui <arikui.ruby@gmail.com>
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are
6
+ met:
7
+
8
+ * Redistributions of source code must retain the above copyright
9
+ notice, this list of conditions and the following disclaimer.
10
+ * Redistributions in binary form must reproduce the above
11
+ copyright notice, this list of conditions and the following
12
+ disclaimer in the documentation and/or other materials provided
13
+ with the distribution.
14
+ * Neither the name of the arikui-hatenadiary nor the names of its
15
+ contributors may be used to endorse or promote products derived
16
+ from this software without specific prior written permission.
17
+
18
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
data/README ADDED
@@ -0,0 +1,24 @@
1
+ = hatenadiary
2
+
3
+ It is a library provides
4
+ a client for Hatena Diary to post and delete blog entries.
5
+
6
+ Developed on:
7
+ - ruby 1.9.1p0 (2009-01-30 revision 21907) [i386-mswin32]
8
+ - ruby 1.8.7 (2008-08-11 patchlevel 72) [i386-mswin32]
9
+ - ruby 1.8.6 (2008-08-11 patchlevel 287) [i386-mswin32]
10
+
11
+ - Gem mechanize 0.9.3
12
+
13
+ This list means these environments are enable to make all of /test pass.
14
+
15
+
16
+ == Dependences
17
+
18
+ - www/mechanize
19
+
20
+
21
+ == Signature
22
+
23
+ arikui (arikui.ruby@gmail.com)
24
+
data/Rakefile ADDED
@@ -0,0 +1,17 @@
1
+ task 'default' => 'test'
2
+
3
+ require 'rake/testtask'
4
+ Rake::TestTask.new
5
+
6
+ require 'rake/rdoctask'
7
+ Rake::RDocTask.new do |t|
8
+ t.rdoc_dir = 'doc'
9
+ t.rdoc_files = FileList["lib/**/*.rb"].include("README")
10
+ t.options.push '-S', '-N'
11
+ end
12
+
13
+ begin
14
+ require 'rcov/rcovtask'
15
+ Rcov::RcovTask.new
16
+ rescue LoadError
17
+ end
metadata ADDED
@@ -0,0 +1,76 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: arikui1911-hatenadiary
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - arikui
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-06-20 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: mechanize
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
+ description: A client for Hatena Diary to post and delete blog entries.
26
+ email: arikui.ruby@gmail.com
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - README
33
+ - LICENSE
34
+ files:
35
+ - README
36
+ - LICENSE
37
+ - Rakefile
38
+ - test
39
+ - lib
40
+ has_rdoc: false
41
+ homepage: http://wiki.github.com/arikui1911/hatenadiary
42
+ post_install_message:
43
+ rdoc_options:
44
+ - --title
45
+ - hatenadiary documentation
46
+ - --opname
47
+ - index.html
48
+ - --line-numbers
49
+ - --main
50
+ - README
51
+ - --inline-source
52
+ - --exclude
53
+ - ^(examples|extras)/
54
+ require_paths:
55
+ - lib
56
+ required_ruby_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: "0"
61
+ version:
62
+ required_rubygems_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: "0"
67
+ version:
68
+ requirements: []
69
+
70
+ rubyforge_project: hatenadiary
71
+ rubygems_version: 1.2.0
72
+ signing_key:
73
+ specification_version: 3
74
+ summary: It is a library provides a client for Hatena Diary to post and delete blog entries.
75
+ test_files:
76
+ - test