ripltools 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/.gemspec +3 -2
- data/CHANGELOG.rdoc +4 -0
- data/README.rdoc +2 -1
- data/lib/ripltools.rb +2 -2
- metadata +16 -5
data/.gemspec
CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
|
|
13
13
|
s.summary = "A meta gem for ripl plugins"
|
14
14
|
s.description = "This is a meta gem which installs some useful ripl plugins for a nice-to-use general purpose ripl."
|
15
15
|
s.required_rubygems_version = ">= 1.3.6"
|
16
|
-
s.add_dependency 'ripl', '~> 0.
|
16
|
+
s.add_dependency 'ripl', '~> 0.4.0'
|
17
17
|
s.add_dependency 'gem-man', '~> 0.2'
|
18
18
|
s.add_dependency 'hirb', '~> 0.4.5'
|
19
19
|
s.add_dependency 'ripl-multi_line', '~> 0.3.0'
|
@@ -25,7 +25,8 @@ Gem::Specification.new do |s|
|
|
25
25
|
s.add_dependency 'ripl-play', '~> 0.2.1'
|
26
26
|
s.add_dependency 'ripl-commands', '~> 0.2.1'
|
27
27
|
s.add_dependency 'ripl-after_rc', '~> 0.1.0'
|
28
|
-
s.add_dependency 'ripl-profiles', '~> 0.2.
|
28
|
+
s.add_dependency 'ripl-profiles', '~> 0.2.1'
|
29
|
+
s.add_dependency 'ripl-i18n', '~> 0.1.0'
|
29
30
|
s.files = Dir.glob(%w[{lib,test}/**/*.rb bin/* [A-Z]*.{txt,rdoc} ext/**/*.{rb,c} **/deps.rip]) + %w{Rakefile .gemspec}
|
30
31
|
s.extra_rdoc_files = ["README.rdoc", "LICENSE.txt"]
|
31
32
|
s.license = 'MIT'
|
data/CHANGELOG.rdoc
CHANGED
data/README.rdoc
CHANGED
@@ -33,7 +33,8 @@ The {irbtools}[https://github.com/janlelis/irbtools] gem is compatible with _rip
|
|
33
33
|
* {ripl-play}[https://github.com/cldwalker/ripl-play]
|
34
34
|
* {ripl-commands}[https://github.com/cldwalker/ripl-commands]
|
35
35
|
* {ripl-after_rc}[https://github.com/cldwalker/ripl-after_rc]
|
36
|
-
* {ripl-profiles}[https://github.com/janlelis/profiles]
|
36
|
+
* {ripl-profiles}[https://github.com/janlelis/ripl-profiles]
|
37
|
+
* {ripl-i18n}[https://github.com/cldwalker/ripl-i18n]
|
37
38
|
|
38
39
|
==== Not included, anymore
|
39
40
|
* {ripl-rocket}[https://github.com/janlelis/ripl-rocket]
|
data/lib/ripltools.rb
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
require 'ripl'
|
2
2
|
|
3
3
|
module Ripltools
|
4
|
-
VERSION = '0.1.
|
4
|
+
VERSION = '0.1.5'
|
5
5
|
end
|
6
6
|
|
7
|
-
libraries = %w[multi_line auto_indent short_errors color_error color_result color_streams commands after_rc hirb profiles]
|
7
|
+
libraries = %w[multi_line auto_indent short_errors color_error color_result color_streams commands after_rc hirb profiles i18n]
|
8
8
|
|
9
9
|
libraries.each{ |lib|
|
10
10
|
begin
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: ripltools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.1.
|
5
|
+
version: 0.1.5
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Jan Lelis
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-
|
13
|
+
date: 2011-05-07 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: ripl
|
@@ -20,7 +20,7 @@ dependencies:
|
|
20
20
|
requirements:
|
21
21
|
- - ~>
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: 0.
|
23
|
+
version: 0.4.0
|
24
24
|
type: :runtime
|
25
25
|
version_requirements: *id001
|
26
26
|
- !ruby/object:Gem::Dependency
|
@@ -152,9 +152,20 @@ dependencies:
|
|
152
152
|
requirements:
|
153
153
|
- - ~>
|
154
154
|
- !ruby/object:Gem::Version
|
155
|
-
version: 0.2.
|
155
|
+
version: 0.2.1
|
156
156
|
type: :runtime
|
157
157
|
version_requirements: *id013
|
158
|
+
- !ruby/object:Gem::Dependency
|
159
|
+
name: ripl-i18n
|
160
|
+
prerelease: false
|
161
|
+
requirement: &id014 !ruby/object:Gem::Requirement
|
162
|
+
none: false
|
163
|
+
requirements:
|
164
|
+
- - ~>
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: 0.1.0
|
167
|
+
type: :runtime
|
168
|
+
version_requirements: *id014
|
158
169
|
description: This is a meta gem which installs some useful ripl plugins for a nice-to-use general purpose ripl.
|
159
170
|
email: mail@janlelis.de
|
160
171
|
executables: []
|
@@ -194,7 +205,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
194
205
|
requirements: []
|
195
206
|
|
196
207
|
rubyforge_project:
|
197
|
-
rubygems_version: 1.
|
208
|
+
rubygems_version: 1.8.0
|
198
209
|
signing_key:
|
199
210
|
specification_version: 3
|
200
211
|
summary: A meta gem for ripl plugins
|