brice 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README +11 -2
- data/TODO +15 -0
- data/lib/brice/init.rb +1 -1
- data/lib/brice/version.rb +1 -1
- metadata +17 -16
data/README
CHANGED
@@ -2,14 +2,15 @@
|
|
2
2
|
|
3
3
|
== VERSION
|
4
4
|
|
5
|
-
This documentation refers to brice version 0.0.
|
5
|
+
This documentation refers to brice version 0.0.2
|
6
6
|
|
7
7
|
|
8
8
|
== DESCRIPTION
|
9
9
|
|
10
10
|
Enhances your IRb experience by adding new functionality and by providing
|
11
11
|
a framework that you can utilize to add your own extensions. It comes with
|
12
|
-
a set of pre-selected features
|
12
|
+
a set of pre-selected features (see the files in {lib/rc}[link:../lib/rc]),
|
13
|
+
but is highly configurable in that regard.
|
13
14
|
|
14
15
|
Add this to your <tt>.irbrc</tt> and receive the default goodness:
|
15
16
|
|
@@ -34,6 +35,14 @@ Please note that further changes to the configuration for brice can't be
|
|
34
35
|
guaranteed to have any effect after <tt>Brice.init</tt> has been called.
|
35
36
|
|
36
37
|
|
38
|
+
== LINKS
|
39
|
+
|
40
|
+
<b></b>
|
41
|
+
Documentation:: <http://prometheus.rubyforge.org/brice>
|
42
|
+
Source code:: <http://github.com/blackwinter/brice>
|
43
|
+
Rubyforge project:: <http://rubyforge.org/projects/prometheus>
|
44
|
+
|
45
|
+
|
37
46
|
== AUTHORS
|
38
47
|
|
39
48
|
* Jens Wille <mailto:jens.wille@uni-koeln.de>
|
data/TODO
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
#http://pablotron.org/software/wirble/ [+]
|
2
|
+
#http://rubyforge.org/projects/dev-utils/ [-]
|
3
|
+
http://rubyforge.org/projects/dirby/
|
4
|
+
http://rubyforge.org/projects/guessmethod/
|
5
|
+
http://rubyforge.org/projects/homeless/
|
6
|
+
http://rubyforge.org/projects/irbhelper/
|
7
|
+
http://rubyforge.org/projects/irb-history/
|
8
|
+
http://rubyforge.org/projects/irbprovements/
|
9
|
+
http://rubyforge.org/projects/live-console/
|
10
|
+
http://rubyforge.org/projects/pope/
|
11
|
+
http://rubyforge.org/projects/rshell/
|
12
|
+
http://rubyforge.org/projects/rubyade/
|
13
|
+
#http://rubyforge.org/projects/rubysideshow/ [-]
|
14
|
+
http://rubyforge.org/projects/shellable/
|
15
|
+
#http://rubyforge.org/projects/utilitybelt/ [+]
|
data/lib/brice/init.rb
CHANGED
data/lib/brice/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: brice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jens Wille
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-
|
12
|
+
date: 2008-12-17 00:00:00 +01:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -33,35 +33,36 @@ extra_rdoc_files:
|
|
33
33
|
- ChangeLog
|
34
34
|
- README
|
35
35
|
files:
|
36
|
-
- lib/brice
|
37
|
-
- lib/brice/version.rb
|
38
|
-
- lib/brice/dsl.rb
|
39
|
-
- lib/brice/config.rb
|
36
|
+
- lib/brice.rb
|
40
37
|
- lib/rc/010_libs.rb
|
41
|
-
- lib/rc/
|
38
|
+
- lib/rc/005_added_methods.rb
|
39
|
+
- lib/rc/004_wirble.rb
|
40
|
+
- lib/rc/050_devel.rb
|
42
41
|
- lib/rc/015_utility_belt.rb
|
43
42
|
- lib/rc/030_prompt.rb
|
44
|
-
- lib/rc/050_devel.rb
|
45
43
|
- lib/rc/020_init.rb
|
46
|
-
- lib/rc/
|
47
|
-
- lib/
|
48
|
-
- lib/brice.rb
|
44
|
+
- lib/rc/040_rails.rb
|
45
|
+
- lib/brice/dsl.rb
|
46
|
+
- lib/brice/version.rb
|
47
|
+
- lib/brice/config.rb
|
48
|
+
- lib/brice/init.rb
|
49
|
+
- Rakefile
|
49
50
|
- COPYING
|
50
|
-
- README
|
51
51
|
- ChangeLog
|
52
|
-
-
|
52
|
+
- TODO
|
53
|
+
- README
|
53
54
|
has_rdoc: true
|
54
|
-
homepage: http://prometheus.rubyforge.org/
|
55
|
+
homepage: http://prometheus.rubyforge.org/doc
|
55
56
|
post_install_message:
|
56
57
|
rdoc_options:
|
57
58
|
- --line-numbers
|
58
59
|
- --inline-source
|
59
60
|
- --title
|
60
61
|
- brice Application documentation
|
61
|
-
- --charset
|
62
|
-
- UTF-8
|
63
62
|
- --main
|
64
63
|
- README
|
64
|
+
- --charset
|
65
|
+
- UTF-8
|
65
66
|
- --all
|
66
67
|
require_paths:
|
67
68
|
- lib
|