dietrb 0.4.6 → 0.4.7
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/LICENSE +1 -0
- data/dietrb.gemspec +4 -4
- data/lib/irb/version.rb +7 -2
- metadata +18 -5
data/LICENSE
CHANGED
|
@@ -4,6 +4,7 @@ Portions Copyright (c) 2006-2010 Ben Bleything <ben@bleything.net> (history util
|
|
|
4
4
|
Portions Copyright (c) 2006-2010 Paul Duncan <pabs@pablotron.org> (Wirble)
|
|
5
5
|
Portions Copyright (c) 2009-2010 Jens Wille <jens.wille@gmail.com> (Wirble)
|
|
6
6
|
Portions Copyright (c) 2006-2010 Giles Bowkett (light background color scheme)
|
|
7
|
+
Portions Copyright (c) 2006-2010 Revieworld Ltd. <http://github.com/floehopper/mocha> (class/address object inspect)
|
|
7
8
|
|
|
8
9
|
This software is available under the Ruby license:
|
|
9
10
|
|
data/dietrb.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{dietrb}
|
|
8
|
-
s.version = "0.4.
|
|
8
|
+
s.version = "0.4.7"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Eloy Duran"]
|
|
12
|
-
s.date = %q{2010-
|
|
12
|
+
s.date = %q{2010-07-02}
|
|
13
13
|
s.default_executable = %q{dietrb}
|
|
14
14
|
s.description = %q{IRB on a diet, for MacRuby / Ruby 1.9}
|
|
15
15
|
s.email = %q{eloy.de.enige@gmail.com}
|
|
@@ -50,7 +50,7 @@ Gem::Specification.new do |s|
|
|
|
50
50
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
51
51
|
s.require_paths = ["lib"]
|
|
52
52
|
s.required_ruby_version = Gem::Requirement.new("~> 1.9")
|
|
53
|
-
s.rubygems_version = %q{1.3.
|
|
53
|
+
s.rubygems_version = %q{1.3.7}
|
|
54
54
|
s.summary = %q{IRB on a diet, for MacRuby / Ruby 1.9}
|
|
55
55
|
s.test_files = [
|
|
56
56
|
"spec/colorize_spec.rb",
|
|
@@ -67,7 +67,7 @@ Gem::Specification.new do |s|
|
|
|
67
67
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
68
68
|
s.specification_version = 3
|
|
69
69
|
|
|
70
|
-
if Gem::Version.new(Gem::
|
|
70
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
71
71
|
else
|
|
72
72
|
end
|
|
73
73
|
else
|
data/lib/irb/version.rb
CHANGED
|
@@ -6,11 +6,16 @@
|
|
|
6
6
|
|
|
7
7
|
module IRB
|
|
8
8
|
module VERSION #:nodoc:
|
|
9
|
+
NAME = 'DietRB'
|
|
9
10
|
MAJOR = 0
|
|
10
11
|
MINOR = 4
|
|
11
|
-
TINY =
|
|
12
|
+
TINY = 7
|
|
12
13
|
|
|
13
14
|
STRING = [MAJOR, MINOR, TINY].join('.')
|
|
14
|
-
DESCRIPTION = "#{
|
|
15
|
+
DESCRIPTION = "#{NAME} (#{STRING})"
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def self.version
|
|
19
|
+
IRB::VERSION::DESCRIPTION
|
|
15
20
|
end
|
|
16
21
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dietrb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
hash: 1
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 4
|
|
9
|
+
- 7
|
|
10
|
+
version: 0.4.7
|
|
5
11
|
platform: ruby
|
|
6
12
|
authors:
|
|
7
13
|
- Eloy Duran
|
|
@@ -9,7 +15,7 @@ autorequire:
|
|
|
9
15
|
bindir: bin
|
|
10
16
|
cert_chain: []
|
|
11
17
|
|
|
12
|
-
date: 2010-
|
|
18
|
+
date: 2010-07-02 00:00:00 +02:00
|
|
13
19
|
default_executable: dietrb
|
|
14
20
|
dependencies: []
|
|
15
21
|
|
|
@@ -59,21 +65,28 @@ rdoc_options:
|
|
|
59
65
|
require_paths:
|
|
60
66
|
- lib
|
|
61
67
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
|
+
none: false
|
|
62
69
|
requirements:
|
|
63
70
|
- - ~>
|
|
64
71
|
- !ruby/object:Gem::Version
|
|
72
|
+
hash: 29
|
|
73
|
+
segments:
|
|
74
|
+
- 1
|
|
75
|
+
- 9
|
|
65
76
|
version: "1.9"
|
|
66
|
-
version:
|
|
67
77
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
78
|
+
none: false
|
|
68
79
|
requirements:
|
|
69
80
|
- - ">="
|
|
70
81
|
- !ruby/object:Gem::Version
|
|
82
|
+
hash: 3
|
|
83
|
+
segments:
|
|
84
|
+
- 0
|
|
71
85
|
version: "0"
|
|
72
|
-
version:
|
|
73
86
|
requirements: []
|
|
74
87
|
|
|
75
88
|
rubyforge_project:
|
|
76
|
-
rubygems_version: 1.3.
|
|
89
|
+
rubygems_version: 1.3.7
|
|
77
90
|
signing_key:
|
|
78
91
|
specification_version: 3
|
|
79
92
|
summary: IRB on a diet, for MacRuby / Ruby 1.9
|