Commit 47c4e668 authored by Fabio Pelosin's avatar Fabio Pelosin

Pretty podfile-info && add license note to changelog

parent 944f3407
...@@ -2,6 +2,11 @@ ...@@ -2,6 +2,11 @@
To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides/installing_cocoapods.html). To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides/installing_cocoapods.html).
## Master
* Added license information to `podfile-info` subcommand.
[#1219](https://github.com/CocoaPods/CocoaPods/issues/1219)
## 0.22.3 ## 0.22.3
[CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.22.2...0.22.3) [CocoaPods](https://github.com/CocoaPods/CocoaPods/compare/0.22.2...0.22.3)
......
...@@ -54,6 +54,7 @@ GIT ...@@ -54,6 +54,7 @@ GIT
coveralls (0.6.7) coveralls (0.6.7)
multi_json (~> 1.3) multi_json (~> 1.3)
rest-client rest-client
simplecov (>= 0.7)
term-ansicolor term-ansicolor
thor thor
...@@ -92,7 +93,7 @@ GEM ...@@ -92,7 +93,7 @@ GEM
rb-inotify (>= 0.9) rb-inotify (>= 0.9)
rb-kqueue (>= 0.2) rb-kqueue (>= 0.2)
metaclass (0.0.1) metaclass (0.0.1)
method_source (0.8.1) method_source (0.8.2)
mime-types (1.23) mime-types (1.23)
mocha (0.14.0) mocha (0.14.0)
metaclass (~> 0.0.1) metaclass (~> 0.0.1)
...@@ -123,13 +124,13 @@ GEM ...@@ -123,13 +124,13 @@ GEM
multi_json (~> 1.0) multi_json (~> 1.0)
simplecov-html (~> 0.7.1) simplecov-html (~> 0.7.1)
simplecov-html (0.7.1) simplecov-html (0.7.1)
slop (3.4.5) slop (3.4.6)
term-ansicolor (1.2.2) term-ansicolor (1.2.2)
tins (~> 0.8) tins (~> 0.8)
thor (0.18.1) thor (0.18.1)
tins (0.8.3) tins (0.8.3)
yajl-ruby (1.1.0) yajl-ruby (1.1.0)
yard (0.8.6.2) yard (0.8.7)
PLATFORMS PLATFORMS
ruby ruby
......
...@@ -79,9 +79,10 @@ module Pod ...@@ -79,9 +79,10 @@ module Pod
pods.each do |pod| pods.each do |pod|
if in_md if in_md
UI.puts "* [#{pod[:name]}](#{pod[:homepage]}) - #{pod[:summary]} - #{pod[:license][:type]}" UI.puts "* [#{pod[:name]}](#{pod[:homepage]}) [#{pod[:license][:type]}] - #{pod[:summary]}"
else else
UI.puts "- #{pod[:name]} - #{pod[:summary]} - #{pod[:license][:type]}" UI.puts "- #{pod[:name]} [#{pod[:license][:type]}]".green
UI.puts " #{pod[:summary]}\n\n"
end end
end end
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment