Use the version of CocoaPods-Core.
Showing
source "http://rubygems.org" | source "http://rubygems.org" | ||
BUNDLER_LOAD = true | |||
gemspec | gemspec | ||
group :development do | group :development do | ||
# gem "cocoapods-core", :git => "git://github.com/CocoaPods/Core.git" | gem "cocoapods-core", :git => "git://github.com/CocoaPods/Core.git" | ||
gem "cocoapods-core", :path => "../Core" | |||
gem "xcodeproj", :git => "git://github.com/CocoaPods/Xcodeproj.git" | gem "xcodeproj", :git => "git://github.com/CocoaPods/Xcodeproj.git" | ||
gem "mocha", "~> 0.11.4" | gem "mocha", "~> 0.11.4" | ||
gem "bacon" | gem "bacon" | ||
... | ... |
# -*- encoding: utf-8 -*- | # -*- encoding: utf-8 -*- | ||
$:.unshift File.expand_path('../lib', __FILE__) | $:.unshift File.expand_path('../lib', __FILE__) | ||
require 'cocoapods/version' | |||
Gem::Specification.new do |s| | Gem::Specification.new do |s| | ||
s.name = "cocoapods" | |||
# Use the version of CocoaPods-Core | |||
if BUNDLER_LOAD = true | |||
s.version = '0.0.0' | |||
else | |||
require 'cocoapods-core' | |||
s.version = Pod::VERSION | s.version = Pod::VERSION | ||
end | |||
s.name = "cocoapods" | |||
s.date = Date.today | s.date = Date.today | ||
s.license = "MIT" | s.license = "MIT" | ||
s.email = ["eloy.de.enige@gmail.com", "fabiopelosin@gmail.com"] | s.email = ["eloy.de.enige@gmail.com", "fabiopelosin@gmail.com"] | ||
... | ... |
Please
register
or
sign in
to comment