vraptor-scaffold 0.0.1 → 0.0.2
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.
- data/.gitignore +1 -0
- data/Rakefile +10 -0
- data/VERSION.yml +1 -1
- data/lib/generators/app_generator/templates/ivy.erb +1 -1
- data/lib/generators/app_generator/templates/pom.erb +6 -3
- data/spec/lib/generators/app_generator/templates/ivy.xml +1 -1
- data/spec/lib/generators/app_generator/templates/pom.xml +6 -3
- data/vraptor-scaffold.gemspec +2 -2
- metadata +4 -4
data/.gitignore
CHANGED
data/Rakefile
CHANGED
@@ -32,5 +32,15 @@ Spec::Rake::SpecTask.new(:rcov) do |spec|
|
|
32
32
|
spec.rcov = true
|
33
33
|
end
|
34
34
|
|
35
|
+
require 'rake/rdoctask'
|
36
|
+
Rake::RDocTask.new do |rdoc|
|
37
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
38
|
+
|
39
|
+
rdoc.rdoc_dir = 'rdoc'
|
40
|
+
rdoc.title = "vraptor-scaffold #{version}"
|
41
|
+
rdoc.rdoc_files.include('README*')
|
42
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
43
|
+
end
|
44
|
+
|
35
45
|
task :spec => :check_dependencies
|
36
46
|
task :default => [:spec]
|
data/VERSION.yml
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
<dependencies>
|
12
12
|
<dependency org="hsqldb" name="hsqldb" rev="1.8.0.10" conf="default" />
|
13
|
-
<dependency org="br.com.caelum" name="vraptor" rev="3.
|
13
|
+
<dependency org="br.com.caelum" name="vraptor" rev="3.2.0" conf="default" />
|
14
14
|
<dependency org="opensymphony" name="sitemesh" rev="2.4.2" conf="default" />
|
15
15
|
<dependency org="javax.servlet" name="jstl" rev="1.2" conf="default" />
|
16
16
|
<dependency org="javax.persistence" name="persistence-api" rev="1.0" conf="default" />
|
@@ -39,12 +39,15 @@
|
|
39
39
|
</plugin>
|
40
40
|
<plugin>
|
41
41
|
<groupId>org.mortbay.jetty</groupId>
|
42
|
-
<artifactId>jetty-
|
43
|
-
<version>
|
42
|
+
<artifactId>maven-jetty-plugin</artifactId>
|
43
|
+
<version>6.1.14</version>
|
44
44
|
<configuration>
|
45
45
|
<scanIntervalSeconds>3</scanIntervalSeconds>
|
46
46
|
<stopKey>foo</stopKey>
|
47
47
|
<stopPort>9999</stopPort>
|
48
|
+
<webAppConfig>
|
49
|
+
<contextPath>/</contextPath>
|
50
|
+
</webAppConfig>
|
48
51
|
</configuration>
|
49
52
|
</plugin>
|
50
53
|
</plugins>
|
@@ -77,7 +80,7 @@
|
|
77
80
|
<dependency>
|
78
81
|
<groupId>br.com.caelum</groupId>
|
79
82
|
<artifactId>vraptor</artifactId>
|
80
|
-
<version>3.
|
83
|
+
<version>3.2.0</version>
|
81
84
|
</dependency>
|
82
85
|
<dependency>
|
83
86
|
<groupId>opensymphony</groupId>
|
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
<dependencies>
|
12
12
|
<dependency org="hsqldb" name="hsqldb" rev="1.8.0.10" conf="default" />
|
13
|
-
<dependency org="br.com.caelum" name="vraptor" rev="3.
|
13
|
+
<dependency org="br.com.caelum" name="vraptor" rev="3.2.0" conf="default" />
|
14
14
|
<dependency org="opensymphony" name="sitemesh" rev="2.4.2" conf="default" />
|
15
15
|
<dependency org="javax.servlet" name="jstl" rev="1.2" conf="default" />
|
16
16
|
<dependency org="javax.persistence" name="persistence-api" rev="1.0" conf="default" />
|
@@ -39,12 +39,15 @@
|
|
39
39
|
</plugin>
|
40
40
|
<plugin>
|
41
41
|
<groupId>org.mortbay.jetty</groupId>
|
42
|
-
<artifactId>jetty-
|
43
|
-
<version>
|
42
|
+
<artifactId>maven-jetty-plugin</artifactId>
|
43
|
+
<version>6.1.14</version>
|
44
44
|
<configuration>
|
45
45
|
<scanIntervalSeconds>3</scanIntervalSeconds>
|
46
46
|
<stopKey>foo</stopKey>
|
47
47
|
<stopPort>9999</stopPort>
|
48
|
+
<webAppConfig>
|
49
|
+
<contextPath>/</contextPath>
|
50
|
+
</webAppConfig>
|
48
51
|
</configuration>
|
49
52
|
</plugin>
|
50
53
|
</plugins>
|
@@ -77,7 +80,7 @@
|
|
77
80
|
<dependency>
|
78
81
|
<groupId>br.com.caelum</groupId>
|
79
82
|
<artifactId>vraptor</artifactId>
|
80
|
-
<version>3.
|
83
|
+
<version>3.2.0</version>
|
81
84
|
</dependency>
|
82
85
|
<dependency>
|
83
86
|
<groupId>opensymphony</groupId>
|
data/vraptor-scaffold.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{vraptor-scaffold}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Rodolfo Liviero"]
|
12
|
-
s.date = %q{2010-10-
|
12
|
+
s.date = %q{2010-10-08}
|
13
13
|
s.default_executable = %q{vraptor}
|
14
14
|
s.description = %q{VRaptor scaffold extension to make it easier configuring new projects and plugins.}
|
15
15
|
s.email = %q{rodolfoliviero@gmail.com}
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vraptor-scaffold
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 27
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Rodolfo Liviero
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-10-
|
18
|
+
date: 2010-10-08 00:00:00 -03:00
|
19
19
|
default_executable: vraptor
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|