Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(RFC) native types and providers #382

Merged
merged 30 commits into from
Oct 5, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
4757ee1
add user_update() & user_info_all() methods to puppet_helper
May 6, 2015
c3b24f9
add get_{security_realm,authorization_strategy}(), & set_jenkins_inst…
May 6, 2015
2ffbca6
add pry-byebug gem to :development group
Apr 23, 2015
1bd9b87
add :retires feature
Apr 28, 2015
b6b4587
add forward declaration of PuppetX::Jenkins::{Type,Provider} namespaces
May 7, 2015
4e2a4da
add jenkins::cli::config class
May 7, 2015
1c221d1
add PuppetX::Jenkins::Config class
May 5, 2015
3a53044
add PuppetX::Jenkins::Provider::Cli
May 7, 2015
a236a1e
add PuppetX::Jenkins::Type::Cli::newtype
May 7, 2015
306f6ca
add jenkins_user type
May 7, 2015
a6e2a50
add cli provider for jenkins_user type
May 7, 2015
2294403
add jenkins_security_realm type
May 7, 2015
d3c4c54
add cli provider for jenkins_security_realm type
May 7, 2015
539b573
add jenkins_authorization_strategy type
May 7, 2015
c0eae1a
add cli provider for jenkins_authorization_strategy type
May 7, 2015
33e1921
add PuppetX::Jenkins::Util module
May 8, 2015
57a8d25
add debugging to PuppetX::Jenkins::Config
jhoblitt Sep 18, 2015
83f4cb6
add jenkins_num_executors type
jhoblitt Sep 21, 2015
56120dd
add cli provider for jenkins_num_executors type
jhoblitt Sep 21, 2015
df0b12c
add credentials_{list_json,update_json,delete_id}() methods to puppet…
jhoblitt Oct 2, 2015
9fe2dce
add jenkins_credentials type
jhoblitt Oct 2, 2015
cf9bff3
add jenkins_slaveagent_port type
jhoblitt Sep 29, 2015
5007275
add cli provider for jenkins_slaveagent_port type
jhoblitt Sep 29, 2015
b9e17b7
add cli provider for jenkins_credentials type
jhoblitt Sep 30, 2015
53dcce5
add jenkins_job type
jhoblitt Sep 30, 2015
38599bc
add job_enabled() method to puppet_helper
jhoblitt Oct 1, 2015
bdac1f8
add cli provider for jenkins_job type
jhoblitt Oct 1, 2015
81cdcc3
add cli provider for jenkins_job type
jhoblitt Oct 2, 2015
3675de3
add jenkins_user type
jhoblitt Oct 2, 2015
68697a7
add NATIVE_TYPES_AND_PROVIDERS overview notes
jhoblitt Oct 2, 2015
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ gem 'puppet-syntax', '>= 1.1.0'
gem 'json'
gem 'puppet', ENV['PUPPET_VERSION'] || '~> 3.5'
gem 'metadata-json-lint'
gem 'retries', '~> 0.0.5'

group :development do
gem 'simplecov'
Expand All @@ -17,6 +18,8 @@ group :development do
gem 'debugger', :platform => :mri_19
gem 'debugger-pry', :platform => :mri_19
gem 'byebug', :platform => [:mri_20, :mri_21]
gem 'pry'
gem 'pry-byebug'
end

group :system_tests do
Expand Down
Loading