physique 0.3.3 → 0.3.4
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 +8 -8
- data/.gitignore +205 -1
- data/Gemfile.lock +1 -1
- data/lib/physique/task_builders/fluent_migrator.rb +3 -4
- data/lib/physique/task_builders/test.rb +48 -8
- data/lib/physique/tasks/sqlcmd.rb +1 -1
- data/lib/physique/version.rb +1 -1
- data/spec/sqlcmd_spec.rb +4 -4
- data/spec/support/shared_contexts/rake.rb +21 -0
- data/spec/task_builders/build_spec.rb +25 -0
- data/spec/task_builders/default_spec.rb +17 -0
- data/spec/task_builders/nspec_spec.rb +13 -0
- data/spec/task_builders/nuget_spec.rb +16 -0
- data/spec/test_data/solutions/.nuget/NuGet.Config +6 -0
- data/spec/test_data/solutions/.nuget/NuGet.exe +0 -0
- data/spec/test_data/solutions/.nuget/NuGet.targets +144 -0
- data/spec/test_data/solutions/.nuget/packages.config +4 -0
- data/spec/test_data/solutions/basic/.semver +6 -0
- data/spec/test_data/solutions/basic/Basic/Basic.csproj +53 -0
- data/spec/test_data/solutions/basic/Basic/Class1.cs +12 -0
- data/spec/test_data/solutions/basic/Basic/Properties/AssemblyInfo.cs +36 -0
- data/spec/test_data/solutions/basic/Basic.Tests/Basic.Tests.csproj +59 -0
- data/spec/test_data/solutions/basic/Basic.Tests/Class1.cs +14 -0
- data/spec/test_data/solutions/basic/Basic.Tests/Properties/AssemblyInfo.cs +36 -0
- data/spec/test_data/solutions/basic/Basic.Tests/packages.config +4 -0
- data/spec/test_data/solutions/basic/Basic.sln +28 -0
- data/spec/test_data/solutions/basic/Rakefile.rb +10 -0
- data/spec/test_data/solutions/basic/packages.config +4 -0
- data/spec/test_data/solutions/nspec/.semver +6 -0
- data/spec/test_data/solutions/nspec/Basic/Basic.csproj +56 -0
- data/spec/test_data/solutions/nspec/Basic/Class1.cs +12 -0
- data/spec/test_data/solutions/nspec/Basic/Properties/AssemblyInfo.cs +36 -0
- data/spec/test_data/solutions/nspec/Basic/packages.config +3 -0
- data/spec/test_data/solutions/nspec/Basic.Specs/Basic.Specs.csproj +60 -0
- data/spec/test_data/solutions/nspec/Basic.Specs/Class1.cs +12 -0
- data/spec/test_data/solutions/nspec/Basic.Specs/DebuggerShim.cs +42 -0
- data/spec/test_data/solutions/nspec/Basic.Specs/Properties/AssemblyInfo.cs +36 -0
- data/spec/test_data/solutions/nspec/Basic.Specs/packages.config +4 -0
- data/spec/test_data/solutions/nspec/Basic.sln +28 -0
- data/spec/test_data/solutions/nspec/Rakefile.rb +14 -0
- metadata +66 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: physique
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Scaduto
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-02-
|
11
|
+
date: 2015-02-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -132,6 +132,38 @@ files:
|
|
132
132
|
- spec/publish_nugets_spec.rb
|
133
133
|
- spec/solution_spec.rb
|
134
134
|
- spec/sqlcmd_spec.rb
|
135
|
+
- spec/support/shared_contexts/rake.rb
|
136
|
+
- spec/task_builders/build_spec.rb
|
137
|
+
- spec/task_builders/default_spec.rb
|
138
|
+
- spec/task_builders/nspec_spec.rb
|
139
|
+
- spec/task_builders/nuget_spec.rb
|
140
|
+
- spec/test_data/solutions/.nuget/NuGet.Config
|
141
|
+
- spec/test_data/solutions/.nuget/NuGet.exe
|
142
|
+
- spec/test_data/solutions/.nuget/NuGet.targets
|
143
|
+
- spec/test_data/solutions/.nuget/packages.config
|
144
|
+
- spec/test_data/solutions/basic/.semver
|
145
|
+
- spec/test_data/solutions/basic/Basic.Tests/Basic.Tests.csproj
|
146
|
+
- spec/test_data/solutions/basic/Basic.Tests/Class1.cs
|
147
|
+
- spec/test_data/solutions/basic/Basic.Tests/Properties/AssemblyInfo.cs
|
148
|
+
- spec/test_data/solutions/basic/Basic.Tests/packages.config
|
149
|
+
- spec/test_data/solutions/basic/Basic.sln
|
150
|
+
- spec/test_data/solutions/basic/Basic/Basic.csproj
|
151
|
+
- spec/test_data/solutions/basic/Basic/Class1.cs
|
152
|
+
- spec/test_data/solutions/basic/Basic/Properties/AssemblyInfo.cs
|
153
|
+
- spec/test_data/solutions/basic/Rakefile.rb
|
154
|
+
- spec/test_data/solutions/basic/packages.config
|
155
|
+
- spec/test_data/solutions/nspec/.semver
|
156
|
+
- spec/test_data/solutions/nspec/Basic.Specs/Basic.Specs.csproj
|
157
|
+
- spec/test_data/solutions/nspec/Basic.Specs/Class1.cs
|
158
|
+
- spec/test_data/solutions/nspec/Basic.Specs/DebuggerShim.cs
|
159
|
+
- spec/test_data/solutions/nspec/Basic.Specs/Properties/AssemblyInfo.cs
|
160
|
+
- spec/test_data/solutions/nspec/Basic.Specs/packages.config
|
161
|
+
- spec/test_data/solutions/nspec/Basic.sln
|
162
|
+
- spec/test_data/solutions/nspec/Basic/Basic.csproj
|
163
|
+
- spec/test_data/solutions/nspec/Basic/Class1.cs
|
164
|
+
- spec/test_data/solutions/nspec/Basic/Properties/AssemblyInfo.cs
|
165
|
+
- spec/test_data/solutions/nspec/Basic/packages.config
|
166
|
+
- spec/test_data/solutions/nspec/Rakefile.rb
|
135
167
|
- spec/test_data/tool_locator/Program Files/Microsoft SQL Server/110/Tools/Binn/SQLCMD.exe.txt
|
136
168
|
- spec/test_data/tool_locator/Windows/Microsoft.NET/Framework/v3.5/MSBuild.exe.txt
|
137
169
|
- spec/test_data/tool_locator/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe.txt
|
@@ -167,6 +199,38 @@ test_files:
|
|
167
199
|
- spec/publish_nugets_spec.rb
|
168
200
|
- spec/solution_spec.rb
|
169
201
|
- spec/sqlcmd_spec.rb
|
202
|
+
- spec/support/shared_contexts/rake.rb
|
203
|
+
- spec/task_builders/build_spec.rb
|
204
|
+
- spec/task_builders/default_spec.rb
|
205
|
+
- spec/task_builders/nspec_spec.rb
|
206
|
+
- spec/task_builders/nuget_spec.rb
|
207
|
+
- spec/test_data/solutions/.nuget/NuGet.Config
|
208
|
+
- spec/test_data/solutions/.nuget/NuGet.exe
|
209
|
+
- spec/test_data/solutions/.nuget/NuGet.targets
|
210
|
+
- spec/test_data/solutions/.nuget/packages.config
|
211
|
+
- spec/test_data/solutions/basic/.semver
|
212
|
+
- spec/test_data/solutions/basic/Basic.Tests/Basic.Tests.csproj
|
213
|
+
- spec/test_data/solutions/basic/Basic.Tests/Class1.cs
|
214
|
+
- spec/test_data/solutions/basic/Basic.Tests/Properties/AssemblyInfo.cs
|
215
|
+
- spec/test_data/solutions/basic/Basic.Tests/packages.config
|
216
|
+
- spec/test_data/solutions/basic/Basic.sln
|
217
|
+
- spec/test_data/solutions/basic/Basic/Basic.csproj
|
218
|
+
- spec/test_data/solutions/basic/Basic/Class1.cs
|
219
|
+
- spec/test_data/solutions/basic/Basic/Properties/AssemblyInfo.cs
|
220
|
+
- spec/test_data/solutions/basic/Rakefile.rb
|
221
|
+
- spec/test_data/solutions/basic/packages.config
|
222
|
+
- spec/test_data/solutions/nspec/.semver
|
223
|
+
- spec/test_data/solutions/nspec/Basic.Specs/Basic.Specs.csproj
|
224
|
+
- spec/test_data/solutions/nspec/Basic.Specs/Class1.cs
|
225
|
+
- spec/test_data/solutions/nspec/Basic.Specs/DebuggerShim.cs
|
226
|
+
- spec/test_data/solutions/nspec/Basic.Specs/Properties/AssemblyInfo.cs
|
227
|
+
- spec/test_data/solutions/nspec/Basic.Specs/packages.config
|
228
|
+
- spec/test_data/solutions/nspec/Basic.sln
|
229
|
+
- spec/test_data/solutions/nspec/Basic/Basic.csproj
|
230
|
+
- spec/test_data/solutions/nspec/Basic/Class1.cs
|
231
|
+
- spec/test_data/solutions/nspec/Basic/Properties/AssemblyInfo.cs
|
232
|
+
- spec/test_data/solutions/nspec/Basic/packages.config
|
233
|
+
- spec/test_data/solutions/nspec/Rakefile.rb
|
170
234
|
- spec/test_data/tool_locator/Program Files/Microsoft SQL Server/110/Tools/Binn/SQLCMD.exe.txt
|
171
235
|
- spec/test_data/tool_locator/Windows/Microsoft.NET/Framework/v3.5/MSBuild.exe.txt
|
172
236
|
- spec/test_data/tool_locator/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe.txt
|