1
0
Fork 0
mirror of https://github.com/awesome-print/awesome_print synced 2023-03-27 23:22:34 -04:00
awesome_print/awesome_print.gemspec
Gerard Caulfield ce934093b3
Fix string inconsistency
Only using double quoted strings when needing interpolation.

If git-blame brought you here you may want to read this, the
problem is with git-blame, not this change.

Try running these two lines just once:
```
git config --global alias.praise 'log -p -M --follow --stat --'
git config --global alias.praise-line 'log -p -M --pretty=format:"%h (%an %ai)"  -L'
```

Now in future you can use

`git praise <path/to/your/file>`

or if you want to see the evolution of a specific line or range of lines

`git praise-line <start-line>:<end-line>:<path/to/your/file>`

Some examples you should try:
```
git praise lib/awesome_print/version.rb
git praise-line 8:8:lib/awesome_print/version.rb
```

Inspiration for these aliases:

http://blog.andrewray.me/a-better-git-blame/
2016-11-08 17:30:17 +11:00

34 lines
1.4 KiB
Ruby

# Copyright (c) 2010-2016 Michael Dvorkin and contributors
#
# Awesome Print is freely distributable under the terms of MIT license.
# See LICENSE file or http://www.opensource.org/licenses/mit-license.php
#------------------------------------------------------------------------------
$:.push File.expand_path('../lib', __FILE__)
require 'awesome_print/version'
Gem::Specification.new do |s|
s.name = 'awesome_print'
s.version = AwesomePrint.version
s.authors = 'Michael Dvorkin'
s.date = Time.now.strftime('%Y-%m-%d')
s.email = 'mike@dvorkin.net'
s.homepage = 'https://github.com/awesome-print/awesome_print'
s.summary = 'Pretty print Ruby objects with proper indentation and colors'
s.description = 'Great Ruby dubugging companion: pretty print Ruby objects to visualize their structure. Supports custom object formatting via plugins'
s.license = 'MIT'
s.rubyforge_project = 'awesome_print'
s.files = Dir['[A-Z]*[^~]'] + Dir['lib/**/*.rb'] + Dir['spec/*'] + ['.gitignore']
s.test_files = Dir['spec/*']
s.executables = []
s.require_paths = ['lib']
s.add_development_dependency 'rspec', '>= 3.0.0'
s.add_development_dependency 'appraisal'
s.add_development_dependency 'fakefs', '>= 0.2.1'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'nokogiri', '>= 1.6.5'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'codeclimate-test-reporter'
end