Please review pull request #152: (New Feature) Added basic integration with Travis CI service opened by (kavu)

Description:

Added basic config for Travis CI service, including 4 basic
platforms: Ruby 1.8.7, Ruby 1.9.2, Ruby 1.9.3 and Ruby
Enterprise Edition and experimental Ruby 2.0.0dev (ruby-head).

  • Opened: Sat Jan 21 22:26:15 UTC 2012
  • Based on: puppetlabs:master (19090296cfe0d08088c27d13710934baaf499a0e)
  • Requested merge: kavu:new_feature/master/travis-ci_integration (a437dd04517b125122b8e45d9c1e7aedf0481f05)

Diff follows:

diff --git a/.rspec b/.rspec
index 53607ea..616c433 100644
--- a/.rspec
+++ b/.rspec
@@ -1 +1,2 @@
 --colour
+--backtrace
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..ad145a1
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,11 @@
+language: ruby
+rvm:
+  - 1.8.7
+  - 1.9.2
+  - 1.9.3
+  - ree
+  - ruby-head
+branches:
+  only:
+    - master
+script: bundle exec rspec spec
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..edc8e71
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,8 @@
+source "http://rubygems.org"
+
+group :development, :test do
+  gem "rspec", "~> 2.8.0"
+  gem "mocha"
+  gem "rcov", :platform => [:mri_18]
+  gem "watchr"
+end
diff --git a/Gemfile.lock b/Gemfile.lock
new file mode 100644
index 0000000..42c0606
--- /dev/null
+++ b/Gemfile.lock
@@ -0,0 +1,26 @@
+GEM
+  remote: http://rubygems.org/
+  specs:
+    diff-lcs (1.1.3)
+    metaclass (0.0.1)
+    mocha (0.10.3)
+      metaclass (~> 0.0.1)
+    rcov (1.0.0)
+    rspec (2.8.0)
+      rspec-core (~> 2.8.0)
+      rspec-expectations (~> 2.8.0)
+      rspec-mocks (~> 2.8.0)
+    rspec-core (2.8.0)
+    rspec-expectations (2.8.0)
+      diff-lcs (~> 1.1.2)
+    rspec-mocks (2.8.0)
+    watchr (0.7)
+
+PLATFORMS
+  ruby
+
+DEPENDENCIES
+  mocha
+  rcov
+  rspec (~> 2.8.0)
+  watchr

    

--
You received this message because you are subscribed to the Google Groups "Puppet Developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to [email protected].
For more options, visit this group at http://groups.google.com/group/puppet-dev?hl=en.

Reply via email to