Class: Setup

Inherits:
Array show all
Defined in:
lib/setup.rb

Instance Method Summary collapse

Methods inherited from Array

#add, #execute, #to_html

Instance Method Details

#updateObject



2
3
4
5
6
7
8
# File 'lib/setup.rb', line 2

def update
  add 'bundle install' if(File.exists?('Gemfile'))

  Dir.glob('*.gemspec').each{|gemspec_file|
    add "<%Gemspec.update('#{gemspec_file}')%>"
  }
end