This repository has been archived by the owner on Jun 15, 2021. It is now read-only.
forked from blackwinter/nuggets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
63 lines (41 loc) · 2.14 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
= ruby-nuggets - Some extensions to the Ruby programming language
== VERSION
This documentation refers to ruby-nuggets version 0.7.9
== DESCRIPTION
ruby-nuggets provides a collection of extensions to Ruby core classes. In
its effort, it's similar to projects like Facets[http://facets.rubyforge.org]
and Extensions[http://extensions.rubyforge.org] (or even
Labrador[http://rubyforge.org/projects/labrador/]), though not as ambitious ;-)
This is simply where I put stuff that I need on a more or less regular basis
or that struck me as interesting while surfing the web, reading books, or
following discussions on ruby-talk.
There are several ways to get at the nuggets you're interested in:
# The usual way: Just require() what you need
require 'nuggets/object/singleton_class'
# The more fancy way ;-) (see the documentation of Nuggets() for more examples)
require 'nuggets'
Nuggets(:object => 'singleton_class', :string => %w[nsub sub_with_md])
# Finally, get everything there is...
require 'nuggets/all'
Please be aware that some of the things herein might not work as expected or
cause other libraries to misbehave. Use at your own risk!
== LINKS
<b></b>
Documentation:: http://prometheus.rubyforge.org/ruby-nuggets
Source code:: http://github.com/blackwinter/ruby-nuggets
RubyForge project:: http://rubyforge.org/projects/prometheus
RubyGem:: http://rubygems.org/gems/ruby-nuggets
== AUTHORS
* Jens Wille <mailto:[email protected]>
== LICENSE AND COPYRIGHT
Copyright (C) 2007-2011 Jens Wille
ruby-nuggets is free software: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version.
ruby-nuggets is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
details.
You should have received a copy of the GNU Affero General Public License along
with ruby-nuggets. If not, see <http://www.gnu.org/licenses/>.