drumherum 0.1.7 → 0.1.9
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/README.txt +21 -2
- data/Rakefile.rb +1 -1
- data/version.rb +1 -1
- metadata +1 -1
data/README.txt
CHANGED
@@ -3,12 +3,31 @@
|
|
3
3
|
|
4
4
|
http://bklippstein.github.com/drumherum/
|
5
5
|
|
6
|
+
== $LOAD_PATH management
|
7
|
+
+smart_init+ finds the directory named 'lib' in your project and adds
|
8
|
+
* the (main) directory above
|
9
|
+
* the lib-directory itself
|
10
|
+
to Rubys $LOAD_PATH.
|
6
11
|
|
12
|
+
Usage (wherever you are in the directory hierarchy of your project):
|
13
|
+
if $0 == __FILE__
|
14
|
+
require 'drumherum'
|
15
|
+
smart_init
|
16
|
+
end
|
17
|
+
require 'my-gem-project'
|
7
18
|
|
19
|
+
== Rake tasks for deployment
|
20
|
+
rake publish # publish all on github and rubygems, reinstall gem
|
21
|
+
rake git_publish # publish actual version to github
|
22
|
+
rake git_publish_docs # publish docs to github
|
23
|
+
rake rubygems_publish # release actual version to rubygems
|
8
24
|
|
9
25
|
|
10
|
-
|
11
|
-
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
|
12
31
|
|
13
32
|
|
14
33
|
== License
|
data/Rakefile.rb
CHANGED
@@ -20,7 +20,7 @@ $hoe = Hoe.spec Drumherum.project_name do
|
|
20
20
|
# self.rubyforge_name = 'yourgemx' # if different than 'yourgem'
|
21
21
|
|
22
22
|
developer('Bjoern Klippstein', 'klippstein@klippstein.com')
|
23
|
-
summary = '
|
23
|
+
summary = '$LOAD_PATH management, Rake tasks for deployment'
|
24
24
|
|
25
25
|
remote_rdoc_dir = '' # Release to root only one project
|
26
26
|
urls = [["http://#{Drumherum.github_username}.github.com/#{Drumherum.project_name}/"]]
|
data/version.rb
CHANGED