winrm-elevated 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,33 +0,0 @@
1
- # encoding: UTF-8
2
- require 'date'
3
-
4
- version = File.read(File.expand_path('../VERSION', __FILE__)).strip
5
-
6
- Gem::Specification.new do |s|
7
- s.platform = Gem::Platform::RUBY
8
- s.name = 'winrm-elevated'
9
- s.version = version
10
- s.date = Date.today.to_s
11
-
12
- s.author = ['Shawn Neal']
13
- s.email = ['sneal@sneal.net']
14
- s.homepage = 'https://github.com/WinRb/winrm-elevated'
15
-
16
- s.summary = 'Ruby library for running commands as elevated'
17
- s.description = <<-EOF
18
- Ruby library for running commands via WinRM as elevated through a scheduled task
19
- EOF
20
- s.license = 'Apache-2.0'
21
-
22
- s.files = `git ls-files`.split(/\n/)
23
- s.require_path = 'lib'
24
- s.rdoc_options = %w(-x test/ -x examples/)
25
- s.extra_rdoc_files = %w(README.md LICENSE)
26
-
27
- s.required_ruby_version = '>= 1.9.0'
28
- s.add_runtime_dependency 'winrm', '~> 2.0'
29
- s.add_runtime_dependency 'winrm-fs', '~> 1.0'
30
- s.add_development_dependency 'rspec', '~> 3.2'
31
- s.add_development_dependency 'rake', '~> 10.3'
32
- s.add_development_dependency 'rubocop', '~> 0.28'
33
- end