Commit 77e34dc1 authored by Greg Williams's avatar Greg Williams
Browse files

Merge branch 'feature/noop-command' into develop

parents ed42f7e8 ee618f01
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -24,3 +24,4 @@

bin/
build/
.tags*
+0 −3
Original line number Diff line number Diff line
[submodule "vendor/ceedling"]
	path = vendor/ceedling
	url = https://github.com/ThrowTheSwitch/Ceedling.git
[submodule "vendor/protobuf-c"]
	path = vendor/protobuf-c
	url = https://github.com/protobuf-c/protobuf-c

.travis.yml

0 → 100644
+10 −0
Original line number Diff line number Diff line
language: ruby
rvm:
  - "1.9.3"
  - "2.0.0"
install:
  - sudo apt-get update
  - sudo apt-get install cppcheck
  - bundle install
script:
  - bundle exec rake ci
+2 −7
Original line number Diff line number Diff line
source "http://rubygems.org/"

gem "bundler", ">= 1.3.5"
gem "rake", ">= 0.9.2.2"

gem "require_all"
gem "constructor"
gem "diy"
gem 'bundler', '>= 1.3.5'
gem 'ceedling', '>= 0.15'
+5 −8
Original line number Diff line number Diff line
GEM
  remote: http://rubygems.org/
  specs:
    constructor (2.0.0)
    diy (1.1.2)
      constructor (>= 1.0.0)
    ceedling (0.15.1)
      rake (>= 0.8.7)
      thor (>= 0.14.5)
    rake (10.3.2)
    require_all (1.3.2)
    thor (0.19.1)

PLATFORMS
  ruby

DEPENDENCIES
  bundler (>= 1.3.5)
  constructor
  diy
  rake (>= 0.9.2.2)
  require_all
  ceedling (>= 0.15)
Loading