amqp 0.7.1 → 0.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,25 +0,0 @@
1
- #!/bin/bash
2
-
3
- echo -e "\n\n==== Setup ===="
4
- source /etc/profile
5
- git fetch && git reset origin/master --hard
6
-
7
- # FIXME: Jenkins user doesn't have permissions to run it.
8
- # PATH=/usr/sbin:$PATH ./bin/set_test_suite_realms_up.sh
9
- echo "~ NOT running ./bin/set_test_suite_realms_up.sh"
10
-
11
- echo -e "\n\n==== Ruby 1.9.2 Head ===="
12
- rvm use 1.9.2-head@ruby-amqp
13
- gem install bundler --no-ri --no-rdoc
14
- bundle install --local; echo
15
- bundle exec rspec spec
16
- return_status=$?
17
-
18
- echo -e "\n\n==== Ruby 1.8.7 ===="
19
- rvm use 1.8.7@ruby-amqp
20
- gem install bundler --no-ri --no-rdoc
21
- bundle install --local; echo
22
- bundle exec rspec spec
23
- return_status=$(expr $return_status + $?)
24
-
25
- test $return_status -eq 0