-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathawesome_print_motion.gemspec
25 lines (22 loc) · 1.08 KB
/
awesome_print_motion.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
# Copyright (c) 2010-2012 Michael Dvorkin
#
# Awesome Print is freely distributable under the terms of MIT license.
# See LICENSE file or http://www.opensource.org/licenses/mit-license.php
#------------------------------------------------------------------------------
require File.dirname(__FILE__) + "/lib/awesome_print_motion/version"
Gem::Specification.new do |s|
s.name = "awesome_print_motion"
s.version = AwesomePrint.version
s.authors = "Michael Dvorkin"
s.date = Time.now.strftime("%Y-%m-%d")
s.email = "[email protected]"
s.homepage = "http://github.com/michaeldv/awesome_print_motion"
s.summary = "Pretty print RubyMotion objects with proper indentation and colors"
s.description = "Great RubyMotion dubugging companion: pretty print RubyMotion objects to visualize their structure"
s.files = Dir["[A-Z]*[^~|lock]"] + Dir["lib/**/*.rb"] + [".gitignore"]
s.test_files = Dir["test/*"]
s.executables = []
s.require_paths = ["lib"]
s.add_development_dependency "quickie_motion"
s.add_development_dependency "rake"
end