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
d3bd2989
Commit
d3bd2989
authored
Mar 24, 2012
by
Eloy Duran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
The VCR fixture differs between Ruby versions, so clean it.
parent
12919c7b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
Rakefile
Rakefile
+10
-3
No files found.
Rakefile
View file @
d3bd2989
...
...
@@ -66,16 +66,16 @@ namespace :spec do
end
desc
"Run the functional specs"
task
:functional
=>
[
:unpack_fixture_tarballs
,
"ext:cleanbuild"
]
do
task
:functional
=>
:clean_env
do
sh
"bacon
#{
specs
(
'functional/**'
)
}
"
end
desc
"Run the integration spec"
task
:integration
=>
[
:unpack_fixture_tarballs
,
"ext:cleanbuild"
]
do
task
:integration
=>
:clean_env
do
sh
"bacon spec/integration_spec.rb"
end
task
:all
=>
[
:unpack_fixture_tarballs
,
"ext:cleanbuild"
]
do
task
:all
=>
:clean_env
do
sh
"bacon
#{
specs
(
'**'
)
}
"
end
...
...
@@ -104,6 +104,13 @@ namespace :spec do
end
end
end
desc
"Removes the stored VCR fixture"
task
:clean_vcr
do
sh
"rm -f spec/fixtures/vcr/tarballs.yml"
end
task
:clean_env
=>
[
:clean_vcr
,
:unpack_fixture_tarballs
,
"ext:cleanbuild"
]
end
namespace
:examples
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