Skip to content

Commit

Permalink
required Gemspec lines, etc. - pushing 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
routelastresort committed Aug 2, 2016
1 parent 0d1ecb1 commit 19db7e9
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.gem
8 changes: 8 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
LineLength:
Enabled: false

Style/ClassAndModuleChildren:
Enabled: false

Documentation:
Enabled: false
11 changes: 6 additions & 5 deletions junos-ez-stdlib.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '[email protected]'
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
4 changes: 2 additions & 2 deletions lib/junos-ez/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Junos; end
module Junos::Ez; end

module Junos::Ez
VERSION = "1.0.0"
VERSION = '1.0.0'.freeze
end

0 comments on commit 19db7e9

Please sign in to comment.