term-ansicolor 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/CHANGES +3 -3
  2. data/Rakefile +32 -31
  3. data/VERSION +1 -1
  4. metadata +9 -10
data/CHANGES CHANGED
@@ -1,5 +1,7 @@
1
+ 2005-09-05 * 1.0.1 * Fixed install bug in Rakefile, reported by
2
+ Martin DeMello <martindemello@gmail.com>
1
3
  2004-12-23 * 1.0.0 * Added Term::ANSIColor.coloring[?=]? methods.
2
- Thanks Thomas Husterer for the contribution.
4
+ Thanks, Thomas Husterer for the contribution.
3
5
  * Minor cleanup of code.
4
6
  * Documented visible methods in the module.
5
7
  2004-09-28 * 0.0.4 * First release on Rubyforge
@@ -8,8 +10,6 @@
8
10
  Thomas Husterer <Thomas.Husterer@heidelberg.com>
9
11
  * Added attribute methods with string arguments
10
12
  * Deleted now unused files
11
-
12
13
  2002-07-27 * 0.0.2 * Minor Code Cleanup
13
14
  * Added cdiff.rb
14
-
15
15
  2002-06-12 * 0.0.1 * Initial Release
data/Rakefile CHANGED
@@ -15,6 +15,7 @@ desc "Installing library"
15
15
  task :install do
16
16
  libdir = CONFIG["sitelibdir"]
17
17
  dest = File.join(libdir, 'term')
18
+ mkdir_p dest
18
19
  install('lib/term/ansicolor.rb', dest)
19
20
  end
20
21
 
@@ -24,52 +25,52 @@ task :doc do
24
25
  end
25
26
 
26
27
  task :clean do
27
- rm_r 'doc'
28
+ rm_r 'doc'
28
29
  end
29
30
 
30
31
  spec = Gem::Specification.new do |s|
31
- #### Basic information.
32
+ #### Basic information.
32
33
 
33
- s.name = 'term-ansicolor'
34
- s.version = PKG_VERSION
35
- s.summary = "Ruby library that colors strings using ANSI escape sequences"
36
- s.description = ""
34
+ s.name = 'term-ansicolor'
35
+ s.version = PKG_VERSION
36
+ s.summary = "Ruby library that colors strings using ANSI escape sequences"
37
+ s.description = ""
37
38
 
38
- #### Dependencies and requirements.
39
+ #### Dependencies and requirements.
39
40
 
40
- #s.add_dependency('log4r', '> 1.0.4')
41
- #s.requirements << ""
41
+ #s.add_dependency('log4r', '> 1.0.4')
42
+ #s.requirements << ""
42
43
 
43
- s.files = PKG_FILES
44
+ s.files = PKG_FILES
44
45
 
45
- #### C code extensions.
46
+ #### C code extensions.
46
47
 
47
- #s.extensions << "ext/extconf.rb"
48
+ #s.extensions << "ext/extconf.rb"
48
49
 
49
- #### Load-time details: library and application (you will need one or both).
50
+ #### Load-time details: library and application (you will need one or both).
50
51
 
51
- s.require_path = 'lib' # Use these for libraries.
52
- s.autorequire = 'term/ansicolor'
52
+ s.require_path = 'lib' # Use these for libraries.
53
+ s.autorequire = 'term/ansicolor'
53
54
 
54
- #s.bindir = "bin" # Use these for applications.
55
- #s.executables = ["bla.rb"]
56
- #s.default_executable = "bla.rb"
55
+ #s.bindir = "bin" # Use these for applications.
56
+ #s.executables = ["bla.rb"]
57
+ #s.default_executable = "bla.rb"
57
58
 
58
- #### Documentation and testing.
59
+ #### Documentation and testing.
59
60
 
60
- #s.has_rdoc = true
61
- #s.extra_rdoc_files = rd.rdoc_files.reject { |fn| fn =~ /\.rb$/ }.to_a
62
- #s.rdoc_options <<
63
- # '--title' << 'Term::ANSIColor -- ANSI color escape sequences' <<
64
- # '--main' << 'README' <<
65
- # '--line-numbers'
61
+ #s.has_rdoc = true
62
+ #s.extra_rdoc_files = rd.rdoc_files.reject { |fn| fn =~ /\.rb$/ }.to_a
63
+ #s.rdoc_options <<
64
+ # '--title' << 'Term::ANSIColor -- ANSI color escape sequences' <<
65
+ # '--main' << 'README' <<
66
+ # '--line-numbers'
66
67
 
67
- #### Author and project details.
68
+ #### Author and project details.
68
69
 
69
- s.author = "Florian Frank"
70
- s.email = "flori@ping.de"
71
- s.homepage = "http://term-ansicolor.rubyforge.org"
72
- s.rubyforge_project = "term-ansicolor"
70
+ s.author = "Florian Frank"
71
+ s.email = "flori@ping.de"
72
+ s.homepage = "http://term-ansicolor.rubyforge.org"
73
+ s.rubyforge_project = "term-ansicolor"
73
74
  end
74
75
 
75
76
  Rake::GemPackageTask.new(spec) do |pkg|
@@ -78,4 +79,4 @@ Rake::GemPackageTask.new(spec) do |pkg|
78
79
  end
79
80
 
80
81
  task :release => :package
81
- # vim: set noet sw=2 ts=2:
82
+ # vim: set et sw=2 ts=2:
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.1
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.8.10
2
+ rubygems_version: 0.8.1
3
3
  specification_version: 1
4
4
  name: term-ansicolor
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.0.0
7
- date: 2005-04-15
6
+ version: 1.0.1
7
+ date: 2005-09-05
8
8
  summary: Ruby library that colors strings using ANSI escape sequences
9
9
  require_paths:
10
10
  - lib
11
+ author: Florian Frank
11
12
  email: flori@ping.de
12
13
  homepage: http://term-ansicolor.rubyforge.org
13
14
  rubyforge_project: term-ansicolor
@@ -24,19 +25,17 @@ required_ruby_version: !ruby/object:Gem::Version::Requirement
24
25
  version: 0.0.0
25
26
  version:
26
27
  platform: ruby
27
- authors:
28
- - Florian Frank
29
28
  files:
30
29
  - examples
31
- - examples/cdiff.rb
32
- - examples/example.rb
33
- - CHANGES
30
+ - install.rb
34
31
  - GPL
35
- - README.en
36
32
  - Rakefile
37
33
  - VERSION
38
- - install.rb
34
+ - CHANGES
39
35
  - lib
36
+ - README.en
37
+ - examples/example.rb
38
+ - examples/cdiff.rb
40
39
  - lib/term
41
40
  - lib/term/ansicolor.rb
42
41
  test_files: []