Merge branch 'xcodeproj-refactor' into installer_clean_up
* xcodeproj-refactor: (48 commits) Changelog [Specs] Fix issue that lead to generation of files in the fixtures folder. Completed support for Xcodeproj refactor. [Gemfile] Use Xcodeproj refactor branch. Release 0.15.2 [Bundle] Update. [Gemspec] Require Xcodeproj 0.3.5. Remove stray puts. Update the lockfiles of the examples. [Gemfile] Install and remove dependency on letters gem. [LocalPod] Always use Pathname::glob. [Gemspec] Use spermy indicator for xcodeproj. [Specs] Complete revert of 8e72cbe1 Fixed a bug with the flags passed into `Dir.glob` Fixing a bug where `downcase` was being called on the list of used file paths Updated `clean_paths` and `expand_paths` methods to use `File::FNM_CASEFOLD` [Xcodeproj] Initial adaptation for refactor. [Linter/Push] Properly singularize words in output. [Bundler] Update. [UI] Support for running CocoaPods without a terminal. ... Conflicts: lib/cocoapods/installer.rb spec/unit/installer_spec.rb
Showing
| ... | @@ -3,20 +3,25 @@ source "http://rubygems.org" | ... | @@ -3,20 +3,25 @@ source "http://rubygems.org" |
| gemspec | gemspec | ||
| group :development do | group :development do | ||
| gem "xcodeproj", :git => "git://github.com/CocoaPods/Xcodeproj.git" | gem "xcodeproj", :git => "git://github.com/CocoaPods/Xcodeproj.git", :branch => "refactor" | ||
| gem "mocha", "~> 0.11.4" | gem "mocha", "~> 0.11.4" | ||
| gem "bacon" | gem "bacon" | ||
| gem "kicker", :git => "https://github.com/alloy/kicker.git", :branch => "3.0.0" | |||
| gem "mocha-on-bacon" | gem "mocha-on-bacon" | ||
| gem "rake" | gem "rake" | ||
| gem "rb-fsevent" | |||
| gem "vcr" | gem "vcr" | ||
| gem "webmock" | gem "webmock" | ||
| end | |||
| group :debugging do | |||
| gem "rb-fsevent" | |||
| gem "kicker", :git => "https://github.com/alloy/kicker.git", :branch => "3.0.0" | |||
| gem "awesome_print" | gem "awesome_print" | ||
| gem "pry" | gem "pry" | ||
| end | |||
| group :documentation do | |||
| gem 'yard' | gem 'yard' | ||
| gem 'redcarpet' | gem 'redcarpet' | ||
| gem 'github-markup' | gem 'github-markup' | ||
| end | end | ||
| ... | @@ -7,9 +7,9 @@ Gem::Specification.new do |s| | ... | @@ -7,9 +7,9 @@ Gem::Specification.new do |s| |
| s.version = Pod::VERSION | s.version = Pod::VERSION | ||
| s.date = Date.today | s.date = Date.today | ||
| s.license = "MIT" | s.license = "MIT" | ||
| s.email = "eloy.de.enige@gmail.com" | s.email = ["eloy.de.enige@gmail.com", "fabiopelosin@gmail.com"] | ||
| s.homepage = "https://github.com/CocoaPods/CocoaPods" | s.homepage = "https://github.com/CocoaPods/CocoaPods" | ||
| s.authors = ["Eloy Duran"] | s.authors = ["Eloy Duran", "Fabio Pelosin"] | ||
| s.summary = "An Objective-C library package manager." | s.summary = "An Objective-C library package manager." | ||
| s.description = "CocoaPods manages library dependencies for your Xcode project.\n\n" \ | s.description = "CocoaPods manages library dependencies for your Xcode project.\n\n" \ | ||
| ... | @@ -26,7 +26,7 @@ Gem::Specification.new do |s| | ... | @@ -26,7 +26,7 @@ Gem::Specification.new do |s| |
| s.executables = %w{ pod } | s.executables = %w{ pod } | ||
| s.require_paths = %w{ lib } | s.require_paths = %w{ lib } | ||
| s.add_runtime_dependency 'xcodeproj', '>= 0.3.3' | s.add_runtime_dependency 'xcodeproj', '~> 0.3.5' | ||
| s.add_runtime_dependency 'faraday', '~> 0.8.1' | s.add_runtime_dependency 'faraday', '~> 0.8.1' | ||
| s.add_runtime_dependency 'octokit', '~> 1.7' | s.add_runtime_dependency 'octokit', '~> 1.7' | ||
| ... | ... |
This diff is collapsed.
Please
register
or
sign in
to comment