maven-tools 1.0.0.rc4 → 1.0.0.rc5
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 +4 -4
- data/lib/maven/tools/dsl.rb +27 -8
- data/lib/maven/tools/gemfile_lock.rb +1 -1
- data/lib/maven/tools/version.rb +1 -1
- data/lib/maven/tools/versions.rb +1 -1
- data/spec/gemfile/pom.xml +1 -1
- data/spec/gemfile_include_jars/pom.xml +1 -1
- data/spec/gemfile_with_access_to_model/pom.xml +1 -1
- data/spec/gemfile_with_custom_source/pom.xml +2 -2
- data/spec/gemfile_with_custom_source_and_custom_jarname/pom.xml +2 -2
- data/spec/gemfile_with_extras/pom.xml +1 -1
- data/spec/gemfile_with_groups/pom.xml +17 -1
- data/spec/gemfile_with_groups_and_lockfile/pom.xml +17 -1
- data/spec/gemfile_with_lock/pom.xml +1 -1
- data/spec/gemfile_with_path/pom.xml +6 -1
- data/spec/gemfile_with_source/pom.xml +2 -2
- data/spec/gemfile_with_source_and_custom_jarname/pom.xml +2 -2
- data/spec/gemfile_with_source_and_no_jar/pom.xml +1 -1
- data/spec/gemfile_with_test_group/Gemfile +27 -0
- data/spec/gemfile_with_test_group/Gemfile.lock +133 -0
- data/spec/gemfile_with_test_group/Mavenfile +5 -0
- data/spec/gemfile_with_test_group/pom.xml +504 -0
- data/spec/gemfile_without_gemspec/Gemfile +5 -0
- data/spec/gemfile_without_gemspec/Mavenfile +5 -0
- data/spec/gemfile_without_gemspec/pom.xml +52 -0
- data/spec/gemspec/pom.xml +1 -1
- data/spec/gemspec_in_profile/pom.xml +1 -1
- data/spec/gemspec_include_jars/pom.xml +1 -1
- data/spec/gemspec_no_rubygems_repo/pom.xml +1 -1
- data/spec/gemspec_prerelease/pom.xml +1 -1
- data/spec/gemspec_prerelease_snapshot/pom.xml +1 -1
- data/spec/gemspec_with_access_to_model/pom.xml +1 -1
- data/spec/gemspec_with_custom_source/pom.xml +2 -2
- data/spec/gemspec_with_custom_source_and_custom_jarname/pom.xml +2 -2
- data/spec/gemspec_with_extras/pom.xml +1 -1
- data/spec/gemspec_with_prereleased_dependency/pom.xml +1 -1
- data/spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml +1 -1
- data/spec/gemspec_with_source/pom.xml +2 -2
- data/spec/gemspec_with_source_and_custom_jarname/pom.xml +2 -2
- data/spec/gemspec_with_source_and_no_jar/pom.xml +1 -1
- metadata +16 -2
@@ -0,0 +1,504 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
3
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
4
|
+
<modelVersion>4.0.0</modelVersion>
|
5
|
+
<groupId>dummy</groupId>
|
6
|
+
<artifactId>gemfile_with_test_group</artifactId>
|
7
|
+
<version>0.0.0</version>
|
8
|
+
<name>gemfile_with_test_group</name>
|
9
|
+
<properties>
|
10
|
+
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
11
|
+
<jruby.plugins.version>1.0.2</jruby.plugins.version>
|
12
|
+
</properties>
|
13
|
+
<repositories>
|
14
|
+
<repository>
|
15
|
+
<id>rubygems-releases</id>
|
16
|
+
<url>http://rubygems-proxy.torquebox.org/releases</url>
|
17
|
+
</repository>
|
18
|
+
</repositories>
|
19
|
+
<build>
|
20
|
+
<plugins>
|
21
|
+
<plugin>
|
22
|
+
<groupId>de.saumya.mojo</groupId>
|
23
|
+
<artifactId>gem-maven-plugin</artifactId>
|
24
|
+
<version>${jruby.plugins.version}</version>
|
25
|
+
<executions>
|
26
|
+
<execution>
|
27
|
+
<goals>
|
28
|
+
<goal>initialize</goal>
|
29
|
+
</goals>
|
30
|
+
</execution>
|
31
|
+
</executions>
|
32
|
+
</plugin>
|
33
|
+
</plugins>
|
34
|
+
</build>
|
35
|
+
<profiles>
|
36
|
+
<profile>
|
37
|
+
<id>gemfile</id>
|
38
|
+
<activation>
|
39
|
+
<file>
|
40
|
+
<missing>Gemfile.lock</missing>
|
41
|
+
</file>
|
42
|
+
</activation>
|
43
|
+
<dependencies>
|
44
|
+
<dependency>
|
45
|
+
<groupId>rubygems</groupId>
|
46
|
+
<artifactId>rack</artifactId>
|
47
|
+
<version>[1.5.2,1.5.99999]</version>
|
48
|
+
<type>gem</type>
|
49
|
+
</dependency>
|
50
|
+
<dependency>
|
51
|
+
<groupId>rubygems</groupId>
|
52
|
+
<artifactId>activerecord</artifactId>
|
53
|
+
<version>[4.1.1,4.1.99999]</version>
|
54
|
+
<type>gem</type>
|
55
|
+
</dependency>
|
56
|
+
<dependency>
|
57
|
+
<groupId>rubygems</groupId>
|
58
|
+
<artifactId>activerecord-jdbcmysql-adapter</artifactId>
|
59
|
+
<version>[1.3.7,1.3.99999]</version>
|
60
|
+
<type>gem</type>
|
61
|
+
</dependency>
|
62
|
+
<dependency>
|
63
|
+
<groupId>rubygems</groupId>
|
64
|
+
<artifactId>newrelic_rpm</artifactId>
|
65
|
+
<version>[0,)</version>
|
66
|
+
<type>gem</type>
|
67
|
+
</dependency>
|
68
|
+
<dependency>
|
69
|
+
<groupId>rubygems</groupId>
|
70
|
+
<artifactId>aws-sdk</artifactId>
|
71
|
+
<version>[1.40.2,1.40.99999]</version>
|
72
|
+
<type>gem</type>
|
73
|
+
</dependency>
|
74
|
+
<dependency>
|
75
|
+
<groupId>rubygems</groupId>
|
76
|
+
<artifactId>grape</artifactId>
|
77
|
+
<version>[0.7.0,0.7.99999]</version>
|
78
|
+
<type>gem</type>
|
79
|
+
</dependency>
|
80
|
+
<dependency>
|
81
|
+
<groupId>rubygems</groupId>
|
82
|
+
<artifactId>codeclimate-test-reporter</artifactId>
|
83
|
+
<version>[0,)</version>
|
84
|
+
<type>gem</type>
|
85
|
+
<scope>test</scope>
|
86
|
+
</dependency>
|
87
|
+
<dependency>
|
88
|
+
<groupId>rubygems</groupId>
|
89
|
+
<artifactId>rspec-mocks</artifactId>
|
90
|
+
<version>[2.14.1,2.14.99999]</version>
|
91
|
+
<type>gem</type>
|
92
|
+
<scope>test</scope>
|
93
|
+
</dependency>
|
94
|
+
<dependency>
|
95
|
+
<groupId>rubygems</groupId>
|
96
|
+
<artifactId>rspec</artifactId>
|
97
|
+
<version>[2.14.1,2.14.99999]</version>
|
98
|
+
<type>gem</type>
|
99
|
+
<scope>test</scope>
|
100
|
+
</dependency>
|
101
|
+
<dependency>
|
102
|
+
<groupId>rubygems</groupId>
|
103
|
+
<artifactId>simplecov</artifactId>
|
104
|
+
<version>[0.8.2,0.8.99999]</version>
|
105
|
+
<type>gem</type>
|
106
|
+
<scope>test</scope>
|
107
|
+
</dependency>
|
108
|
+
<dependency>
|
109
|
+
<groupId>rubygems</groupId>
|
110
|
+
<artifactId>thor</artifactId>
|
111
|
+
<version>[0.18.1,0.18.99999]</version>
|
112
|
+
<type>gem</type>
|
113
|
+
<scope>test</scope>
|
114
|
+
</dependency>
|
115
|
+
<dependency>
|
116
|
+
<groupId>rubygems</groupId>
|
117
|
+
<artifactId>vcr</artifactId>
|
118
|
+
<version>[2.8.0,2.8.99999]</version>
|
119
|
+
<type>gem</type>
|
120
|
+
<scope>test</scope>
|
121
|
+
</dependency>
|
122
|
+
<dependency>
|
123
|
+
<groupId>rubygems</groupId>
|
124
|
+
<artifactId>webmock</artifactId>
|
125
|
+
<version>[1.16.0,1.16.99999]</version>
|
126
|
+
<type>gem</type>
|
127
|
+
<scope>test</scope>
|
128
|
+
</dependency>
|
129
|
+
<dependency>
|
130
|
+
<groupId>rubygems</groupId>
|
131
|
+
<artifactId>fake_sqs</artifactId>
|
132
|
+
<version>[0.1.0,0.1.99999]</version>
|
133
|
+
<type>gem</type>
|
134
|
+
<scope>test</scope>
|
135
|
+
</dependency>
|
136
|
+
<dependency>
|
137
|
+
<groupId>rubygems</groupId>
|
138
|
+
<artifactId>rack-test</artifactId>
|
139
|
+
<version>[0.6.2,0.6.99999]</version>
|
140
|
+
<type>gem</type>
|
141
|
+
<scope>test</scope>
|
142
|
+
</dependency>
|
143
|
+
<dependency>
|
144
|
+
<groupId>rubygems</groupId>
|
145
|
+
<artifactId>database_cleaner</artifactId>
|
146
|
+
<version>[1.2.0,1.2.99999]</version>
|
147
|
+
<type>gem</type>
|
148
|
+
<scope>test</scope>
|
149
|
+
</dependency>
|
150
|
+
<dependency>
|
151
|
+
<groupId>rubygems</groupId>
|
152
|
+
<artifactId>shoulda-matchers</artifactId>
|
153
|
+
<version>[2.6.1,2.6.99999]</version>
|
154
|
+
<type>gem</type>
|
155
|
+
<scope>test</scope>
|
156
|
+
</dependency>
|
157
|
+
</dependencies>
|
158
|
+
</profile>
|
159
|
+
<profile>
|
160
|
+
<id>gemfile_lock</id>
|
161
|
+
<activation>
|
162
|
+
<file>
|
163
|
+
<exists>Gemfile.lock</exists>
|
164
|
+
</file>
|
165
|
+
</activation>
|
166
|
+
<dependencies>
|
167
|
+
<dependency>
|
168
|
+
<groupId>rubygems</groupId>
|
169
|
+
<artifactId>rack</artifactId>
|
170
|
+
<version>1.5.2</version>
|
171
|
+
<type>gem</type>
|
172
|
+
</dependency>
|
173
|
+
<dependency>
|
174
|
+
<groupId>rubygems</groupId>
|
175
|
+
<artifactId>activerecord</artifactId>
|
176
|
+
<version>4.1.1</version>
|
177
|
+
<type>gem</type>
|
178
|
+
</dependency>
|
179
|
+
<dependency>
|
180
|
+
<groupId>rubygems</groupId>
|
181
|
+
<artifactId>activemodel</artifactId>
|
182
|
+
<version>4.1.1</version>
|
183
|
+
<type>gem</type>
|
184
|
+
</dependency>
|
185
|
+
<dependency>
|
186
|
+
<groupId>rubygems</groupId>
|
187
|
+
<artifactId>activesupport</artifactId>
|
188
|
+
<version>4.1.1</version>
|
189
|
+
<type>gem</type>
|
190
|
+
</dependency>
|
191
|
+
<dependency>
|
192
|
+
<groupId>rubygems</groupId>
|
193
|
+
<artifactId>i18n</artifactId>
|
194
|
+
<version>0.6.9</version>
|
195
|
+
<type>gem</type>
|
196
|
+
</dependency>
|
197
|
+
<dependency>
|
198
|
+
<groupId>rubygems</groupId>
|
199
|
+
<artifactId>json</artifactId>
|
200
|
+
<version>1.8.1</version>
|
201
|
+
<type>gem</type>
|
202
|
+
</dependency>
|
203
|
+
<dependency>
|
204
|
+
<groupId>rubygems</groupId>
|
205
|
+
<artifactId>minitest</artifactId>
|
206
|
+
<version>5.3.3</version>
|
207
|
+
<type>gem</type>
|
208
|
+
</dependency>
|
209
|
+
<dependency>
|
210
|
+
<groupId>rubygems</groupId>
|
211
|
+
<artifactId>thread_safe</artifactId>
|
212
|
+
<version>0.3.3</version>
|
213
|
+
<type>gem</type>
|
214
|
+
</dependency>
|
215
|
+
<dependency>
|
216
|
+
<groupId>rubygems</groupId>
|
217
|
+
<artifactId>tzinfo</artifactId>
|
218
|
+
<version>1.1.0</version>
|
219
|
+
<type>gem</type>
|
220
|
+
</dependency>
|
221
|
+
<dependency>
|
222
|
+
<groupId>rubygems</groupId>
|
223
|
+
<artifactId>builder</artifactId>
|
224
|
+
<version>3.2.2</version>
|
225
|
+
<type>gem</type>
|
226
|
+
</dependency>
|
227
|
+
<dependency>
|
228
|
+
<groupId>rubygems</groupId>
|
229
|
+
<artifactId>arel</artifactId>
|
230
|
+
<version>5.0.1.20140414130214</version>
|
231
|
+
<type>gem</type>
|
232
|
+
</dependency>
|
233
|
+
<dependency>
|
234
|
+
<groupId>rubygems</groupId>
|
235
|
+
<artifactId>activerecord-jdbcmysql-adapter</artifactId>
|
236
|
+
<version>1.3.7</version>
|
237
|
+
<type>gem</type>
|
238
|
+
</dependency>
|
239
|
+
<dependency>
|
240
|
+
<groupId>rubygems</groupId>
|
241
|
+
<artifactId>activerecord-jdbc-adapter</artifactId>
|
242
|
+
<version>1.3.7</version>
|
243
|
+
<type>gem</type>
|
244
|
+
</dependency>
|
245
|
+
<dependency>
|
246
|
+
<groupId>rubygems</groupId>
|
247
|
+
<artifactId>jdbc-mysql</artifactId>
|
248
|
+
<version>5.1.30</version>
|
249
|
+
<type>gem</type>
|
250
|
+
</dependency>
|
251
|
+
<dependency>
|
252
|
+
<groupId>rubygems</groupId>
|
253
|
+
<artifactId>newrelic_rpm</artifactId>
|
254
|
+
<version>3.8.1.221</version>
|
255
|
+
<type>gem</type>
|
256
|
+
</dependency>
|
257
|
+
<dependency>
|
258
|
+
<groupId>rubygems</groupId>
|
259
|
+
<artifactId>aws-sdk</artifactId>
|
260
|
+
<version>1.40.3</version>
|
261
|
+
<type>gem</type>
|
262
|
+
</dependency>
|
263
|
+
<dependency>
|
264
|
+
<groupId>rubygems</groupId>
|
265
|
+
<artifactId>nokogiri</artifactId>
|
266
|
+
<version>1.6.1</version>
|
267
|
+
<type>gem</type>
|
268
|
+
</dependency>
|
269
|
+
<dependency>
|
270
|
+
<groupId>rubygems</groupId>
|
271
|
+
<artifactId>mini_portile</artifactId>
|
272
|
+
<version>0.5.3</version>
|
273
|
+
<type>gem</type>
|
274
|
+
</dependency>
|
275
|
+
<dependency>
|
276
|
+
<groupId>rubygems</groupId>
|
277
|
+
<artifactId>grape</artifactId>
|
278
|
+
<version>0.7.0</version>
|
279
|
+
<type>gem</type>
|
280
|
+
</dependency>
|
281
|
+
<dependency>
|
282
|
+
<groupId>rubygems</groupId>
|
283
|
+
<artifactId>hashie</artifactId>
|
284
|
+
<version>2.1.1</version>
|
285
|
+
<type>gem</type>
|
286
|
+
</dependency>
|
287
|
+
<dependency>
|
288
|
+
<groupId>rubygems</groupId>
|
289
|
+
<artifactId>multi_json</artifactId>
|
290
|
+
<version>1.10.0</version>
|
291
|
+
<type>gem</type>
|
292
|
+
</dependency>
|
293
|
+
<dependency>
|
294
|
+
<groupId>rubygems</groupId>
|
295
|
+
<artifactId>multi_xml</artifactId>
|
296
|
+
<version>0.5.5</version>
|
297
|
+
<type>gem</type>
|
298
|
+
</dependency>
|
299
|
+
<dependency>
|
300
|
+
<groupId>rubygems</groupId>
|
301
|
+
<artifactId>rack-accept</artifactId>
|
302
|
+
<version>0.4.5</version>
|
303
|
+
<type>gem</type>
|
304
|
+
</dependency>
|
305
|
+
<dependency>
|
306
|
+
<groupId>rubygems</groupId>
|
307
|
+
<artifactId>rack-mount</artifactId>
|
308
|
+
<version>0.8.3</version>
|
309
|
+
<type>gem</type>
|
310
|
+
</dependency>
|
311
|
+
<dependency>
|
312
|
+
<groupId>rubygems</groupId>
|
313
|
+
<artifactId>virtus</artifactId>
|
314
|
+
<version>1.0.2</version>
|
315
|
+
<type>gem</type>
|
316
|
+
</dependency>
|
317
|
+
<dependency>
|
318
|
+
<groupId>rubygems</groupId>
|
319
|
+
<artifactId>axiom-types</artifactId>
|
320
|
+
<version>0.1.1</version>
|
321
|
+
<type>gem</type>
|
322
|
+
</dependency>
|
323
|
+
<dependency>
|
324
|
+
<groupId>rubygems</groupId>
|
325
|
+
<artifactId>descendants_tracker</artifactId>
|
326
|
+
<version>0.0.4</version>
|
327
|
+
<type>gem</type>
|
328
|
+
</dependency>
|
329
|
+
<dependency>
|
330
|
+
<groupId>rubygems</groupId>
|
331
|
+
<artifactId>ice_nine</artifactId>
|
332
|
+
<version>0.11.0</version>
|
333
|
+
<type>gem</type>
|
334
|
+
</dependency>
|
335
|
+
<dependency>
|
336
|
+
<groupId>rubygems</groupId>
|
337
|
+
<artifactId>coercible</artifactId>
|
338
|
+
<version>1.0.0</version>
|
339
|
+
<type>gem</type>
|
340
|
+
</dependency>
|
341
|
+
<dependency>
|
342
|
+
<groupId>rubygems</groupId>
|
343
|
+
<artifactId>equalizer</artifactId>
|
344
|
+
<version>0.0.9</version>
|
345
|
+
<type>gem</type>
|
346
|
+
</dependency>
|
347
|
+
<dependency>
|
348
|
+
<groupId>rubygems</groupId>
|
349
|
+
<artifactId>codeclimate-test-reporter</artifactId>
|
350
|
+
<version>0.3.0</version>
|
351
|
+
<type>gem</type>
|
352
|
+
<scope>test</scope>
|
353
|
+
</dependency>
|
354
|
+
<dependency>
|
355
|
+
<groupId>rubygems</groupId>
|
356
|
+
<artifactId>simplecov</artifactId>
|
357
|
+
<version>0.8.2</version>
|
358
|
+
<type>gem</type>
|
359
|
+
<scope>test</scope>
|
360
|
+
</dependency>
|
361
|
+
<dependency>
|
362
|
+
<groupId>rubygems</groupId>
|
363
|
+
<artifactId>docile</artifactId>
|
364
|
+
<version>1.1.3</version>
|
365
|
+
<type>gem</type>
|
366
|
+
<scope>test</scope>
|
367
|
+
</dependency>
|
368
|
+
<dependency>
|
369
|
+
<groupId>rubygems</groupId>
|
370
|
+
<artifactId>simplecov-html</artifactId>
|
371
|
+
<version>0.8.0</version>
|
372
|
+
<type>gem</type>
|
373
|
+
<scope>test</scope>
|
374
|
+
</dependency>
|
375
|
+
<dependency>
|
376
|
+
<groupId>rubygems</groupId>
|
377
|
+
<artifactId>rspec-mocks</artifactId>
|
378
|
+
<version>2.14.6</version>
|
379
|
+
<type>gem</type>
|
380
|
+
<scope>test</scope>
|
381
|
+
</dependency>
|
382
|
+
<dependency>
|
383
|
+
<groupId>rubygems</groupId>
|
384
|
+
<artifactId>rspec</artifactId>
|
385
|
+
<version>2.14.1</version>
|
386
|
+
<type>gem</type>
|
387
|
+
<scope>test</scope>
|
388
|
+
</dependency>
|
389
|
+
<dependency>
|
390
|
+
<groupId>rubygems</groupId>
|
391
|
+
<artifactId>rspec-core</artifactId>
|
392
|
+
<version>2.14.8</version>
|
393
|
+
<type>gem</type>
|
394
|
+
<scope>test</scope>
|
395
|
+
</dependency>
|
396
|
+
<dependency>
|
397
|
+
<groupId>rubygems</groupId>
|
398
|
+
<artifactId>rspec-expectations</artifactId>
|
399
|
+
<version>2.14.5</version>
|
400
|
+
<type>gem</type>
|
401
|
+
<scope>test</scope>
|
402
|
+
</dependency>
|
403
|
+
<dependency>
|
404
|
+
<groupId>rubygems</groupId>
|
405
|
+
<artifactId>diff-lcs</artifactId>
|
406
|
+
<version>1.2.5</version>
|
407
|
+
<type>gem</type>
|
408
|
+
<scope>test</scope>
|
409
|
+
</dependency>
|
410
|
+
<dependency>
|
411
|
+
<groupId>rubygems</groupId>
|
412
|
+
<artifactId>thor</artifactId>
|
413
|
+
<version>0.18.1</version>
|
414
|
+
<type>gem</type>
|
415
|
+
<scope>test</scope>
|
416
|
+
</dependency>
|
417
|
+
<dependency>
|
418
|
+
<groupId>rubygems</groupId>
|
419
|
+
<artifactId>vcr</artifactId>
|
420
|
+
<version>2.8.0</version>
|
421
|
+
<type>gem</type>
|
422
|
+
<scope>test</scope>
|
423
|
+
</dependency>
|
424
|
+
<dependency>
|
425
|
+
<groupId>rubygems</groupId>
|
426
|
+
<artifactId>webmock</artifactId>
|
427
|
+
<version>1.16.1</version>
|
428
|
+
<type>gem</type>
|
429
|
+
<scope>test</scope>
|
430
|
+
</dependency>
|
431
|
+
<dependency>
|
432
|
+
<groupId>rubygems</groupId>
|
433
|
+
<artifactId>addressable</artifactId>
|
434
|
+
<version>2.3.6</version>
|
435
|
+
<type>gem</type>
|
436
|
+
<scope>test</scope>
|
437
|
+
</dependency>
|
438
|
+
<dependency>
|
439
|
+
<groupId>rubygems</groupId>
|
440
|
+
<artifactId>crack</artifactId>
|
441
|
+
<version>0.4.2</version>
|
442
|
+
<type>gem</type>
|
443
|
+
<scope>test</scope>
|
444
|
+
</dependency>
|
445
|
+
<dependency>
|
446
|
+
<groupId>rubygems</groupId>
|
447
|
+
<artifactId>safe_yaml</artifactId>
|
448
|
+
<version>1.0.3</version>
|
449
|
+
<type>gem</type>
|
450
|
+
<scope>test</scope>
|
451
|
+
</dependency>
|
452
|
+
<dependency>
|
453
|
+
<groupId>rubygems</groupId>
|
454
|
+
<artifactId>fake_sqs</artifactId>
|
455
|
+
<version>0.1.0</version>
|
456
|
+
<type>gem</type>
|
457
|
+
<scope>test</scope>
|
458
|
+
</dependency>
|
459
|
+
<dependency>
|
460
|
+
<groupId>rubygems</groupId>
|
461
|
+
<artifactId>sinatra</artifactId>
|
462
|
+
<version>1.4.5</version>
|
463
|
+
<type>gem</type>
|
464
|
+
<scope>test</scope>
|
465
|
+
</dependency>
|
466
|
+
<dependency>
|
467
|
+
<groupId>rubygems</groupId>
|
468
|
+
<artifactId>rack-protection</artifactId>
|
469
|
+
<version>1.5.3</version>
|
470
|
+
<type>gem</type>
|
471
|
+
<scope>test</scope>
|
472
|
+
</dependency>
|
473
|
+
<dependency>
|
474
|
+
<groupId>rubygems</groupId>
|
475
|
+
<artifactId>tilt</artifactId>
|
476
|
+
<version>1.4.1</version>
|
477
|
+
<type>gem</type>
|
478
|
+
<scope>test</scope>
|
479
|
+
</dependency>
|
480
|
+
<dependency>
|
481
|
+
<groupId>rubygems</groupId>
|
482
|
+
<artifactId>rack-test</artifactId>
|
483
|
+
<version>0.6.2</version>
|
484
|
+
<type>gem</type>
|
485
|
+
<scope>test</scope>
|
486
|
+
</dependency>
|
487
|
+
<dependency>
|
488
|
+
<groupId>rubygems</groupId>
|
489
|
+
<artifactId>database_cleaner</artifactId>
|
490
|
+
<version>1.2.0</version>
|
491
|
+
<type>gem</type>
|
492
|
+
<scope>test</scope>
|
493
|
+
</dependency>
|
494
|
+
<dependency>
|
495
|
+
<groupId>rubygems</groupId>
|
496
|
+
<artifactId>shoulda-matchers</artifactId>
|
497
|
+
<version>2.6.1</version>
|
498
|
+
<type>gem</type>
|
499
|
+
<scope>test</scope>
|
500
|
+
</dependency>
|
501
|
+
</dependencies>
|
502
|
+
</profile>
|
503
|
+
</profiles>
|
504
|
+
</project>
|