File tree Expand file tree Collapse file tree 5 files changed +43
-1
lines changed
features/step-definitions Expand file tree Collapse file tree 5 files changed +43
-1
lines changed Original file line number Diff line number Diff line change
1
+ language : emacs-lisp
2
+ before_install :
3
+ - if [ "$EMACS" = 'emacs-snapshot' ]; then
4
+ sudo add-apt-repository -y ppa:cassou/emacs &&
5
+ sudo apt-get update -qq &&
6
+ sudo apt-get install -qq
7
+ emacs-snapshot-el emacs-snapshot-gtk emacs-snapshot;
8
+ fi
9
+ - if [ "$EMACS" = 'emacs24' ]; then
10
+ sudo add-apt-repository -y ppa:cassou/emacs &&
11
+ sudo apt-get update -qq &&
12
+ sudo apt-get install -qq
13
+ emacs24 emacs24-el emacs24-common-non-dfsg;
14
+ fi
15
+ - sudo apt-get install -qq patch
16
+ - sudo add-apt-repository -y ppa:ondrej/php5
17
+ - sudo apt-get update -qq
18
+ - sudo apt-get install -qq php5
19
+ - wget https://github.com/QafooLabs/php-refactoring-browser/releases/download/v0.0.4/refactor.phar
20
+ - chmod +x refactor.phar
21
+ - curl -fsSkL https://raw.github.com/cask/cask/master/go | python
22
+ - export PATH="/home/travis/build/keelerm84/php-refactor-mode.el/:/home/travis/.cask/bin:$PATH"
23
+ - cask
24
+ env :
25
+ - EMACS=emacs24 TAGS=""
26
+ script :
27
+ ./run-travis-ci.sh
Original file line number Diff line number Diff line change 1
- # php-refactor-mode
1
+ # php-refactor-mode [ ![ Build Status ] ( https://secure.travis-ci.org/keelerm84/php-refactor-mode.el.png )] ( http://travis-ci.org/keelerm84/php-refactor-mode.el )
2
2
3
3
This is a minor mode which provides convenient access to the refactoring
4
4
methods provided by
Original file line number Diff line number Diff line change
1
+ #! /bin/sh -e
2
+ cask exec ecukes " $@ "
Original file line number Diff line number Diff line change
1
+ #! /bin/sh -e
2
+
3
+ cd " $( dirname " $0 " ) "
4
+
5
+ ECUKES_EMACS=${EMACS:- $(which emacs)}
6
+ export ECUKES_EMACS
7
+
8
+ echo " *** Emacs version ***"
9
+ echo " ECUKES_EMACS = $ECUKES_EMACS "
10
+ " $ECUKES_EMACS " --version
11
+ echo
12
+
13
+ exec ./run-tests.sh $TAGS
You can’t perform that action at this time.
0 commit comments