cuke4duke 0.4.2 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.textile +13 -3
- data/lib/{cuke4duke-0.4.2.jar → cuke4duke-0.4.3.jar} +0 -0
- data/pom.xml +24 -14
- metadata +30 -18
data/README.textile
CHANGED
@@ -13,10 +13,20 @@ with "RVM":http://rvm.beginrescueend.com
|
|
13
13
|
With JRuby installed - bootstrap your environment by installing some gems:
|
14
14
|
|
15
15
|
Using RVM:
|
16
|
-
<pre>
|
16
|
+
<pre>
|
17
|
+
mkdir -p ~/.m2/repository/.jruby
|
18
|
+
GEM_HOME=~/.m2/repository/.jruby GEM_PATH=~/.m2/repository/.jruby gem install bundler
|
19
|
+
GEM_HOME=~/.m2/repository/.jruby GEM_PATH=~/.m2/repository/.jruby bundle install
|
20
|
+
GEM_HOME=~/.m2/repository/.jruby GEM_PATH=~/.m2/repository/.jruby rake install
|
21
|
+
</pre>
|
17
22
|
|
18
23
|
Not using RVM:
|
19
|
-
<pre>
|
24
|
+
<pre>
|
25
|
+
mkdir -p ~/.m2/repository/.jruby
|
26
|
+
GEM_HOME=~/.m2/repository/.jruby GEM_PATH=~/.m2/repository/.jruby jruby -S gem install bundler
|
27
|
+
GEM_HOME=~/.m2/repository/.jruby GEM_PATH=~/.m2/repository/.jruby jruby -S bundle install
|
28
|
+
GEM_HOME=~/.m2/repository/.jruby GEM_PATH=~/.m2/repository/.jruby jruby -S rake install
|
29
|
+
</pre>
|
20
30
|
|
21
31
|
With the gems installed, build the whole shebang (including the examples):
|
22
32
|
|
@@ -50,4 +60,4 @@ Finally, bump version:
|
|
50
60
|
|
51
61
|
And commit again:
|
52
62
|
|
53
|
-
<pre>git commit -
|
63
|
+
<pre>git commit -m "Starting new development cycle"</pre>
|
Binary file
|
data/pom.xml
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
<groupId>cuke4duke</groupId>
|
7
7
|
<artifactId>parent</artifactId>
|
8
8
|
<packaging>pom</packaging>
|
9
|
-
<version>0.4.
|
9
|
+
<version>0.4.3</version>
|
10
10
|
<name>Cuke4Duke: Parent</name>
|
11
11
|
<url>http://cukes.info/</url>
|
12
12
|
|
@@ -15,28 +15,29 @@
|
|
15
15
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
16
16
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
17
17
|
|
18
|
-
<
|
19
|
-
<
|
20
|
-
<
|
18
|
+
<cuke4duke.version>${project.version}</cuke4duke.version>
|
19
|
+
<gherkin.version>2.3.3</gherkin.version>
|
20
|
+
<jruby.version>1.5.6</jruby.version>
|
21
|
+
<ant.version>1.8.2</ant.version>
|
21
22
|
<pico.version>2.11.2</pico.version>
|
22
|
-
<spring.version>3.0.
|
23
|
+
<spring.version>3.0.5.RELEASE</spring.version>
|
23
24
|
<guice.version>2.0</guice.version>
|
24
|
-
<groovy.version>1.7.
|
25
|
-
<scala.version>2.8.
|
25
|
+
<groovy.version>1.7.6</groovy.version>
|
26
|
+
<scala.version>2.8.1</scala.version>
|
26
27
|
<clojure.version>1.2.0</clojure.version>
|
27
28
|
<rhino.version>1.7R2</rhino.version>
|
28
29
|
<ioke.version>P-0.4.0</ioke.version>
|
29
|
-
<junit.version>4.8.
|
30
|
+
<junit.version>4.8.2</junit.version>
|
30
31
|
<mockito.version>1.8.5</mockito.version>
|
31
|
-
<selenium.version>2.
|
32
|
-
<log4j.version>1.2.
|
33
|
-
<commons-lang.version>2.
|
32
|
+
<selenium.version>2.0a7</selenium.version>
|
33
|
+
<log4j.version>1.2.16</log4j.version>
|
34
|
+
<commons-lang.version>2.5</commons-lang.version>
|
34
35
|
<javaee-api.version>5.0-1</javaee-api.version>
|
36
|
+
<asm.version>3.3</asm.version>
|
37
|
+
<cglib.version>2.2</cglib.version>
|
35
38
|
<openejb.version>3.1.2</openejb.version>
|
36
39
|
<hibernate.version>3.2.5.ga</hibernate.version>
|
37
40
|
<hibernate-entitymanager.version>3.2.1.ga</hibernate-entitymanager.version>
|
38
|
-
<asm.version>2.2.3</asm.version>
|
39
|
-
<cglib.version>2.1_3</cglib.version>
|
40
41
|
</properties>
|
41
42
|
|
42
43
|
<dependencyManagement>
|
@@ -228,7 +229,8 @@
|
|
228
229
|
<module>examples/clojure</module>
|
229
230
|
<module>examples/ioke</module>
|
230
231
|
<module>examples/spring</module>
|
231
|
-
|
232
|
+
<!-- Broken because jetty changed?? -->
|
233
|
+
<!-- module>examples/celerity</module -->
|
232
234
|
<!-- Broken now because of new v8 support in Cucumber -->
|
233
235
|
<!--module>examples/javascript</module-->
|
234
236
|
</modules>
|
@@ -263,5 +265,13 @@
|
|
263
265
|
</executions>
|
264
266
|
</plugin>
|
265
267
|
</plugins>
|
268
|
+
|
269
|
+
<extensions>
|
270
|
+
<extension>
|
271
|
+
<groupId>org.apache.maven.wagon</groupId>
|
272
|
+
<artifactId>wagon-ssh</artifactId>
|
273
|
+
<version>1.0-beta-6</version>
|
274
|
+
</extension>
|
275
|
+
</extensions>
|
266
276
|
</build>
|
267
277
|
</project>
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 4
|
8
|
-
-
|
9
|
-
version: 0.4.
|
8
|
+
- 3
|
9
|
+
version: 0.4.3
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- "Aslak Helles\xC3\xB8y"
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date:
|
17
|
+
date: 2011-01-17 00:00:00 +00:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -25,9 +25,9 @@ dependencies:
|
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
segments:
|
27
27
|
- 0
|
28
|
-
-
|
29
|
-
-
|
30
|
-
version: 0.
|
28
|
+
- 10
|
29
|
+
- 0
|
30
|
+
version: 0.10.0
|
31
31
|
requirement: *id001
|
32
32
|
prerelease: false
|
33
33
|
type: :runtime
|
@@ -39,11 +39,9 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
segments:
|
41
41
|
- 2
|
42
|
+
- 3
|
42
43
|
- 0
|
43
|
-
|
44
|
-
- beta
|
45
|
-
- 22
|
46
|
-
version: 2.0.0.beta.22
|
44
|
+
version: 2.3.0
|
47
45
|
requirement: *id002
|
48
46
|
prerelease: false
|
49
47
|
type: :development
|
@@ -56,8 +54,8 @@ dependencies:
|
|
56
54
|
segments:
|
57
55
|
- 0
|
58
56
|
- 8
|
59
|
-
-
|
60
|
-
version: 0.8.
|
57
|
+
- 7
|
58
|
+
version: 0.8.7
|
61
59
|
requirement: *id003
|
62
60
|
prerelease: false
|
63
61
|
type: :development
|
@@ -70,8 +68,8 @@ dependencies:
|
|
70
68
|
segments:
|
71
69
|
- 0
|
72
70
|
- 7
|
73
|
-
-
|
74
|
-
version: 0.7.
|
71
|
+
- 2
|
72
|
+
version: 0.7.2
|
75
73
|
requirement: *id004
|
76
74
|
prerelease: false
|
77
75
|
type: :development
|
@@ -84,11 +82,25 @@ dependencies:
|
|
84
82
|
segments:
|
85
83
|
- 1
|
86
84
|
- 0
|
87
|
-
-
|
88
|
-
version: 1.0.
|
85
|
+
- 7
|
86
|
+
version: 1.0.7
|
89
87
|
requirement: *id005
|
90
88
|
prerelease: false
|
91
89
|
type: :development
|
90
|
+
- !ruby/object:Gem::Dependency
|
91
|
+
name: rake
|
92
|
+
version_requirements: &id006 !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
segments:
|
97
|
+
- 0
|
98
|
+
- 8
|
99
|
+
- 7
|
100
|
+
version: 0.8.7
|
101
|
+
requirement: *id006
|
102
|
+
prerelease: false
|
103
|
+
type: :development
|
92
104
|
description: Write Cucumber Step Definitions in Java, Scala, Groovy, Rhino Javascript, Clojure or Ioke
|
93
105
|
email: cukes@googlegroups.com
|
94
106
|
executables:
|
@@ -125,7 +137,7 @@ files:
|
|
125
137
|
- lib/cuke4duke/step_mother_ext.rb
|
126
138
|
- lib/cuke4duke/table_ext.rb
|
127
139
|
- lib/cuke4duke/version.rb
|
128
|
-
- lib/cuke4duke-0.4.
|
140
|
+
- lib/cuke4duke-0.4.3.jar
|
129
141
|
- pom.xml
|
130
142
|
- LICENCE
|
131
143
|
- README.textile
|
@@ -158,6 +170,6 @@ rubyforge_project:
|
|
158
170
|
rubygems_version: 1.3.6
|
159
171
|
signing_key:
|
160
172
|
specification_version: 3
|
161
|
-
summary: cuke4duke-0.4.
|
173
|
+
summary: cuke4duke-0.4.3
|
162
174
|
test_files: []
|
163
175
|
|