Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cocoapods
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
cocoapods
Commits
b9c37bc7
Commit
b9c37bc7
authored
Apr 05, 2013
by
Fabio Pelosin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Specs] Fix for improved support for pre-release versions
parent
b0184ad7
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
CHANGELOG.md
CHANGELOG.md
+3
-0
spec_helper.rb
spec/spec_helper.rb
+1
-1
analyzer_spec.rb
spec/unit/installer/analyzer_spec.rb
+1
-1
No files found.
CHANGELOG.md
View file @
b9c37bc7
...
@@ -12,6 +12,9 @@
...
@@ -12,6 +12,9 @@
*
Corrected improper configuration of the PODS_ROOT xcconfig variable in
*
Corrected improper configuration of the PODS_ROOT xcconfig variable in
non-integrating installations.
non-integrating installations.
[
#918
](
https://github.com/CocoaPods/CocoaPods/issues/918
)
[
#918
](
https://github.com/CocoaPods/CocoaPods/issues/918
)
*
Improved support for pre-release versions using dashes.
[
#935
](
https://github.com/CocoaPods/CocoaPods/issues/935
)
###### Ancillary enhancements
###### Ancillary enhancements
...
...
spec/spec_helper.rb
View file @
b9c37bc7
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
if
ENV
[
'CI'
]
||
ENV
[
'GENERATE_COVERAGE'
]
if
ENV
[
'CI'
]
||
ENV
[
'GENERATE_COVERAGE'
]
require
'simplecov'
require
'simplecov'
require
'coveralls'
#
require 'coveralls'
if
ENV
[
'CI'
]
if
ENV
[
'CI'
]
SimpleCov
.
formatter
=
Coveralls
::
SimpleCov
::
Formatter
SimpleCov
.
formatter
=
Coveralls
::
SimpleCov
::
Formatter
...
...
spec/unit/installer/analyzer_spec.rb
View file @
b9c37bc7
...
@@ -103,7 +103,7 @@ module Pod
...
@@ -103,7 +103,7 @@ module Pod
it
"locks the version of the dependencies which did not change in the Podfile"
do
it
"locks the version of the dependencies which did not change in the Podfile"
do
@analyzer
.
analyze
@analyzer
.
analyze
@analyzer
.
send
(
:locked_dependencies
).
map
(
&
:to_s
).
should
==
[
"SVPullToRefresh"
]
@analyzer
.
send
(
:locked_dependencies
).
map
(
&
:to_s
).
should
==
[
"SVPullToRefresh
(= 0.4)
"
]
end
end
it
"does not lock the dependencies in update mode"
do
it
"does not lock the dependencies in update mode"
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment