Skip to content

Commit

Permalink
[Command] Don't default pod to pod install
Browse files Browse the repository at this point in the history
I'm sure everyone is going to hate me for doing this.

Fixes #1771
Closes #1966
  • Loading branch information
kylef committed May 2, 2014
1 parent ea6107f commit 420aef6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
[Samuel E. Giddins](https://github.com/segiddins)
[#2049](https://github.com/CocoaPods/CocoaPods/issues/2049)

* Show `help` when running the `pod` command instead of defaulting to `pod
install`.
[Kyle Fuller](https://github.com/kylef)
[#1771](https://github.com/CocoaPods/CocoaPods/issues/1771)

##### Bug Fixes

* Fixed support for file references in the workspace generated by CocoaPods.
Expand Down
1 change: 0 additions & 1 deletion lib/cocoapods/command.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class Command < CLAide::Command
require 'cocoapods/command/init'

self.abstract_command = true
self.default_subcommand = 'install'
self.command = 'pod'
self.description = 'CocoaPods, the Objective-C library package manager.'
self.plugin_prefix = 'cocoapods'
Expand Down

4 comments on commit 420aef6

@dlackty
Copy link
Contributor

@dlackty dlackty commented on 420aef6 May 3, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸ‘

@neonichu
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸ‘

@fabiopelosin
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kylef good luck with this πŸ˜‰!

@alloy
Copy link
Member

@alloy alloy commented on 420aef6 May 4, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please do share some of the hate with me! ;)

πŸ‘

Please sign in to comment.