Merge branch 'NiR--1.1.x' into 1.1.x

This commit is contained in:
Andre Nathan 2014-06-10 15:56:59 -03:00
commit be2102ac82
3 changed files with 17 additions and 3 deletions

View file

@ -5,12 +5,11 @@ rvm:
- 2.1.0 - 2.1.0
branches: branches:
only: only:
- master - 1.1.x
before_install: before_install:
- sudo apt-get update -y - sudo apt-get update -y
- sudo apt-get install -y python-software-properties - sudo apt-get install -y python-software-properties
- sudo add-apt-repository -y ppa:ubuntu-lxc/daily
- sudo apt-get update -y - sudo apt-get update -y
- sudo apt-get install -y liblxc0 lxc lxc-dbg lxc-dev lxc-templates lxc-tests lxctl python3-lxc - sudo apt-get install -y liblxc0
script: script:
- bundle exec rake clean package - bundle exec rake clean package

View file

@ -440,6 +440,15 @@ container_running_p(VALUE self)
* container.state * container.state
* *
* Returns a symbol representing the state of the container. * Returns a symbol representing the state of the container.
*
* * +:stopped+
* * +:starting+
* * +:running+
* * +:stopping+
* * +:aborting+
* * +:freezing+
* * +:frozen+
* * +:thawed+
*/ */
static VALUE static VALUE
container_state(VALUE self) container_state(VALUE self)
@ -1277,6 +1286,10 @@ container_config_path(VALUE self)
* container.keys(key) * container.keys(key)
* *
* Returns a list of valid sub-keys for the given configuration key. * Returns a list of valid sub-keys for the given configuration key.
*
* Keys can be in the format 'lxc.network.<idx>', (eg. 'lxc.network.0',
* 'lxc.network.1'). The result shows which keys are valid according to
* type of network interface.
*/ */
static VALUE static VALUE
container_keys(VALUE self, VALUE rb_key) container_keys(VALUE self, VALUE rb_key)

View file

@ -13,6 +13,8 @@ Gem::Specification.new do |s|
s.extensions = 'ext/lxc/extconf.rb' s.extensions = 'ext/lxc/extconf.rb'
s.has_rdoc = true s.has_rdoc = true
s.add_development_dependency "rdoc"
s.add_development_dependency "rdoc-data"
s.add_development_dependency "rake-compiler" s.add_development_dependency "rake-compiler"
s.homepage = 'https://github.com/lxc/ruby-lxc' s.homepage = 'https://github.com/lxc/ruby-lxc'