-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
got from pre-release FUEL 36f30ae7f19092a61eebb0522ca20d27468b4cbf has minimum modifications
- Loading branch information
Sergey Vasilenko
committed
Apr 18, 2015
1 parent
e5ed7aa
commit 7f45b99
Showing
113 changed files
with
8,428 additions
and
1,410 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
fixtures: | ||
repositories: | ||
'stdlib': 'git://github.com/puppetlabs/puppetlabs-stdlib.git' | ||
'filemapper': 'git://github.com/adrienthebo/puppet-filemapper.git' | ||
'sysctl': 'git://github.com/duritong/puppet-sysctl.git' | ||
symlinks: | ||
'l23network': "#{source_dir}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
#source :rubygems | ||
source 'https://rubygems.org' | ||
|
||
gem 'rake' | ||
gem 'puppet-lint' | ||
gem 'rspec' | ||
gem 'rspec-puppet' | ||
group :development, :test do | ||
gem 'rake', :require => false | ||
gem 'rspec', '<=2.99', :require => false | ||
gem 'rspec-puppet', :require => false | ||
gem 'puppetlabs_spec_helper', :require => false | ||
gem 'puppet-lint', :require => false | ||
end | ||
|
||
## Will come in handy later on. But you could just use | ||
# gem 'puppet' | ||
puppetversion = ENV.key?('PUPPET_VERSION') ? "~> #{ENV['PUPPET_VERSION']}" : ['>= 2.7'] | ||
gem 'puppet', puppetversion | ||
gem 'puppetlabs_spec_helper' | ||
if puppetversion = ENV['PUPPET_GEM_VERSION'] | ||
gem 'puppet', puppetversion, :require => false | ||
else | ||
gem 'puppet', :require => false | ||
end | ||
|
||
# vim:ft=ruby |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
name 'Mirantis-l23network' | ||
name 'L23network' | ||
|
Oops, something went wrong.