-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
required Gemspec lines, etc. - pushing 1.0.0
- Loading branch information
1 parent
0d1ecb1
commit 19db7e9
Showing
4 changed files
with
17 additions
and
7 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 @@ | ||
*.gem |
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,8 @@ | ||
LineLength: | ||
Enabled: false | ||
|
||
Style/ClassAndModuleChildren: | ||
Enabled: false | ||
|
||
Documentation: | ||
Enabled: false |
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 |
---|---|---|
|
@@ -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 |
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,6 +1,6 @@ | ||
module Junos; end | ||
module Junos::Ez; end | ||
|
||
module Junos::Ez | ||
VERSION = "1.0.0" | ||
VERSION = '1.0.0'.freeze | ||
end |