diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2015-07-29 22:16:37 +0200 |
---|---|---|
committer | Kasper Timm Hansen <kaspth@gmail.com> | 2015-07-29 22:16:37 +0200 |
commit | b1146a75f13e8062764e36e3552364f330ddd9dd (patch) | |
tree | c452f5028a54beff2200e9472f35f1787cc337bd | |
parent | ae61460cb2ebcc25528686d896c136522690f083 (diff) | |
parent | 0a6787e598de5b15f0bb8a24ab02bf1bafdc254f (diff) | |
download | rails-b1146a75f13e8062764e36e3552364f330ddd9dd.tar.gz rails-b1146a75f13e8062764e36e3552364f330ddd9dd.tar.bz2 rails-b1146a75f13e8062764e36e3552364f330ddd9dd.zip |
Merge pull request #45 from kaspth/run-travis
Run tests with Travis.
-rw-r--r-- | .travis.yml | 19 | ||||
-rw-r--r-- | README.md | 1 |
2 files changed, 20 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..99a95ae240 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,19 @@ +sudo: false +cache: bundler +rvm: + - 2.2 + - ruby-head +matrix: + fast_finish: true +notifications: + email: false + irc: + on_success: change + on_failure: always + channels: + - "irc.freenode.org#rails-contrib" + campfire: + on_success: change + on_failure: always + rooms: + - secure: "EZmqsgjEQbWouCx6xL/30jslug7xcq+Dl09twDGjBs369GB5LiUm17/I7d6H1YQFY0Vu2LpiQ/zs+6ihlBjslRV/2RYM3AgAA9OOC3pn7uENFVTXaECi/io1wjvlbMNrf1YJSc3aUyiWKykRsdZnZSFszkDs4DMnZG1s/Oxf1JTYEGNWW3WcOFfYkzcS7NWlOW9OBf4RuzjtLYF05IO4t4FZI1aTWrNV3NNMZ+tqmiQHHNrQE/CzQE3ujqFiea2vVZ7PwvmjVWJgC29UZqS7HcNuq6cCMtMZZuubCZmyT85GjJ/SKTShxFqfV1oCpY3y6kyWcTAQsUoLtPEX0OxLeX+CgWNIJK0rY5+5/v5pZP1uwRsMfLerfp2a9g4fAnlcAKaZjalOc39rOkJl8FdvLQtqFIGWxpjWdJbMrCt3SrnnOccpDqDWpAL798LVBONcOuor71rEeNj1dZ6fCoHTKhLVy6UVm9eUI8zt1APM0xzHgTBI1KBVZi0ikqPcaW604rrNUSk8g/AFQk0pIKyDzV9qYMJD2wnr42cyPKg0gfk1tc9KRCNeH+My1HdZS6Zogpjkc3plAzJQ1DAPY0EBWUlEKghpkyCunjpxN3cw390iKgZUN52phtmGMRkyNnwI8+ELnT4I+Jata1mFyWiETM85q8Rqx+FeA0W/BBsEAp8="
\ No newline at end of file @@ -1,4 +1,5 @@ # Action Cable – Integrated websockets for Rails +[](https://travis-ci.org/rails/actioncable) Action Cable seamlessly integrates websockets with the rest of your Rails application. It allows for real-time features to be written in Ruby in the same style |