izqui / Taylor

A lightweight library for writing HTTP web servers with Swift
MIT License
926 stars 79 forks source link

Not able to install Taylor framework from Rome- What i am doing wrong ? #10

Closed karthikprabhuA closed 9 years ago

karthikprabhuA commented 9 years ago

Installing Taylor framework fails and giving the following error "fatal: repository 'https://github.com/nypisces/Taylor.git/' not found" It seems that taylor github path is wrong...

PodFile ---Start---- platform :osx, '10.9' platform :ios, '8.0' plugin 'cocoapods-rome'

pod 'Taylor'

--End--

pod install Updating local specs repositories

CocoaPods 0.39.0.beta.4 is available. To update use: gem install cocoapods --pre [!] This is a test version we'd love you to try.

For more information see http://blog.cocoapods.org and the CHANGELOG for this version http://git.io/BaH8pQ.

Analyzing dependencies Downloading dependencies Installing AFNetworking (1.3.4) Installing ISO8601DateFormatterValueTransformer (0.6.1) Installing RKValueTransformers (1.1.2) Installing RestKit (0.25.0) Installing SOCKit (1.1) Installing Taylor (0.1.0)

[!] Error installing Taylor [!] /usr/bin/git clone https://github.com/nypisces/Taylor.git /var/folders/zx/xkz4mnmj58s52gct0mc2hzbh0000gn/T/d20150909-18579-g54bgr --single-branch --depth 1 --branch 0.1.0

Cloning into '/var/folders/zx/xkz4mnmj58s52gct0mc2hzbh0000gn/T/d20150909-18579-g54bgr'... remote: Repository not found. fatal: repository 'https://github.com/nypisces/Taylor.git/' not found

Danappelxx commented 9 years ago

Unfortunately it's pretty difficult to use Taylor right now - the only way that sometimes works for me is by changing pod 'Taylor' to pod 'Taylor', :git => 'https://github.com/izqui/taylor_test'. Hopefully this will change once izqui finally merges the two repositories and tags a new release.

Also to why it's linking to nypisces/Taylor.git, I have no idea - that really strange. Perhaps he forked and did a pod trunk push (overwriting Taylor) but then took down his repo?

izqui commented 9 years ago

Hi @Danappelxx, sorry for the trouble.

I just got it to build using the following Podfile:

platform :osx, '10.10'

plugin 'cocoapods-rome'

pod 'Taylor', :git => 'https://github.com/izqui/taylor_test.git'

I will do the merge with izqui/Taylor really soon and request the pod name Taylor as soon as I finish debugging one last bug.

karthikprabhuA commented 9 years ago

Thanks @Danappelxx and @izqui . @izqui Notify once done , its really a great work . Would be better if you provide a detailed steps to execute the script from command line

Danappelxx commented 9 years ago

@izqui the setup worked and it builds & runs successfully, so that's great! The server itself isn't working for me, however (though I assume this is one of those bugs you said you were fixing).

izqui commented 9 years ago

Solved now! Check new README