-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathcolored.gemspec
27 lines (22 loc) · 937 Bytes
/
colored.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Gem::Specification.new do |s|
s.name = "colored"
s.version = "1.2"
s.date = "2010-02-10"
s.summary = "Add some color to your life."
s.homepage = "http://github.com/defunkt/colored"
s.email = "[email protected]"
s.authors = ["Chris Wanstrath"]
s.has_rdoc = false
s.require_path = "lib"
s.files = %w( README Rakefile LICENSE )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("test/**/*")
s.description = <<-desc
>> puts "this is red".red
>> puts "this is red with a blue background (read: ugly)".red_on_blue
>> puts "this is red with an underline".red.underline
>> puts "this is really bold and really blue".bold.blue
>> logger.debug "hey this is broken!".red_on_yellow # in rails
>> puts Color.red "This is red" # but this part is mostly untested
desc
end