Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
language: ruby
git:
stategy: tarball
rvm:
# - 1.8.7
# - 1.9.2
- 1.9.3
# - kaboom
# - rbx-19mode
branches:
only: master
notifications:
email: [email protected]
irc:
channels: "irc.freenode.org#travisstaging"
template: "[STAGING] %{repository} (%{commit}) %{build_url} : %{message}"
webhooks:
urls: http://www.postbin.org/1cig81y
# on_start: always
env:
- ["FOO=bar", {secure: "bhGTo2IhH2fQdHcVuZDO6okHAL68K/XGxACqfmHtdbLQP2xbuqiHyfpTADJW\n04sB32KZM89gpIgLappuUuvmJlxPCfCmW6NgLyQSUIOkYOlOCfx8I2T84IZ3\n+yBgkVDN+roQDEccDu2w8wPUm7bATeIP7v0i3ZmlVpXerLg4ulQ="}]
- ["BAR=bar", {secure: "bhGTo2IhH2fQdHcVuZDO6okHAL68K/XGxACqfmHtdbLQP2xbuqiHyfpTADJW\n04sB32KZM89gpIgLappuUuvmJlxPCfCmW6NgLyQSUIOkYOlOCfx8I2T84IZ3\n+yBgkVDN+roQDEccDu2w8wPUm7bATeIP7v0i3ZmlVpXerLg4ulQ="}]
-
matrix:
exclude:
env:
5 changes: 3 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
require 'rake' # we need rake!!

task :test do
1.upto 100 do
sleep(0.01); putc '.'
1.upto 1000 do
sleep(0.1); putc '.'
$stdout.flush
end
sleep(10)
exit 0
end

Expand Down