nuget_helper 0.0.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.
- checksums.yaml +7 -0
- data/.gitattributes +63 -0
- data/.gitignore +14 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/LICENSE.txt +22 -0
- data/README.md +31 -0
- data/Rakefile +2 -0
- data/lib/nuget_helper.rb +53 -0
- data/lib/nuget_helper/version.rb +3 -0
- data/nuget_helper.gemspec +24 -0
- data/spec/Vs2013Solution/.gitignore +10 -0
- data/spec/Vs2013Solution/.nuget/packages.config +5 -0
- data/spec/Vs2013Solution/ClassLibraryWithDependency/ClassLibraryWithDependency.csproj +59 -0
- data/spec/Vs2013Solution/ClassLibraryWithDependency/Properties/AssemblyInfo.cs +36 -0
- data/spec/Vs2013Solution/ClassLibraryWithDependency/packages.config +4 -0
- data/spec/Vs2013Solution/Vs2013Solution.sln +27 -0
- data/spec/nuget_exec_spec.rb +34 -0
- data/spec/spec_helper.rb +1 -0
- metadata +126 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 9c410dd8beda5fe166e5cb2ea67eafc61ad5fa84
|
4
|
+
data.tar.gz: b0447b6cff311952e5bf625cc29e263ba51fc0fb
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 916ec3738ff1223a5e9f4413be410040605141974128bc7bd143283ff828fb922ce641da481d1aae1cd102750f7712e9350255207cd29f8f9c22690374592da8
|
7
|
+
data.tar.gz: 9dbfddd81af42e49ee3c8ad34de760c6d4078fdbb264edc4795837ab866f3c017db8b277f2f0ba46246ac0ef5a5506bab9f8866612172b14fa0fadc3437a5b29
|
data/.gitattributes
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
###############################################################################
|
2
|
+
# Set default behavior to automatically normalize line endings.
|
3
|
+
###############################################################################
|
4
|
+
* text=auto
|
5
|
+
|
6
|
+
###############################################################################
|
7
|
+
# Set default behavior for command prompt diff.
|
8
|
+
#
|
9
|
+
# This is need for earlier builds of msysgit that does not have it on by
|
10
|
+
# default for csharp files.
|
11
|
+
# Note: This is only used by command line
|
12
|
+
###############################################################################
|
13
|
+
#*.cs diff=csharp
|
14
|
+
|
15
|
+
###############################################################################
|
16
|
+
# Set the merge driver for project and solution files
|
17
|
+
#
|
18
|
+
# Merging from the command prompt will add diff markers to the files if there
|
19
|
+
# are conflicts (Merging from VS is not affected by the settings below, in VS
|
20
|
+
# the diff markers are never inserted). Diff markers may cause the following
|
21
|
+
# file extensions to fail to load in VS. An alternative would be to treat
|
22
|
+
# these files as binary and thus will always conflict and require user
|
23
|
+
# intervention with every merge. To do so, just uncomment the entries below
|
24
|
+
###############################################################################
|
25
|
+
#*.sln merge=binary
|
26
|
+
#*.csproj merge=binary
|
27
|
+
#*.vbproj merge=binary
|
28
|
+
#*.vcxproj merge=binary
|
29
|
+
#*.vcproj merge=binary
|
30
|
+
#*.dbproj merge=binary
|
31
|
+
#*.fsproj merge=binary
|
32
|
+
#*.lsproj merge=binary
|
33
|
+
#*.wixproj merge=binary
|
34
|
+
#*.modelproj merge=binary
|
35
|
+
#*.sqlproj merge=binary
|
36
|
+
#*.wwaproj merge=binary
|
37
|
+
|
38
|
+
###############################################################################
|
39
|
+
# behavior for image files
|
40
|
+
#
|
41
|
+
# image files are treated as binary by default.
|
42
|
+
###############################################################################
|
43
|
+
#*.jpg binary
|
44
|
+
#*.png binary
|
45
|
+
#*.gif binary
|
46
|
+
|
47
|
+
###############################################################################
|
48
|
+
# diff behavior for common document formats
|
49
|
+
#
|
50
|
+
# Convert binary document formats to text before diffing them. This feature
|
51
|
+
# is only available from the command line. Turn it on by uncommenting the
|
52
|
+
# entries below.
|
53
|
+
###############################################################################
|
54
|
+
#*.doc diff=astextplain
|
55
|
+
#*.DOC diff=astextplain
|
56
|
+
#*.docx diff=astextplain
|
57
|
+
#*.DOCX diff=astextplain
|
58
|
+
#*.dot diff=astextplain
|
59
|
+
#*.DOT diff=astextplain
|
60
|
+
#*.pdf diff=astextplain
|
61
|
+
#*.PDF diff=astextplain
|
62
|
+
#*.rtf diff=astextplain
|
63
|
+
#*.RTF diff=astextplain
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 Oskar Gewalli
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
22
|
+
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 Oskar Gewalli
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# NugetHelper
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'nuget_helper'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install nuget_helper
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
TODO: Write usage instructions here
|
24
|
+
|
25
|
+
## Contributing
|
26
|
+
|
27
|
+
1. Fork it ( https://github.com/[my-github-username]/nuget_helper/fork )
|
28
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
29
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
30
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
31
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
data/lib/nuget_helper.rb
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
require "nuget_helper/version"
|
2
|
+
|
3
|
+
module NugetHelper
|
4
|
+
def self.os
|
5
|
+
@os ||= (
|
6
|
+
host_os = RbConfig::CONFIG['host_os']
|
7
|
+
case host_os
|
8
|
+
when /mswin|msys|mingw|cygwin|bccwin|wince|emc/
|
9
|
+
:windows
|
10
|
+
when /darwin|mac os/
|
11
|
+
:macosx
|
12
|
+
when /linux/
|
13
|
+
:linux
|
14
|
+
when /solaris|bsd/
|
15
|
+
:unix
|
16
|
+
else
|
17
|
+
raise "unknown os: #{host_os.inspect}"
|
18
|
+
end
|
19
|
+
)
|
20
|
+
end
|
21
|
+
|
22
|
+
def self.exec(parameters)
|
23
|
+
spec = Gem::Specification.find_by_name("nuget")
|
24
|
+
command = File.join(spec.gem_dir, "bin", "nuget.exe")
|
25
|
+
self.run_tool(command, parameters)
|
26
|
+
end
|
27
|
+
|
28
|
+
def self.command_path(library, exe)
|
29
|
+
cmds = Dir.glob(File.join("**","packages","#{library}.*","tools",exe))
|
30
|
+
if cmds.any?
|
31
|
+
command = cmds.first
|
32
|
+
else
|
33
|
+
raise "Could not find #{exe} at the packages/#{library}.*/tools/ path!"
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
def self.nunit_path
|
38
|
+
self.command_path('NUnit.Runners', 'nunit-console.exe')
|
39
|
+
end
|
40
|
+
|
41
|
+
def self.xunit_path
|
42
|
+
self.command_path('xunit.runners', 'xunit.console.clr4.exe')
|
43
|
+
end
|
44
|
+
|
45
|
+
def self.run_tool(command, parameters=nil)
|
46
|
+
parameters = '' if parameters.nil?
|
47
|
+
if self.os == :windows
|
48
|
+
system "#{command} #{parameters}"
|
49
|
+
else
|
50
|
+
system "mono --runtime=v4.0.30319 #{command} #{parameters} "
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'nuget_helper/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "nuget_helper"
|
8
|
+
spec.version = NugetHelper::VERSION
|
9
|
+
spec.authors = ["Oskar Gewalli"]
|
10
|
+
spec.email = ["gewalli@gmail.com"]
|
11
|
+
spec.summary = %q{Helper Gem to simplify work with nuget.}
|
12
|
+
spec.homepage = ""
|
13
|
+
spec.license = "MIT"
|
14
|
+
|
15
|
+
spec.files = `git ls-files -z`.split("\x0")
|
16
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
17
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
18
|
+
spec.require_paths = ["lib"]
|
19
|
+
|
20
|
+
spec.add_development_dependency "bundler", "~> 1.7"
|
21
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
22
|
+
spec.add_development_dependency 'rspec', '>= 3.2'
|
23
|
+
spec.add_dependency "nuget", '~> 2.8.50126.400'
|
24
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
4
|
+
<PropertyGroup>
|
5
|
+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
6
|
+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
7
|
+
<ProjectGuid>{23FEB2A0-EB44-403B-996C-D06F74767EEC}</ProjectGuid>
|
8
|
+
<OutputType>Library</OutputType>
|
9
|
+
<AppDesignerFolder>Properties</AppDesignerFolder>
|
10
|
+
<RootNamespace>ClassLibraryWithDependency</RootNamespace>
|
11
|
+
<AssemblyName>ClassLibraryWithDependency</AssemblyName>
|
12
|
+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
13
|
+
<FileAlignment>512</FileAlignment>
|
14
|
+
</PropertyGroup>
|
15
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
16
|
+
<DebugSymbols>true</DebugSymbols>
|
17
|
+
<DebugType>full</DebugType>
|
18
|
+
<Optimize>false</Optimize>
|
19
|
+
<OutputPath>bin\Debug\</OutputPath>
|
20
|
+
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
21
|
+
<ErrorReport>prompt</ErrorReport>
|
22
|
+
<WarningLevel>4</WarningLevel>
|
23
|
+
</PropertyGroup>
|
24
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
25
|
+
<DebugType>pdbonly</DebugType>
|
26
|
+
<Optimize>true</Optimize>
|
27
|
+
<OutputPath>bin\Release\</OutputPath>
|
28
|
+
<DefineConstants>TRACE</DefineConstants>
|
29
|
+
<ErrorReport>prompt</ErrorReport>
|
30
|
+
<WarningLevel>4</WarningLevel>
|
31
|
+
</PropertyGroup>
|
32
|
+
<ItemGroup>
|
33
|
+
<Reference Include="nunit.framework, Version=2.6.4.14350, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
|
34
|
+
<SpecificVersion>False</SpecificVersion>
|
35
|
+
<HintPath>..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
|
36
|
+
</Reference>
|
37
|
+
<Reference Include="System" />
|
38
|
+
<Reference Include="System.Core" />
|
39
|
+
<Reference Include="System.Xml.Linq" />
|
40
|
+
<Reference Include="System.Data.DataSetExtensions" />
|
41
|
+
<Reference Include="Microsoft.CSharp" />
|
42
|
+
<Reference Include="System.Data" />
|
43
|
+
<Reference Include="System.Xml" />
|
44
|
+
</ItemGroup>
|
45
|
+
<ItemGroup>
|
46
|
+
<Compile Include="Properties\AssemblyInfo.cs" />
|
47
|
+
</ItemGroup>
|
48
|
+
<ItemGroup>
|
49
|
+
<None Include="packages.config" />
|
50
|
+
</ItemGroup>
|
51
|
+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
52
|
+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
53
|
+
Other similar extension points exist, see Microsoft.Common.targets.
|
54
|
+
<Target Name="BeforeBuild">
|
55
|
+
</Target>
|
56
|
+
<Target Name="AfterBuild">
|
57
|
+
</Target>
|
58
|
+
-->
|
59
|
+
</Project>
|
@@ -0,0 +1,36 @@
|
|
1
|
+
using System.Reflection;
|
2
|
+
using System.Runtime.CompilerServices;
|
3
|
+
using System.Runtime.InteropServices;
|
4
|
+
|
5
|
+
// General Information about an assembly is controlled through the following
|
6
|
+
// set of attributes. Change these attribute values to modify the information
|
7
|
+
// associated with an assembly.
|
8
|
+
[assembly: AssemblyTitle("ClassLibraryWithDependency")]
|
9
|
+
[assembly: AssemblyDescription("")]
|
10
|
+
[assembly: AssemblyConfiguration("")]
|
11
|
+
[assembly: AssemblyCompany("")]
|
12
|
+
[assembly: AssemblyProduct("ClassLibraryWithDependency")]
|
13
|
+
[assembly: AssemblyCopyright("Copyright © 2015")]
|
14
|
+
[assembly: AssemblyTrademark("")]
|
15
|
+
[assembly: AssemblyCulture("")]
|
16
|
+
|
17
|
+
// Setting ComVisible to false makes the types in this assembly not visible
|
18
|
+
// to COM components. If you need to access a type in this assembly from
|
19
|
+
// COM, set the ComVisible attribute to true on that type.
|
20
|
+
[assembly: ComVisible(false)]
|
21
|
+
|
22
|
+
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
23
|
+
[assembly: Guid("e440fead-ff68-407c-a76c-897c74f4299b")]
|
24
|
+
|
25
|
+
// Version information for an assembly consists of the following four values:
|
26
|
+
//
|
27
|
+
// Major Version
|
28
|
+
// Minor Version
|
29
|
+
// Build Number
|
30
|
+
// Revision
|
31
|
+
//
|
32
|
+
// You can specify all the values or you can default the Build and Revision Numbers
|
33
|
+
// by using the '*' as shown below:
|
34
|
+
// [assembly: AssemblyVersion("1.0.*")]
|
35
|
+
[assembly: AssemblyVersion("1.0.0.0")]
|
36
|
+
[assembly: AssemblyFileVersion("1.0.0.0")]
|
@@ -0,0 +1,27 @@
|
|
1
|
+
|
2
|
+
Microsoft Visual Studio Solution File, Format Version 12.00
|
3
|
+
# Visual Studio 2013
|
4
|
+
VisualStudioVersion = 12.0.31101.0
|
5
|
+
MinimumVisualStudioVersion = 10.0.40219.1
|
6
|
+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassLibraryWithDependency", "ClassLibraryWithDependency\ClassLibraryWithDependency.csproj", "{23FEB2A0-EB44-403B-996C-D06F74767EEC}"
|
7
|
+
EndProject
|
8
|
+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{B6617D84-7072-4F54-A40E-AA10059BDA9C}"
|
9
|
+
ProjectSection(SolutionItems) = preProject
|
10
|
+
.nuget\packages.config = .nuget\packages.config
|
11
|
+
EndProjectSection
|
12
|
+
EndProject
|
13
|
+
Global
|
14
|
+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
15
|
+
Debug|Any CPU = Debug|Any CPU
|
16
|
+
Release|Any CPU = Release|Any CPU
|
17
|
+
EndGlobalSection
|
18
|
+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
19
|
+
{23FEB2A0-EB44-403B-996C-D06F74767EEC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
20
|
+
{23FEB2A0-EB44-403B-996C-D06F74767EEC}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
21
|
+
{23FEB2A0-EB44-403B-996C-D06F74767EEC}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
22
|
+
{23FEB2A0-EB44-403B-996C-D06F74767EEC}.Release|Any CPU.Build.0 = Release|Any CPU
|
23
|
+
EndGlobalSection
|
24
|
+
GlobalSection(SolutionProperties) = preSolution
|
25
|
+
HideSolutionNode = FALSE
|
26
|
+
EndGlobalSection
|
27
|
+
EndGlobal
|
@@ -0,0 +1,34 @@
|
|
1
|
+
require_relative 'spec_helper'
|
2
|
+
$vs_2013_solution = File.join(File.dirname(__FILE__), "Vs2013Solution", "Vs2013Solution.sln")
|
3
|
+
|
4
|
+
describe NugetHelper do
|
5
|
+
describe "execute system nuget" do
|
6
|
+
it "can restore packages" do
|
7
|
+
NugetHelper.exec("restore #{$vs_2013_solution}")
|
8
|
+
end
|
9
|
+
|
10
|
+
describe "with restored packages" do
|
11
|
+
before(:all) do
|
12
|
+
NugetHelper.exec("restore #{$vs_2013_solution}")
|
13
|
+
end
|
14
|
+
|
15
|
+
it "can run nunit runner" do
|
16
|
+
cmd = NugetHelper.nunit_path
|
17
|
+
help = NugetHelper.os != :windows ? "-help" : "/help"
|
18
|
+
NugetHelper.run_tool cmd, help
|
19
|
+
expect($?.success?).to be true
|
20
|
+
end
|
21
|
+
|
22
|
+
it "can run xunit runner" do
|
23
|
+
cmd = NugetHelper.xunit_path
|
24
|
+
c = NugetHelper.run_tool cmd
|
25
|
+
expect(c).to be false
|
26
|
+
if NugetHelper.os != :windows
|
27
|
+
expect($?.exitstatus).to be 255
|
28
|
+
else
|
29
|
+
expect($?.exitstatus).to be nil
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require_relative '../lib/nuget_helper'
|
metadata
ADDED
@@ -0,0 +1,126 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: nuget_helper
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Oskar Gewalli
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-03-14 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.7'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.2'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.2'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: nuget
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 2.8.50126.400
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 2.8.50126.400
|
69
|
+
description:
|
70
|
+
email:
|
71
|
+
- gewalli@gmail.com
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".gitattributes"
|
77
|
+
- ".gitignore"
|
78
|
+
- Gemfile
|
79
|
+
- LICENSE
|
80
|
+
- LICENSE.txt
|
81
|
+
- README.md
|
82
|
+
- Rakefile
|
83
|
+
- lib/nuget_helper.rb
|
84
|
+
- lib/nuget_helper/version.rb
|
85
|
+
- nuget_helper.gemspec
|
86
|
+
- spec/Vs2013Solution/.gitignore
|
87
|
+
- spec/Vs2013Solution/.nuget/packages.config
|
88
|
+
- spec/Vs2013Solution/ClassLibraryWithDependency/ClassLibraryWithDependency.csproj
|
89
|
+
- spec/Vs2013Solution/ClassLibraryWithDependency/Properties/AssemblyInfo.cs
|
90
|
+
- spec/Vs2013Solution/ClassLibraryWithDependency/packages.config
|
91
|
+
- spec/Vs2013Solution/Vs2013Solution.sln
|
92
|
+
- spec/nuget_exec_spec.rb
|
93
|
+
- spec/spec_helper.rb
|
94
|
+
homepage: ''
|
95
|
+
licenses:
|
96
|
+
- MIT
|
97
|
+
metadata: {}
|
98
|
+
post_install_message:
|
99
|
+
rdoc_options: []
|
100
|
+
require_paths:
|
101
|
+
- lib
|
102
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - ">="
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: '0'
|
107
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - ">="
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '0'
|
112
|
+
requirements: []
|
113
|
+
rubyforge_project:
|
114
|
+
rubygems_version: 2.4.5
|
115
|
+
signing_key:
|
116
|
+
specification_version: 4
|
117
|
+
summary: Helper Gem to simplify work with nuget.
|
118
|
+
test_files:
|
119
|
+
- spec/Vs2013Solution/.gitignore
|
120
|
+
- spec/Vs2013Solution/.nuget/packages.config
|
121
|
+
- spec/Vs2013Solution/ClassLibraryWithDependency/ClassLibraryWithDependency.csproj
|
122
|
+
- spec/Vs2013Solution/ClassLibraryWithDependency/Properties/AssemblyInfo.cs
|
123
|
+
- spec/Vs2013Solution/ClassLibraryWithDependency/packages.config
|
124
|
+
- spec/Vs2013Solution/Vs2013Solution.sln
|
125
|
+
- spec/nuget_exec_spec.rb
|
126
|
+
- spec/spec_helper.rb
|