cyc-console 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/changelog.txt +4 -2
- data/cyc-console.gemspec +3 -3
- metadata +13 -4
data/changelog.txt
CHANGED
@@ -1,6 +1,8 @@
|
|
1
|
+
0.0.5
|
2
|
+
- missing dependency on *colors* added
|
1
3
|
0.0.4
|
2
|
-
|
3
|
-
|
4
|
+
- autocompletion for symbols
|
5
|
+
- autocompletion for functions defined in ~/.cyc_functions
|
4
6
|
0.0.3
|
5
7
|
- fix: added missing library and changelog.txt to gemspec
|
6
8
|
0.0.2
|
data/cyc-console.gemspec
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "cyc-console"
|
3
|
-
s.version = "0.0.
|
3
|
+
s.version = "0.0.5"
|
4
4
|
s.date = "2009-10-08"
|
5
5
|
s.summary = "Ruby console for the Cyc ontology"
|
6
6
|
s.email = "apohllo@o2.pl"
|
7
|
-
s.homepage = "http://apohllo
|
7
|
+
s.homepage = "http://github.com/apohllo/cyc-console"
|
8
8
|
s.description = "Ruby console for the Cyc ontology with " +
|
9
9
|
"support for readline, colorful output, history, etc."
|
10
10
|
s.authors = ['Aleksander Pohl']
|
@@ -23,6 +23,6 @@ Gem::Specification.new do |s|
|
|
23
23
|
s.has_rdoc = true
|
24
24
|
s.extra_rdoc_files = ["README.txt"]
|
25
25
|
s.executables = ['cyc']
|
26
|
-
|
26
|
+
s.add_dependency("colors", [">= 0.0.4"])
|
27
27
|
end
|
28
28
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cyc-console
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aleksander Pohl
|
@@ -11,8 +11,17 @@ cert_chain: []
|
|
11
11
|
|
12
12
|
date: 2009-10-08 00:00:00 +02:00
|
13
13
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: colors
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.4
|
24
|
+
version:
|
16
25
|
description: Ruby console for the Cyc ontology with support for readline, colorful output, history, etc.
|
17
26
|
email: apohllo@o2.pl
|
18
27
|
executables:
|
@@ -28,7 +37,7 @@ files:
|
|
28
37
|
- README.txt
|
29
38
|
- changelog.txt
|
30
39
|
has_rdoc: true
|
31
|
-
homepage: http://apohllo
|
40
|
+
homepage: http://github.com/apohllo/cyc-console
|
32
41
|
licenses: []
|
33
42
|
|
34
43
|
post_install_message:
|