Commit 50ec1ed9 authored by Boris Bügling's avatar Boris Bügling

Merge pull request #4599 from CocoaPods/seg-easier-contributions

Make it slightly easier to start contributing
parents e547edd6 026fd36c
...@@ -11,7 +11,9 @@ source 'https://rubygems.org' ...@@ -11,7 +11,9 @@ source 'https://rubygems.org'
gemspec gemspec
# This is the version that ships with OS X 10.10, so be sure we test against it. # This is the version that ships with OS X 10.10, so be sure we test against it.
gem 'json', '1.7.7' # At the same time, the 1.7.7 version won't install cleanly on Ruby > 2.2,
# so we use a fork that makes a trivial change to a macro invocation.
gem 'json', :git => 'https://github.com/segiddins/json.git', :branch => 'seg-1.7.7-ruby-2.2'
group :development do group :development do
cp_gem 'claide', 'CLAide' cp_gem 'claide', 'CLAide'
......
...@@ -77,6 +77,13 @@ GIT ...@@ -77,6 +77,13 @@ GIT
specs: specs:
cocoapods-try (0.5.1) cocoapods-try (0.5.1)
GIT
remote: https://github.com/segiddins/json.git
revision: d4011cabfaa80e9b0da81947b5e9b38dd47359db
branch: seg-1.7.7-ruby-2.2
specs:
json (1.7.7)
PATH PATH
remote: . remote: .
specs: specs:
...@@ -130,7 +137,6 @@ GEM ...@@ -130,7 +137,6 @@ GEM
sparkr (>= 0.2.0) sparkr (>= 0.2.0)
term-ansicolor term-ansicolor
yard (~> 0.8.7.5) yard (~> 0.8.7.5)
json (1.7.7)
kicker (3.0.0) kicker (3.0.0)
listen (~> 1.3.0) listen (~> 1.3.0)
notify (~> 0.5.2) notify (~> 0.5.2)
...@@ -207,7 +213,7 @@ DEPENDENCIES ...@@ -207,7 +213,7 @@ DEPENDENCIES
cocoapods-try! cocoapods-try!
diffy diffy
inch inch
json (= 1.7.7) json!
kicker kicker
mocha mocha
mocha-on-bacon mocha-on-bacon
......
...@@ -130,6 +130,9 @@ describe_cli 'pod' do ...@@ -130,6 +130,9 @@ describe_cli 'pod' do
s.replace_pattern /\d{4}-\d\d-\d\d \d\d:\d\d:\d\d [-+]\d{4}/, '<#DATE#>' s.replace_pattern /\d{4}-\d\d-\d\d \d\d:\d\d:\d\d [-+]\d{4}/, '<#DATE#>'
s.replace_pattern /\(Took \d+.\d+ seconds\)/, '(Took <#DURATION#> seconds)' s.replace_pattern /\(Took \d+.\d+ seconds\)/, '(Took <#DURATION#> seconds)'
# This was changed in a very recent git version
s.replace_pattern /git checkout -b <new-branch-name>/, 'git checkout -b new_branch_name'
s.replace_path %r{ s.replace_path %r{
`[^`]*? # The opening backtick on a plugin path `[^`]*? # The opening backtick on a plugin path
([[[:alnum:]]_+-]+?) # The plugin name ([[[:alnum:]]_+-]+?) # The plugin name
......
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