mvnizer 0.9.0 → 0.11.0
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/.gitignore +52 -0
- data/CHANGELOG.org +11 -0
- data/Gemfile +7 -11
- data/Gemfile.lock +35 -102
- data/README.org +8 -7
- data/Rakefile +1 -23
- data/conf/default.yml +2 -2
- data/lib/mvnizer/version.rb +1 -1
- data/mvnizer.gemspec +15 -100
- metadata +8 -136
- data/features/new_project.feature +0 -39
- data/features/search_artefact.feature +0 -14
- data/features/step_definitions/pom_steps.rb +0 -18
- data/features/support/env.rb +0 -24
- data/spec/commands/add_dependency_spec.rb +0 -25
- data/spec/commands/new_project_spec.rb +0 -38
- data/spec/commands/new_war_project_spec.rb +0 -58
- data/spec/commands/project_factory_spec.rb +0 -22
- data/spec/commands/search_artefact_spec.rb +0 -94
- data/spec/configuration_spec.rb +0 -28
- data/spec/coordinate_parser_spec.rb +0 -92
- data/spec/dummy.txt.erb +0 -1
- data/spec/dummy_pom.xml +0 -30
- data/spec/mvnize_spec.rb +0 -100
- data/spec/project_spec.rb +0 -29
- data/spec/spec_helper.rb +0 -11
- data/spec/task_helper_spec.rb +0 -66
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f6426ef283b40a896c5ef3f75874f0ada5f28d42b9021311b7dcb9524a8f17b9
|
|
4
|
+
data.tar.gz: d695b02fa425a6ae1e842ec9adfb17ef8328b0d8a82ce23eef4e5d82ad635d52
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8e2d6da8d38475d1aa6ea6a1d94f8ae7ad244e55681cf8eb23665bca62a089daa4dc4237a3563c0b278b649483b092e874364d7a74503b1b5824db3f8a3ef674
|
|
7
|
+
data.tar.gz: 9e81f6ceea8f6bec4bbd76fea16493841736c2391809377776262b5cd3d52b012e629536f94222fe26fa848282b4986510f7f45916ae5823105d03122bb3cdb5
|
data/.gitignore
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# rcov generated
|
|
2
|
+
coverage
|
|
3
|
+
coverage.data
|
|
4
|
+
|
|
5
|
+
# rdoc generated
|
|
6
|
+
rdoc
|
|
7
|
+
|
|
8
|
+
# yard generated
|
|
9
|
+
doc
|
|
10
|
+
.yardoc
|
|
11
|
+
|
|
12
|
+
# bundler
|
|
13
|
+
.bundle
|
|
14
|
+
|
|
15
|
+
# jeweler generated
|
|
16
|
+
pkg
|
|
17
|
+
|
|
18
|
+
# aruba test folder
|
|
19
|
+
tmp
|
|
20
|
+
|
|
21
|
+
# Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore:
|
|
22
|
+
#
|
|
23
|
+
# * Create a file at ~/.gitignore
|
|
24
|
+
# * Include files you want ignored
|
|
25
|
+
# * Run: git config --global core.excludesfile ~/.gitignore
|
|
26
|
+
#
|
|
27
|
+
# After doing this, these files will be ignored in all your git projects,
|
|
28
|
+
# saving you from having to 'pollute' every project you touch with them
|
|
29
|
+
#
|
|
30
|
+
# Not sure what to needs to be ignored for particular editors/OSes? Here's some ideas to get you started. (Remember, remove the leading # of the line)
|
|
31
|
+
#
|
|
32
|
+
# For MacOS:
|
|
33
|
+
#
|
|
34
|
+
#.DS_Store
|
|
35
|
+
|
|
36
|
+
# For TextMate
|
|
37
|
+
#*.tmproj
|
|
38
|
+
#tmtags
|
|
39
|
+
|
|
40
|
+
# For emacs:
|
|
41
|
+
*~
|
|
42
|
+
\#*
|
|
43
|
+
.\#*
|
|
44
|
+
|
|
45
|
+
# For vim:
|
|
46
|
+
#*.swp
|
|
47
|
+
|
|
48
|
+
# For redcar:
|
|
49
|
+
#.redcar
|
|
50
|
+
|
|
51
|
+
# For rubinius:
|
|
52
|
+
#*.rbc
|
data/CHANGELOG.org
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
* Mvnizer 0.10.0
|
|
2
|
+
|
|
3
|
+
- Update default junit version to 5.7.0
|
|
4
|
+
- Update maven compiler plugin to 3.8.1
|
|
5
|
+
|
|
6
|
+
* Mvnizer 0.9.0
|
|
7
|
+
|
|
8
|
+
- Update rack dependency version.
|
|
9
|
+
|
|
1
10
|
* Mvnizer 0.8.0
|
|
2
11
|
|
|
3
12
|
- Update dependencies version.
|
|
@@ -10,6 +19,8 @@
|
|
|
10
19
|
|
|
11
20
|
- Maven plugins support,
|
|
12
21
|
- Update dependencies version.
|
|
22
|
+
- Add support for Maven plugins
|
|
23
|
+
- Set ruby 2.3.0 as minimum version
|
|
13
24
|
|
|
14
25
|
* Mvnizer 0.5.0
|
|
15
26
|
|
data/Gemfile
CHANGED
|
@@ -1,18 +1,14 @@
|
|
|
1
1
|
source 'https://rubygems.org'
|
|
2
2
|
|
|
3
|
-
ruby "
|
|
3
|
+
ruby ">= 2.7.0"
|
|
4
4
|
|
|
5
|
-
gem 'httparty', '~> 0.
|
|
6
|
-
gem 'nokogiri', '~> 1.
|
|
7
|
-
|
|
8
|
-
# Ensure Rake remains under v. 11 to avoid issues with
|
|
9
|
-
# removed `last_comment` in rspec.
|
|
10
|
-
gem 'rake', '< 11.0'
|
|
5
|
+
gem 'httparty', '~> 0.17'
|
|
6
|
+
gem 'nokogiri', '~> 1.11'
|
|
7
|
+
gem 'rake', '~> 13.0'
|
|
11
8
|
|
|
12
9
|
group :development do
|
|
13
|
-
gem 'rspec', '~>
|
|
14
|
-
gem 'rspec-mocks', '~>
|
|
10
|
+
gem 'rspec', '~> 3.10.0'
|
|
11
|
+
gem 'rspec-mocks', '~> 3.10.0'
|
|
15
12
|
gem 'fakefs', '~> 0.14'
|
|
16
|
-
gem '
|
|
17
|
-
gem 'aruba', '~> 0.14'
|
|
13
|
+
# gem 'aruba', '~> 0.14'
|
|
18
14
|
end
|
data/Gemfile.lock
CHANGED
|
@@ -1,119 +1,52 @@
|
|
|
1
1
|
GEM
|
|
2
2
|
remote: https://rubygems.org/
|
|
3
3
|
specs:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
cucumber (>= 1.3.19)
|
|
9
|
-
ffi (~> 1.9.10)
|
|
10
|
-
rspec-expectations (>= 2.99)
|
|
11
|
-
thor (~> 0.19)
|
|
12
|
-
backports (3.11.4)
|
|
13
|
-
builder (3.2.3)
|
|
14
|
-
childprocess (0.9.0)
|
|
15
|
-
ffi (~> 1.0, >= 1.0.11)
|
|
16
|
-
contracts (0.16.0)
|
|
17
|
-
cucumber (3.1.2)
|
|
18
|
-
builder (>= 2.1.2)
|
|
19
|
-
cucumber-core (~> 3.2.0)
|
|
20
|
-
cucumber-expressions (~> 6.0.1)
|
|
21
|
-
cucumber-wire (~> 0.0.1)
|
|
22
|
-
diff-lcs (~> 1.3)
|
|
23
|
-
gherkin (~> 5.1.0)
|
|
24
|
-
multi_json (>= 1.7.5, < 2.0)
|
|
25
|
-
multi_test (>= 0.1.2)
|
|
26
|
-
cucumber-core (3.2.1)
|
|
27
|
-
backports (>= 3.8.0)
|
|
28
|
-
cucumber-tag_expressions (~> 1.1.0)
|
|
29
|
-
gherkin (~> 5.0)
|
|
30
|
-
cucumber-expressions (6.0.1)
|
|
31
|
-
cucumber-tag_expressions (1.1.1)
|
|
32
|
-
cucumber-wire (0.0.1)
|
|
33
|
-
descendants_tracker (0.0.4)
|
|
34
|
-
thread_safe (~> 0.3, >= 0.3.1)
|
|
35
|
-
diff-lcs (1.3)
|
|
36
|
-
fakefs (0.14.3)
|
|
37
|
-
faraday (0.9.2)
|
|
38
|
-
multipart-post (>= 1.2, < 3)
|
|
39
|
-
ffi (1.9.25)
|
|
40
|
-
ffi (1.9.25-java)
|
|
41
|
-
gherkin (5.1.0)
|
|
42
|
-
git (1.5.0)
|
|
43
|
-
github_api (0.16.0)
|
|
44
|
-
addressable (~> 2.4.0)
|
|
45
|
-
descendants_tracker (~> 0.0.4)
|
|
46
|
-
faraday (~> 0.8, < 0.10)
|
|
47
|
-
hashie (>= 3.4)
|
|
48
|
-
mime-types (>= 1.16, < 3.0)
|
|
49
|
-
oauth2 (~> 1.0)
|
|
50
|
-
hashie (3.6.0)
|
|
51
|
-
highline (2.0.0)
|
|
52
|
-
httparty (0.16.2)
|
|
4
|
+
diff-lcs (1.4.4)
|
|
5
|
+
fakefs (0.20.1)
|
|
6
|
+
httparty (0.18.1)
|
|
7
|
+
mime-types (~> 3.0)
|
|
53
8
|
multi_xml (>= 0.5.2)
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
git (>= 1.2.5)
|
|
59
|
-
github_api (~> 0.16.0)
|
|
60
|
-
highline (>= 1.6.15)
|
|
61
|
-
nokogiri (>= 1.5.10)
|
|
62
|
-
psych
|
|
63
|
-
rake
|
|
64
|
-
rdoc
|
|
65
|
-
semver2
|
|
66
|
-
jwt (2.1.0)
|
|
67
|
-
mime-types (2.99.3)
|
|
68
|
-
mini_portile2 (2.4.0)
|
|
69
|
-
multi_json (1.13.1)
|
|
70
|
-
multi_test (0.1.2)
|
|
9
|
+
mime-types (3.3.1)
|
|
10
|
+
mime-types-data (~> 3.2015)
|
|
11
|
+
mime-types-data (3.2021.0225)
|
|
12
|
+
mini_portile2 (2.5.1)
|
|
71
13
|
multi_xml (0.6.0)
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
nokogiri (1.
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
rspec-
|
|
92
|
-
rspec-
|
|
93
|
-
rspec-expectations (2.99.2)
|
|
94
|
-
diff-lcs (>= 1.1.3, < 2.0)
|
|
95
|
-
rspec-mocks (2.99.4)
|
|
96
|
-
semver2 (3.4.2)
|
|
97
|
-
thor (0.20.0)
|
|
98
|
-
thread_safe (0.3.6)
|
|
99
|
-
thread_safe (0.3.6-java)
|
|
14
|
+
nokogiri (1.11.4)
|
|
15
|
+
mini_portile2 (~> 2.5.0)
|
|
16
|
+
racc (~> 1.4)
|
|
17
|
+
nokogiri (1.11.4-java)
|
|
18
|
+
racc (~> 1.4)
|
|
19
|
+
racc (1.5.2)
|
|
20
|
+
racc (1.5.2-java)
|
|
21
|
+
rake (13.0.3)
|
|
22
|
+
rspec (3.10.0)
|
|
23
|
+
rspec-core (~> 3.10.0)
|
|
24
|
+
rspec-expectations (~> 3.10.0)
|
|
25
|
+
rspec-mocks (~> 3.10.0)
|
|
26
|
+
rspec-core (3.10.1)
|
|
27
|
+
rspec-support (~> 3.10.0)
|
|
28
|
+
rspec-expectations (3.10.1)
|
|
29
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
30
|
+
rspec-support (~> 3.10.0)
|
|
31
|
+
rspec-mocks (3.10.2)
|
|
32
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
33
|
+
rspec-support (~> 3.10.0)
|
|
34
|
+
rspec-support (3.10.2)
|
|
100
35
|
|
|
101
36
|
PLATFORMS
|
|
102
37
|
java
|
|
103
38
|
ruby
|
|
104
39
|
|
|
105
40
|
DEPENDENCIES
|
|
106
|
-
aruba (~> 0.14)
|
|
107
41
|
fakefs (~> 0.14)
|
|
108
|
-
httparty (~> 0.
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
rspec (~>
|
|
113
|
-
rspec-mocks (~> 2.99)
|
|
42
|
+
httparty (~> 0.17)
|
|
43
|
+
nokogiri (~> 1.11)
|
|
44
|
+
rake (~> 13.0)
|
|
45
|
+
rspec (~> 3.10.0)
|
|
46
|
+
rspec-mocks (~> 3.10.0)
|
|
114
47
|
|
|
115
48
|
RUBY VERSION
|
|
116
|
-
ruby 2.
|
|
49
|
+
ruby 2.7.0p0
|
|
117
50
|
|
|
118
51
|
BUNDLED WITH
|
|
119
52
|
2.1.4
|
data/README.org
CHANGED
|
@@ -66,11 +66,12 @@ mvn org.eclipse.jetty:jetty-maven-plugin:9.4.12.v20180830:run-war
|
|
|
66
66
|
|
|
67
67
|
** Add Dependency
|
|
68
68
|
|
|
69
|
-
To add dependencies, you must be in the folder where the pom file
|
|
70
|
-
want to add the dependency to is.
|
|
69
|
+
To add dependencies, you must be in the folder where the pom file
|
|
70
|
+
you want to add the dependency to is.
|
|
71
71
|
|
|
72
|
-
To add a dependency, simply pass the coordinates of the dependency,
|
|
73
|
-
add scope if needed (if no scope is given, =compile= is
|
|
72
|
+
To add a dependency, simply pass the coordinates of the dependency,
|
|
73
|
+
and add scope if needed (if no scope is given, =compile= is
|
|
74
|
+
assumed):
|
|
74
75
|
|
|
75
76
|
#+BEGIN_EXAMPLE
|
|
76
77
|
mvnizer add org.apache.commons:commons-lang3:3.1:jar
|
|
@@ -82,8 +83,8 @@ dependencies for you.
|
|
|
82
83
|
|
|
83
84
|
** Dependency Search
|
|
84
85
|
|
|
85
|
-
You can search for dependencies in the Maven central repository with
|
|
86
|
-
command:
|
|
86
|
+
You can search for dependencies in the Maven central repository with
|
|
87
|
+
the command:
|
|
87
88
|
|
|
88
89
|
#+BEGIN_EXAMPLE
|
|
89
90
|
$ mvnizer search <text>
|
|
@@ -93,4 +94,4 @@ command:
|
|
|
93
94
|
|
|
94
95
|
MIT License.
|
|
95
96
|
|
|
96
|
-
© Copyright 2012–2020
|
|
97
|
+
© Copyright 2012–2020 — Sébastien Le Callonnec
|
data/Rakefile
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
1
|
+
# coding: utf-8
|
|
3
2
|
require 'rubygems'
|
|
4
3
|
require 'bundler'
|
|
5
4
|
begin
|
|
@@ -11,25 +10,6 @@ rescue Bundler::BundlerError => e
|
|
|
11
10
|
end
|
|
12
11
|
require 'rake'
|
|
13
12
|
|
|
14
|
-
require 'jeweler'
|
|
15
|
-
require './lib/mvnizer/version.rb'
|
|
16
|
-
Jeweler::Tasks.new do |gem|
|
|
17
|
-
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
|
18
|
-
gem.name = "mvnizer"
|
|
19
|
-
gem.version = Mvnizer::Version::STRING
|
|
20
|
-
gem.homepage = "http://github.com/tychobrailleur/mvnizer"
|
|
21
|
-
gem.license = "MIT"
|
|
22
|
-
gem.summary = %Q{Bootstrap a Maven project without the pain of archetypes.}
|
|
23
|
-
gem.description = %Q{Bootstrap a Maven project without the pain of archetypes.}
|
|
24
|
-
gem.email = "sebastien@weblogism.com"
|
|
25
|
-
gem.authors = ["Sébastien Le Callonnec"]
|
|
26
|
-
|
|
27
|
-
gem.executables = ['mvnizer']
|
|
28
|
-
# dependencies defined in Gemfile
|
|
29
|
-
end
|
|
30
|
-
Jeweler::RubygemsDotOrgTasks.new
|
|
31
|
-
|
|
32
|
-
require 'rspec/core'
|
|
33
13
|
require 'rspec/core/rake_task'
|
|
34
14
|
RSpec::Core::RakeTask.new(:spec) do |spec|
|
|
35
15
|
spec.pattern = FileList['spec/**/*_spec.rb']
|
|
@@ -51,5 +31,3 @@ Rake::RDocTask.new do |rdoc|
|
|
|
51
31
|
rdoc.rdoc_files.include('README*')
|
|
52
32
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
53
33
|
end
|
|
54
|
-
|
|
55
|
-
# -*- coding: utf-8 -*-
|
data/conf/default.yml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
group_id: com.example
|
|
2
2
|
version: 0.0.1-SNAPSHOT
|
|
3
3
|
type: jar
|
|
4
|
-
dependencies: [ "junit:junit:
|
|
5
|
-
plugins: [ ":maven-compiler-plugin:3.8.
|
|
4
|
+
dependencies: [ "org.junit.jupiter:junit-jupiter-engine:5.7.0:jar:test" ]
|
|
5
|
+
plugins: [ ":maven-compiler-plugin:3.8.1" ]
|
data/lib/mvnizer/version.rb
CHANGED
data/mvnizer.gemspec
CHANGED
|
@@ -1,110 +1,25 @@
|
|
|
1
|
-
|
|
2
|
-
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
|
-
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: mvnizer 0.9.0 ruby lib
|
|
1
|
+
require_relative 'lib/mvnizer/version'
|
|
6
2
|
|
|
7
3
|
Gem::Specification.new do |s|
|
|
8
|
-
s.name = "mvnizer"
|
|
9
|
-
s.version =
|
|
4
|
+
s.name = "mvnizer"
|
|
5
|
+
s.version = Mvnizer::Version::STRING
|
|
10
6
|
|
|
11
|
-
s.
|
|
12
|
-
s.
|
|
13
|
-
s.
|
|
14
|
-
s.
|
|
15
|
-
s.
|
|
16
|
-
s.
|
|
17
|
-
s.executables = ["mvnizer".freeze]
|
|
7
|
+
s.require_paths = ["lib"]
|
|
8
|
+
s.authors = ["S\u{e9}bastien Le Callonnec"]
|
|
9
|
+
s.date = "2020-10-21"
|
|
10
|
+
s.description = "Bootstrap a Maven project without the pain of archetypes."
|
|
11
|
+
s.email = "sebastien@weblogism.com"
|
|
12
|
+
s.executables = ["mvnizer"]
|
|
18
13
|
s.extra_rdoc_files = [
|
|
19
14
|
"LICENSE.txt",
|
|
20
15
|
"README.org"
|
|
21
16
|
]
|
|
22
|
-
s.files
|
|
23
|
-
".
|
|
24
|
-
".travis.yml",
|
|
25
|
-
"CHANGELOG.org",
|
|
26
|
-
"Dockerfile",
|
|
27
|
-
"Gemfile",
|
|
28
|
-
"Gemfile.lock",
|
|
29
|
-
"LICENSE.txt",
|
|
30
|
-
"README.org",
|
|
31
|
-
"Rakefile",
|
|
32
|
-
"TODO.org",
|
|
33
|
-
"bin/mvnizer",
|
|
34
|
-
"conf/default.yml",
|
|
35
|
-
"features/new_project.feature",
|
|
36
|
-
"features/search_artefact.feature",
|
|
37
|
-
"features/step_definitions/pom_steps.rb",
|
|
38
|
-
"features/support/env.rb",
|
|
39
|
-
"lib/mvnizer.rb",
|
|
40
|
-
"lib/mvnizer/commands.rb",
|
|
41
|
-
"lib/mvnizer/commands/add_dependency.rb",
|
|
42
|
-
"lib/mvnizer/commands/new_project.rb",
|
|
43
|
-
"lib/mvnizer/commands/new_war_project.rb",
|
|
44
|
-
"lib/mvnizer/commands/project_factory.rb",
|
|
45
|
-
"lib/mvnizer/commands/search_artefact.rb",
|
|
46
|
-
"lib/mvnizer/configuration.rb",
|
|
47
|
-
"lib/mvnizer/coordinate_parser.rb",
|
|
48
|
-
"lib/mvnizer/erb_helper.rb",
|
|
49
|
-
"lib/mvnizer/exceptions.rb",
|
|
50
|
-
"lib/mvnizer/mvnize.rb",
|
|
51
|
-
"lib/mvnizer/plugin.rb",
|
|
52
|
-
"lib/mvnizer/project.rb",
|
|
53
|
-
"lib/mvnizer/task_helper.rb",
|
|
54
|
-
"lib/mvnizer/templates/_dependency.xml.erb",
|
|
55
|
-
"lib/mvnizer/templates/_plugin.xml.erb",
|
|
56
|
-
"lib/mvnizer/templates/editorconfig.erb",
|
|
57
|
-
"lib/mvnizer/templates/gitignore.erb",
|
|
58
|
-
"lib/mvnizer/templates/pom.xml.erb",
|
|
59
|
-
"lib/mvnizer/templates/war/ExampleServlet.java.erb",
|
|
60
|
-
"lib/mvnizer/templates/war/index.jsp.erb",
|
|
61
|
-
"lib/mvnizer/templates/web.xml.erb",
|
|
62
|
-
"lib/mvnizer/version.rb",
|
|
63
|
-
"mvnizer.gemspec",
|
|
64
|
-
"ragel/coordinate.rb",
|
|
65
|
-
"ragel/coordinate.rl",
|
|
66
|
-
"ragel/test_coord.rb",
|
|
67
|
-
"spec/commands/add_dependency_spec.rb",
|
|
68
|
-
"spec/commands/new_project_spec.rb",
|
|
69
|
-
"spec/commands/new_war_project_spec.rb",
|
|
70
|
-
"spec/commands/project_factory_spec.rb",
|
|
71
|
-
"spec/commands/search_artefact_spec.rb",
|
|
72
|
-
"spec/configuration_spec.rb",
|
|
73
|
-
"spec/coordinate_parser_spec.rb",
|
|
74
|
-
"spec/dummy.txt.erb",
|
|
75
|
-
"spec/dummy_pom.xml",
|
|
76
|
-
"spec/mvnize_spec.rb",
|
|
77
|
-
"spec/project_spec.rb",
|
|
78
|
-
"spec/spec_helper.rb",
|
|
79
|
-
"spec/task_helper_spec.rb"
|
|
80
|
-
]
|
|
81
|
-
s.homepage = "http://github.com/tychobrailleur/mvnizer".freeze
|
|
82
|
-
s.licenses = ["MIT".freeze]
|
|
83
|
-
s.rubygems_version = "3.1.4".freeze
|
|
84
|
-
s.summary = "Bootstrap a Maven project without the pain of archetypes.".freeze
|
|
85
|
-
|
|
86
|
-
if s.respond_to? :specification_version then
|
|
87
|
-
s.specification_version = 4
|
|
17
|
+
s.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
|
18
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
88
19
|
end
|
|
89
20
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
s.add_development_dependency(%q<rspec>.freeze, ["~> 2.99"])
|
|
95
|
-
s.add_development_dependency(%q<rspec-mocks>.freeze, ["~> 2.99"])
|
|
96
|
-
s.add_development_dependency(%q<fakefs>.freeze, ["~> 0.14"])
|
|
97
|
-
s.add_development_dependency(%q<jeweler>.freeze, ["~> 2.3"])
|
|
98
|
-
s.add_development_dependency(%q<aruba>.freeze, ["~> 0.14"])
|
|
99
|
-
else
|
|
100
|
-
s.add_dependency(%q<httparty>.freeze, ["~> 0.16"])
|
|
101
|
-
s.add_dependency(%q<nokogiri>.freeze, ["~> 1.10"])
|
|
102
|
-
s.add_dependency(%q<rake>.freeze, ["< 11.0"])
|
|
103
|
-
s.add_dependency(%q<rspec>.freeze, ["~> 2.99"])
|
|
104
|
-
s.add_dependency(%q<rspec-mocks>.freeze, ["~> 2.99"])
|
|
105
|
-
s.add_dependency(%q<fakefs>.freeze, ["~> 0.14"])
|
|
106
|
-
s.add_dependency(%q<jeweler>.freeze, ["~> 2.3"])
|
|
107
|
-
s.add_dependency(%q<aruba>.freeze, ["~> 0.14"])
|
|
108
|
-
end
|
|
21
|
+
s.homepage = "http://github.com/tychobrailleur/mvnizer"
|
|
22
|
+
s.licenses = ["MIT"]
|
|
23
|
+
s.rubygems_version = "2.7.8"
|
|
24
|
+
s.summary = "Bootstrap a Maven project without the pain of archetypes."
|
|
109
25
|
end
|
|
110
|
-
|