dylansm-wirble 0.1.3.1 → 0.1.3.2

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/ChangeLog CHANGED
@@ -1,29 +1,2 @@
1
-
2
- * Wed Sep 06 00:01:21 2006, pabs <pabs@pablotron.org>
3
- * initial import
4
-
5
- * Wed Sep 06 00:10:13 2006, pabs <pabs@pablotron.org>
6
- * wirble.rb: remove symbol hackery to prevent
7
- ri/rdoc from barfing
8
-
9
- * Wed Sep 6 02:49:02 EDT 2006, Paul Duncan <pabs@pablotron.org>
10
- * wirble.rb: fix typo
11
- * re-release 0.1.0
12
-
13
- * Fri Sep 8 04:01:40 EDT 2006, Paul Duncan <pabs@pablotron.org>
14
- * README: updated version to 0.1.1
15
- * wirble.gemspec: ditto
16
- * wirble.rb: ditto
17
- * wirble.rb: wrap colorize in an exception (just in case)
18
-
19
- * Fri Sep 08 13:11:05 2006, pabs <pabs@pablotron.org>
20
- * increment version to 0.1.2
21
- * wirble.gemspec: remove rubilicious dependency
22
-
23
- * Fri Sep 8 13:17:29 EDT 2006, Paul Duncan <pabs@pablotron.org>
24
- * README: increment version to 0.1.2
25
- * wirble.gemspec: ditto
26
- * wirble.rb: ditto
27
-
28
- * Fri Sep 08 13:18:15 2006, pabs <pabs@pablotron.org>
29
- * releasing 0.1.2
1
+ 2011-02-04
2
+ 0.1.3.1 Added project to github. Doesn't work.
data/README CHANGED
@@ -1,6 +1,13 @@
1
- Wirble 0.1.3 README
1
+ Wirble 0.1.3.1 README
2
2
  ===================
3
3
 
4
+ 2011-02-04
5
+ This is a fork of Paul Duncan's wirble (http://pablotron.org/software/wirble/)
6
+
7
+
8
+ Original README
9
+ ===============
10
+
4
11
  This document was last updated on 2009-05-30. See the file COPYING for
5
12
  licensing and warranty information. The latest version of this software
6
13
  is available at the following URL:
@@ -5,7 +5,7 @@ spec = Gem::Specification.new do |s|
5
5
  #### Basic information.
6
6
 
7
7
  s.name = 'dylansm-wirble'
8
- s.version = '0.1.3.1'
8
+ s.version = '0.1.3.2'
9
9
  s.summary = <<-EOF
10
10
  Handful of common Irb features, made easy.
11
11
  EOF
@@ -17,12 +17,12 @@ spec = Gem::Specification.new do |s|
17
17
 
18
18
  s.requirements << 'Ruby, version 1.8.0 (or newer)'
19
19
 
20
- # Which files are to be included in this gem? Everything! (Except .hg directories.)
21
- s.files = Dir.glob("**/*").delete_if { |item| item.include?(".hg") }
20
+ # Which files are to be included in this gem? Everything! (Except .git directories.)
21
+ s.files = Dir.glob("**/*").delete_if { |item| item.include?(".git") }
22
22
 
23
23
  # C code extensions.
24
24
 
25
- s.require_path = '.' # is this correct?
25
+ # s.require_path = '.' # is this correct?
26
26
 
27
27
  # Load-time details: library and application (you will need one or both).
28
28
  s.autorequire = 'wirble'
@@ -0,0 +1,48 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>currentDocument</key>
6
+ <string>.gitignore</string>
7
+ <key>documents</key>
8
+ <array>
9
+ <dict>
10
+ <key>expanded</key>
11
+ <true/>
12
+ <key>name</key>
13
+ <string>dylansm-wirble</string>
14
+ <key>regexFolderFilter</key>
15
+ <string>!.*/(\.[^/]*|CVS|_darcs|_MTN|\{arch\}|blib|.*~\.nib|.*\.(framework|app|pbproj|pbxproj|xcode(proj)?|bundle))$</string>
16
+ <key>sourceDirectory</key>
17
+ <string></string>
18
+ </dict>
19
+ </array>
20
+ <key>fileHierarchyDrawerWidth</key>
21
+ <integer>485</integer>
22
+ <key>metaData</key>
23
+ <dict>
24
+ <key>.gitignore</key>
25
+ <dict>
26
+ <key>caret</key>
27
+ <dict>
28
+ <key>column</key>
29
+ <integer>8</integer>
30
+ <key>line</key>
31
+ <integer>1</integer>
32
+ </dict>
33
+ <key>firstVisibleColumn</key>
34
+ <integer>0</integer>
35
+ <key>firstVisibleLine</key>
36
+ <integer>0</integer>
37
+ </dict>
38
+ </dict>
39
+ <key>openDocuments</key>
40
+ <array>
41
+ <string>.gitignore</string>
42
+ </array>
43
+ <key>showFileHierarchyDrawer</key>
44
+ <true/>
45
+ <key>windowFrame</key>
46
+ <string>{{1206, 13}, {1354, 1156}}</string>
47
+ </dict>
48
+ </plist>
data/sample_irbrc.txt ADDED
@@ -0,0 +1,11 @@
1
+ ######################################################################
2
+ # Sample .irbrc file to enable Wirble. #
3
+ ######################################################################
4
+ begin
5
+ # load and initialize wirble
6
+ require 'wirble'
7
+ Wirble.init
8
+ Wirble.colorize
9
+ rescue LoadError => err
10
+ warn "Couldn't load Wirble: #{err}"
11
+ end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: dylansm-wirble
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.3.1
5
+ version: 0.1.3.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Paul Duncan
@@ -23,13 +23,14 @@ extensions: []
23
23
  extra_rdoc_files: []
24
24
 
25
25
  files:
26
- - _irbrc
27
26
  - ChangeLog
28
27
  - COPYING
29
28
  - dylansm-wirble.gemspec
29
+ - dylansm-wirble.tmproj
30
30
  - lib/wirble.rb
31
31
  - Rakefile
32
32
  - README
33
+ - sample_irbrc.txt
33
34
  - setup.rb
34
35
  has_rdoc: true
35
36
  homepage: http://pablotron.org/software/wirble/
@@ -46,7 +47,7 @@ rdoc_options:
46
47
  - ChangeLog
47
48
  - COPYING
48
49
  require_paths:
49
- - .
50
+ - lib
50
51
  required_ruby_version: !ruby/object:Gem::Requirement
51
52
  none: false
52
53
  requirements:
data/_irbrc DELETED
@@ -1,27 +0,0 @@
1
- ######################################################################
2
- # _irbrc - Sample .irbrc file to enable Wirble. #
3
- ######################################################################
4
-
5
- #
6
- # Uncomment the block below if you want to load RubyGems in Irb.
7
- #
8
-
9
- # begin
10
- # require 'rubygems'
11
- # rescue LoadError => err
12
- # warn "Couldn't load RubyGems: #{err}"
13
- # end
14
-
15
- begin
16
- # load and initialize wirble
17
- require 'wirble'
18
- Wirble.init
19
-
20
- #
21
- # Uncomment the line below to enable Wirble colors.
22
- #
23
-
24
- # Wirble.colorize
25
- rescue LoadError => err
26
- warn "Couldn't load Wirble: #{err}"
27
- end