Skip to content

Commit a75f085

Browse files
committedAug 12, 2014
Add 'activejob/' from commit '14f74a8331f94150dfee653224de8fc837797709'
git-subtree-dir: activejob git-subtree-mainline: b45b998 git-subtree-split: 14f74a8
2 parents b45b998 + 14f74a8 commit a75f085

File tree

104 files changed

+2276
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+2276
-0
lines changed
 

‎activejob/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/test/dummy/log/*
2+
/test/dummy/tmp/*

‎activejob/.travis.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
before_install:
2+
- travis_retry gem install bundler
3+
- sudo apt-get update -qq
4+
- sudo apt-get install beanstalkd
5+
- echo "START=yes" | sudo tee -a /etc/default/beanstalkd
6+
- sudo /etc/init.d/beanstalkd start
7+
8+
rvm:
9+
- 1.9.3
10+
- 2.0.0
11+
- 2.1
12+
- ruby-head
13+
- rbx-2
14+
- jruby
15+
env:
16+
- QC_DATABASE_URL="postgres://postgres@localhost/active_jobs_qc_int_test" QUE_DATABASE_URL="postgres://postgres@localhost/active_jobs_qc_int_test"
17+
matrix:
18+
allow_failures:
19+
- rvm: rbx-2
20+
- rvm: jruby
21+
- rvm: ruby-head
22+
fast_finish: true
23+
notifications:
24+
email: false
25+
irc:
26+
on_success: change
27+
on_failure: always
28+
channels:
29+
- irc.freenode.org#rails-contrib
30+
campfire:
31+
on_success: change
32+
on_failure: always
33+
rooms:
34+
- secure: AgZwJA+9VdnWAw7QN9Z5s6RpQIzsEB0q7V+p3pCzXY45156WocL8iNQx+KnyOQ8jbRUt4L/XIOiZl5xHf4pHjXytHWHNhetAlVQP/hPeDcCSk/h0g5gqgf6QABdp38tBNaUq866bXHgCOZYPwwP9bypcmuv2SLyfIO+b/PBgqN0=
35+
services:
36+
- redis
37+
- rabbitmq
38+
addons:
39+
postgresql: "9.3"

0 commit comments

Comments
 (0)
Please sign in to comment.