-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.nuspec.erb
27 lines (27 loc) · 1.26 KB
/
project.nuspec.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id><%= configatron.package_name %></id>
<version>@configatron.version_simple@</version>
<title>@configatron.package_name@</title>
<authors>Develop With Passion®</authors>
<owners>Develop With Passion®</owners>
<summary>Context/Specification framework</summary>
<description>Testing Extensions</description>
<language>en-US</language>
<projectUrl>http://github.com/developwithp/developwithpassion.specifications</projectUrl>
<licenseUrl>http://github.com/developwithpassion/developwithpassion.specifications/blob/master/License.txt</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>http://github.com/developwithpassion/developwithpassion.specifications/raw/master/misc/developwithpassion.specifications.png</iconUrl>
<tags>test unit testing context specification bdd tdd</tags>
@configatron.package_dependencies@
</metadata>
<files>
<% configatron.package_file_list.each do|file| %>
<file src="<%=file %>" target="lib" />
<% end %>
<% configatron.core_files.each do|file| %>
<file src="<%=file %>" target="lib" />
<% end %>
</files>
</package>