diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c111b33 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.gem diff --git a/.rubocop.yml b/.rubocop.yml new file mode 100644 index 0000000..f921974 --- /dev/null +++ b/.rubocop.yml @@ -0,0 +1,8 @@ +LineLength: + Enabled: false + +Style/ClassAndModuleChildren: + Enabled: false + +Documentation: + Enabled: false diff --git a/junos-ez-stdlib.gemspec b/junos-ez-stdlib.gemspec index 8515eea..e5a264f 100644 --- a/junos-ez-stdlib.gemspec +++ b/junos-ez-stdlib.gemspec @@ -5,11 +5,12 @@ require 'junos-ez/version' Gem::Specification.new do |s| s.name = 'junos-ez-stdlib' s.version = Junos::Ez::VERSION - s.summary = "Junos EZ Framework - Standard Libraries" - s.description = "Automation Framework for Junos/NETCONF: Facts, Providers, and Utils" + s.summary = 'Junos EZ Framework - Standard Libraries' + s.description = 'Automation Framework for Junos/NETCONF: Facts, Providers, and Utils' s.homepage = 'https://github.com/Juniper/ruby-junos-ez-stdlib' - s.authors = ["Jeremy Schulman", "John Deatherage", "Nitin Kumar", "Priyal Jain", "Ganesh Nalawade"] + s.license = 'BSD-2-Clause' + s.authors = ['Jeremy Schulman', 'John Deatherage', 'Nitin Kumar', 'Priyal Jain', 'Ganesh Nalawade'] s.email = 'jnpr-community-netdev@juniper.net' - s.files = FileList[ '*', 'lib/**/*.rb', 'examples/**/*.rb', 'docs/**/*.md' ] - s.add_dependency('netconf', ">= 0.2.5") + s.files = FileList['*', 'lib/**/*.rb', 'examples/**/*.rb', 'docs/**/*.md'] + s.add_dependency('netconf', '>= 0.2.5') end diff --git a/lib/junos-ez/version.rb b/lib/junos-ez/version.rb index f82ca42..24d6c6b 100644 --- a/lib/junos-ez/version.rb +++ b/lib/junos-ez/version.rb @@ -1,6 +1,6 @@ module Junos; end module Junos::Ez; end - + module Junos::Ez - VERSION = "1.0.0" + VERSION = '1.0.0'.freeze end