colored 1.1 → 1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/LICENSE +20 -0
  2. data/README +1 -1
  3. data/Rakefile +16 -0
  4. data/lib/colored.rb +1 -1
  5. metadata +43 -32
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2010 Chris Wanstrath
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ Software), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README CHANGED
@@ -20,4 +20,4 @@ Windows users:
20
20
  (We're trying to make it official. Hang in there.)
21
21
 
22
22
  >> chris[at]ozmm[dot]org
23
- => http://errtheblog.com/
23
+ => http://github.com/defunkt
@@ -0,0 +1,16 @@
1
+ require 'rake/testtask'
2
+
3
+ task :default => :test
4
+
5
+ Rake::TestTask.new do |t|
6
+ t.libs << 'lib'
7
+ t.pattern = 'test/**/*_test.rb'
8
+ t.verbose = false
9
+ end
10
+
11
+ begin
12
+ require 'mg'
13
+ MG.new("colored.gemspec")
14
+ rescue LoadError
15
+ abort "Please `gem install mg`"
16
+ end
@@ -1,4 +1,4 @@
1
- require 'Win32/Console/ANSI' if PLATFORM =~ /win32/
1
+ require 'Win32/Console/ANSI' if RUBY_PLATFORM =~ /win32/
2
2
 
3
3
  ##
4
4
  # cute.
metadata CHANGED
@@ -1,48 +1,59 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.0
3
- specification_version: 1
4
2
  name: colored
5
3
  version: !ruby/object:Gem::Version
6
- version: "1.1"
7
- date: 2007-07-25 00:00:00 -07:00
8
- summary: Add some color to your life.
9
- require_paths:
10
- - lib
11
- email: chris[at]ozmm[dot]org
12
- homepage: http://errtheblog.com/
13
- rubyforge_project:
14
- description: Add some color to your life.
15
- autorequire:
16
- default_executable:
17
- bindir: bin
18
- has_rdoc: false
19
- required_ruby_version: !ruby/object:Gem::Version::Requirement
20
- requirements:
21
- - - ">"
22
- - !ruby/object:Gem::Version
23
- version: 0.0.0
24
- version:
4
+ version: "1.2"
25
5
  platform: ruby
26
- signing_key:
27
- cert_chain:
28
- post_install_message:
29
6
  authors:
30
7
  - Chris Wanstrath
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2010-02-10 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: " >> puts \"this is red\".red\n \n >> puts \"this is red with a blue background (read: ugly)\".red_on_blue\n\n >> puts \"this is red with an underline\".red.underline\n\n >> puts \"this is really bold and really blue\".bold.blue\n\n >> logger.debug \"hey this is broken!\".red_on_yellow # in rails\n\n >> puts Color.red \"This is red\" # but this part is mostly untested\n"
17
+ email: chris@ozmm.org
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files: []
23
+
31
24
  files:
32
25
  - README
26
+ - Rakefile
27
+ - LICENSE
33
28
  - lib/colored.rb
34
29
  - test/colored_test.rb
35
- test_files: []
30
+ has_rdoc: true
31
+ homepage: http://github.com/defunkt/colored
32
+ licenses: []
36
33
 
34
+ post_install_message:
37
35
  rdoc_options: []
38
36
 
39
- extra_rdoc_files: []
40
-
41
- executables: []
42
-
43
- extensions: []
44
-
37
+ require_paths:
38
+ - lib
39
+ required_ruby_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: "0"
44
+ version:
45
+ required_rubygems_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: "0"
50
+ version:
45
51
  requirements: []
46
52
 
47
- dependencies: []
53
+ rubyforge_project:
54
+ rubygems_version: 1.3.5
55
+ signing_key:
56
+ specification_version: 3
57
+ summary: Add some color to your life.
58
+ test_files: []
48
59