boxrubylib 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc ADDED
@@ -0,0 +1,37 @@
1
+ = boxrubylib
2
+
3
+ * http://boxrubylib.rubyforge.org
4
+
5
+ == DESCRIPTION:
6
+
7
+ Ruby library of OpenBox API.
8
+
9
+ == SYNOPSIS:
10
+
11
+ require 'rubygems'
12
+ gem 'boxrubylib'
13
+ require 'boxrubylib'
14
+
15
+ client = BoxClientLib::BoxRestClient.new()
16
+
17
+ == INSTALL:
18
+
19
+ sudo gem install boxrubylib
20
+
21
+ == LICENSE:
22
+
23
+ Copyright (c) 2008-2009 Canon Software Inc.
24
+
25
+ This program is free software: you can redistribute it and/or modify
26
+ it under the terms of the GNU General Public License as published by
27
+ the Free Software Foundation, either version 3 of the License, or
28
+ (at your option) any later version.
29
+
30
+ This program is distributed in the hope that it will be useful,
31
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
32
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33
+ GNU General Public License for more details.
34
+
35
+ You should have received a copy of the GNU General Public License
36
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
37
+
data/Rakefile ADDED
@@ -0,0 +1,26 @@
1
+ require 'rubygems'
2
+ gem 'hoe', '>= 2.1.0'
3
+ require 'hoe'
4
+ require 'fileutils'
5
+ require './lib/boxrubylib'
6
+
7
+ Hoe.plugin :newgem
8
+ # Hoe.plugin :website
9
+ # Hoe.plugin :cucumberfeatures
10
+
11
+ # Generate all the Rake tasks
12
+ # Run 'rake -T' to see list of generated tasks (from gem root directory)
13
+ $hoe = Hoe.spec 'boxrubylib' do
14
+ self.developer 'Tomohiko Ariki', 'tomohiko.ariki@nifty.com'
15
+ self.post_install_message = 'PostInstall.txt' # TODO remove if post-install message not required
16
+ self.rubyforge_name = self.name # TODO this is default value
17
+ # self.extra_deps = [['activesupport','>= 2.0.2']]
18
+
19
+ end
20
+
21
+ require 'newgem/tasks'
22
+ Dir['tasks/**/*.rake'].each { |t| load t }
23
+
24
+ # TODO - want other tests/tasks run by default? Add them to the list
25
+ # remove_task :default
26
+ # task :default => [:spec, :features]