maven-tools 1.0.13 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Mavenfile +13 -12
- data/lib/maven/tools/dsl.rb +54 -7
- data/lib/maven/tools/dsl/gem_support.rb +4 -4
- data/lib/maven/tools/dsl/jarfile.rb +8 -1
- data/lib/maven/tools/dsl/jarfile_lock.rb +2 -1
- data/lib/maven/tools/dsl/profile_gemspec.rb +4 -0
- data/lib/maven/tools/dsl/project_gemspec.rb +1 -0
- data/lib/maven/tools/model.rb +7 -0
- data/lib/maven/tools/version.rb +1 -1
- data/lib/maven/tools/versions.rb +5 -5
- data/lib/maven/tools/visitor.rb +4 -1
- data/spec/dsl/gemspec_spec/jars_and_poms.xml +2 -1
- data/spec/dsl/gemspec_spec/jars_and_poms_include_jars.xml +2 -1
- data/spec/dsl/gemspec_spec/maven-tools.xml +2 -1
- data/spec/dsl/jarfile_lock_spec/Jarfile.legacy.lock +1 -1
- data/spec/dsl/jarfile_lock_spec/Jarfile.lock +3 -3
- data/spec/dsl/profile_gemspec_spec/jars_and_poms.xml +11 -3
- data/spec/dsl/profile_gemspec_spec/jars_and_poms_include_jars.xml +11 -3
- data/spec/dsl/profile_gemspec_spec/maven-tools.xml +11 -3
- data/spec/dsl/profile_gemspec_spec/no_gems.xml +11 -3
- data/spec/dsl/profile_gemspec_spec/snapshot.xml +11 -3
- data/spec/dsl/profile_gemspec_spec/unknown_license.xml +11 -3
- data/spec/dsl/project_gemspec_spec/extended.xml +9 -3
- data/spec/dsl/project_gemspec_spec/jars_and_poms.xml +9 -3
- data/spec/dsl/project_gemspec_spec/jars_and_poms_include_jars.xml +9 -3
- data/spec/dsl/project_gemspec_spec/maven-tools.xml +9 -3
- data/spec/dsl/project_gemspec_spec/no_gems.xml +9 -3
- data/spec/dsl/project_gemspec_spec/profile.xml +9 -3
- data/spec/dsl/project_gemspec_spec/snapshot.xml +9 -3
- data/spec/dsl/project_gemspec_spec/unknown_license.xml +9 -3
- data/spec/gemfile/pom.xml +9 -3
- data/spec/gemfile_include_jars/pom.xml +9 -3
- data/spec/gemfile_with_access_to_model/pom.xml +9 -3
- data/spec/gemfile_with_custom_source/Mavenfile +1 -1
- data/spec/gemfile_with_custom_source/pom.xml +9 -3
- data/spec/gemfile_with_custom_source_and_custom_jarname/Mavenfile +1 -1
- data/spec/gemfile_with_custom_source_and_custom_jarname/pom.xml +9 -3
- data/spec/gemfile_with_extras/pom.xml +9 -3
- data/spec/gemfile_with_groups/pom.xml +11 -3
- data/spec/gemfile_with_groups_and_lockfile/pom.xml +13 -5
- data/spec/gemfile_with_jars_lock/pom.xml +11 -3
- data/spec/gemfile_with_lock/Gemfile +1 -0
- data/spec/gemfile_with_lock/Gemfile.lock +1 -1
- data/spec/gemfile_with_lock/pom.xml +13 -7
- data/spec/gemfile_with_path/pom.xml +11 -3
- data/spec/gemfile_with_platforms/pom.xml +11 -3
- data/spec/gemfile_with_source/Gemfile +3 -0
- data/spec/gemfile_with_source/Mavenfile +1 -1
- data/spec/gemfile_with_source/pom.xml +9 -3
- data/spec/gemfile_with_source_and_custom_jarname/Mavenfile +1 -1
- data/spec/gemfile_with_source_and_custom_jarname/pom.xml +9 -3
- data/spec/gemfile_with_source_and_no_jar/Mavenfile +1 -1
- data/spec/gemfile_with_source_and_no_jar/pom.xml +9 -3
- data/spec/gemfile_with_test_group/pom.xml +21 -13
- data/spec/gemfile_with_two_sources/Gemfile +6 -0
- data/spec/gemfile_with_two_sources/Mavenfile +5 -0
- data/spec/gemfile_with_two_sources/pom.xml +58 -0
- data/spec/gemfile_without_gemspec/pom.xml +11 -3
- data/spec/gemspec/pom.xml +9 -3
- data/spec/gemspec_in_profile/pom.xml +13 -3
- data/spec/gemspec_include_jars/pom.xml +9 -3
- data/spec/gemspec_no_rubygems_repo/pom.xml +7 -1
- data/spec/gemspec_prerelease/pom.xml +9 -3
- data/spec/gemspec_prerelease_snapshot/pom.xml +9 -3
- data/spec/gemspec_with_access_to_model/pom.xml +9 -3
- data/spec/gemspec_with_custom_source/pom.xml +9 -3
- data/spec/gemspec_with_custom_source_and_custom_jarname/pom.xml +9 -3
- data/spec/gemspec_with_extras/pom.xml +9 -3
- data/spec/gemspec_with_jar_dependencies/pom.xml +9 -3
- data/spec/gemspec_with_jars_lock/pom.xml +9 -3
- data/spec/gemspec_with_prereleased_dependency/pom.xml +9 -3
- data/spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml +7 -1
- data/spec/gemspec_with_source/pom.xml +9 -3
- data/spec/gemspec_with_source_and_custom_jarname/pom.xml +9 -3
- data/spec/gemspec_with_source_and_no_jar/pom.xml +9 -3
- data/spec/mavenfile/Mavenfile +9 -9
- data/spec/mavenfile_jrubyJar/pom.xml +2 -2
- data/spec/mavenfile_jrubyWar/pom.xml +2 -2
- data/spec/pom.xml +3 -1
- data/spec/pom_from_jarfile/pom.xml +1 -1
- data/spec/pom_maven_alternative_style/pom.rb +3 -1
- data/spec/pom_maven_hash_style/pom.rb +3 -1
- data/spec/pom_maven_style/pom.rb +3 -1
- data/spec/pom_spec.rb +1 -1
- data/spec/pom_with_execute/pom.xml +2 -2
- metadata +19 -11
@@ -30,7 +30,8 @@
|
|
30
30
|
</scm>
|
31
31
|
<properties>
|
32
32
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
33
|
-
<jruby.plugins.version>1.1.
|
33
|
+
<jruby.plugins.version>1.1.4</jruby.plugins.version>
|
34
|
+
<mavengem.wagon.version>0.2.0</mavengem.wagon.version>
|
34
35
|
</properties>
|
35
36
|
<dependencies>
|
36
37
|
<dependency>
|
@@ -49,13 +50,18 @@
|
|
49
50
|
</dependencies>
|
50
51
|
<repositories>
|
51
52
|
<repository>
|
52
|
-
<id>
|
53
|
-
<url>
|
53
|
+
<id>mavengems</id>
|
54
|
+
<url>mavengem:https://rubygems.org</url>
|
54
55
|
</repository>
|
55
56
|
</repositories>
|
56
57
|
<build>
|
57
58
|
<sourceDirectory>src/java</sourceDirectory>
|
58
59
|
<extensions>
|
60
|
+
<extension>
|
61
|
+
<groupId>org.torquebox.mojo</groupId>
|
62
|
+
<artifactId>mavengem-wagon</artifactId>
|
63
|
+
<version>${mavengem.wagon.version}</version>
|
64
|
+
</extension>
|
59
65
|
<extension>
|
60
66
|
<groupId>de.saumya.mojo</groupId>
|
61
67
|
<artifactId>gem-with-jar-extension</artifactId>
|
@@ -30,7 +30,8 @@
|
|
30
30
|
</scm>
|
31
31
|
<properties>
|
32
32
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
33
|
-
<jruby.plugins.version>1.1.
|
33
|
+
<jruby.plugins.version>1.1.4</jruby.plugins.version>
|
34
|
+
<mavengem.wagon.version>0.2.0</mavengem.wagon.version>
|
34
35
|
<tesla.dump.pom>pom.xml</tesla.dump.pom>
|
35
36
|
<tesla.dump.readonly>true</tesla.dump.readonly>
|
36
37
|
</properties>
|
@@ -48,12 +49,17 @@
|
|
48
49
|
</dependencies>
|
49
50
|
<repositories>
|
50
51
|
<repository>
|
51
|
-
<id>
|
52
|
-
<url>
|
52
|
+
<id>mavengems</id>
|
53
|
+
<url>mavengem:https://rubygems.org</url>
|
53
54
|
</repository>
|
54
55
|
</repositories>
|
55
56
|
<build>
|
56
57
|
<extensions>
|
58
|
+
<extension>
|
59
|
+
<groupId>org.torquebox.mojo</groupId>
|
60
|
+
<artifactId>mavengem-wagon</artifactId>
|
61
|
+
<version>${mavengem.wagon.version}</version>
|
62
|
+
</extension>
|
57
63
|
<extension>
|
58
64
|
<groupId>de.saumya.mojo</groupId>
|
59
65
|
<artifactId>gem-extension</artifactId>
|
@@ -17,7 +17,8 @@
|
|
17
17
|
<name>gemfile_with_groups</name>
|
18
18
|
<properties>
|
19
19
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
20
|
-
<jruby.plugins.version>1.1.
|
20
|
+
<jruby.plugins.version>1.1.4</jruby.plugins.version>
|
21
|
+
<mavengem.wagon.version>0.2.0</mavengem.wagon.version>
|
21
22
|
</properties>
|
22
23
|
<dependencies>
|
23
24
|
<dependency>
|
@@ -58,11 +59,18 @@
|
|
58
59
|
</dependencies>
|
59
60
|
<repositories>
|
60
61
|
<repository>
|
61
|
-
<id>
|
62
|
-
<url>
|
62
|
+
<id>mavengems</id>
|
63
|
+
<url>mavengem:https://rubygems.org</url>
|
63
64
|
</repository>
|
64
65
|
</repositories>
|
65
66
|
<build>
|
67
|
+
<extensions>
|
68
|
+
<extension>
|
69
|
+
<groupId>org.torquebox.mojo</groupId>
|
70
|
+
<artifactId>mavengem-wagon</artifactId>
|
71
|
+
<version>${mavengem.wagon.version}</version>
|
72
|
+
</extension>
|
73
|
+
</extensions>
|
66
74
|
<directory>${basedir}/pkg</directory>
|
67
75
|
<plugins>
|
68
76
|
<plugin>
|
@@ -17,15 +17,23 @@
|
|
17
17
|
<name>gemfile_with_groups_and_lockfile</name>
|
18
18
|
<properties>
|
19
19
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
20
|
-
<jruby.plugins.version>1.1.
|
20
|
+
<jruby.plugins.version>1.1.4</jruby.plugins.version>
|
21
|
+
<mavengem.wagon.version>0.2.0</mavengem.wagon.version>
|
21
22
|
</properties>
|
22
23
|
<repositories>
|
23
24
|
<repository>
|
24
|
-
<id>
|
25
|
-
<url>
|
25
|
+
<id>mavengems</id>
|
26
|
+
<url>mavengem:https://rubygems.org</url>
|
26
27
|
</repository>
|
27
28
|
</repositories>
|
28
29
|
<build>
|
30
|
+
<extensions>
|
31
|
+
<extension>
|
32
|
+
<groupId>org.torquebox.mojo</groupId>
|
33
|
+
<artifactId>mavengem-wagon</artifactId>
|
34
|
+
<version>${mavengem.wagon.version}</version>
|
35
|
+
</extension>
|
36
|
+
</extensions>
|
29
37
|
<directory>${basedir}/pkg</directory>
|
30
38
|
<plugins>
|
31
39
|
<plugin>
|
@@ -93,8 +101,8 @@
|
|
93
101
|
<gems>
|
94
102
|
<copyright-header>1.0.12</copyright-header>
|
95
103
|
<github-linguist>2.6.7</github-linguist>
|
96
|
-
<
|
97
|
-
<
|
104
|
+
<charlock_holmes>0.6.9.4</charlock_holmes>
|
105
|
+
<escape_utils>0.3.2</escape_utils>
|
98
106
|
<mime-types>1.25.1</mime-types>
|
99
107
|
<pygments.rb>0.4.2</pygments.rb>
|
100
108
|
<posix-spawn>0.3.8</posix-spawn>
|
@@ -17,15 +17,23 @@
|
|
17
17
|
<name>gemfile_with_jars_lock</name>
|
18
18
|
<properties>
|
19
19
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
20
|
-
<jruby.plugins.version>1.1.
|
20
|
+
<jruby.plugins.version>1.1.4</jruby.plugins.version>
|
21
|
+
<mavengem.wagon.version>0.2.0</mavengem.wagon.version>
|
21
22
|
</properties>
|
22
23
|
<repositories>
|
23
24
|
<repository>
|
24
|
-
<id>
|
25
|
-
<url>
|
25
|
+
<id>mavengems</id>
|
26
|
+
<url>mavengem:https://rubygems.org</url>
|
26
27
|
</repository>
|
27
28
|
</repositories>
|
28
29
|
<build>
|
30
|
+
<extensions>
|
31
|
+
<extension>
|
32
|
+
<groupId>org.torquebox.mojo</groupId>
|
33
|
+
<artifactId>mavengem-wagon</artifactId>
|
34
|
+
<version>${mavengem.wagon.version}</version>
|
35
|
+
</extension>
|
36
|
+
</extensions>
|
29
37
|
<directory>${basedir}/pkg</directory>
|
30
38
|
<plugins>
|
31
39
|
<plugin>
|
@@ -30,7 +30,8 @@
|
|
30
30
|
</scm>
|
31
31
|
<properties>
|
32
32
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
33
|
-
<jruby.plugins.version>1.1.
|
33
|
+
<jruby.plugins.version>1.1.4</jruby.plugins.version>
|
34
|
+
<mavengem.wagon.version>0.2.0</mavengem.wagon.version>
|
34
35
|
</properties>
|
35
36
|
<dependencies>
|
36
37
|
<dependency>
|
@@ -46,12 +47,17 @@
|
|
46
47
|
</dependencies>
|
47
48
|
<repositories>
|
48
49
|
<repository>
|
49
|
-
<id>
|
50
|
-
<url>http://
|
50
|
+
<id>http_localhost_8081_gems</id>
|
51
|
+
<url>mavengem:http://localhost:8081/gems</url>
|
51
52
|
</repository>
|
52
53
|
</repositories>
|
53
54
|
<build>
|
54
55
|
<extensions>
|
56
|
+
<extension>
|
57
|
+
<groupId>org.torquebox.mojo</groupId>
|
58
|
+
<artifactId>mavengem-wagon</artifactId>
|
59
|
+
<version>${mavengem.wagon.version}</version>
|
60
|
+
</extension>
|
55
61
|
<extension>
|
56
62
|
<groupId>de.saumya.mojo</groupId>
|
57
63
|
<artifactId>gem-extension</artifactId>
|
@@ -125,12 +131,12 @@
|
|
125
131
|
<gems>
|
126
132
|
<virtus>1.0.2</virtus>
|
127
133
|
<axiom-types>0.1.1</axiom-types>
|
128
|
-
<
|
129
|
-
<
|
130
|
-
<
|
134
|
+
<descendants_tracker>0.0.4</descendants_tracker>
|
135
|
+
<thread_safe>0.3.3</thread_safe>
|
136
|
+
<ice_nine>0.11.0</ice_nine>
|
131
137
|
<coercible>1.0.1</coercible>
|
132
138
|
<equalizer>0.1.0</equalizer>
|
133
|
-
<rake>10.
|
139
|
+
<rake>10.3.0</rake>
|
134
140
|
</gems>
|
135
141
|
</configuration>
|
136
142
|
</execution>
|
@@ -17,7 +17,8 @@
|
|
17
17
|
<name>gemfile_with_path</name>
|
18
18
|
<properties>
|
19
19
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
20
|
-
<jruby.plugins.version>1.1.
|
20
|
+
<jruby.plugins.version>1.1.4</jruby.plugins.version>
|
21
|
+
<mavengem.wagon.version>0.2.0</mavengem.wagon.version>
|
21
22
|
</properties>
|
22
23
|
<dependencies>
|
23
24
|
<dependency>
|
@@ -36,11 +37,18 @@
|
|
36
37
|
</dependencies>
|
37
38
|
<repositories>
|
38
39
|
<repository>
|
39
|
-
<id>
|
40
|
-
<url>
|
40
|
+
<id>mavengems</id>
|
41
|
+
<url>mavengem:https://rubygems.org</url>
|
41
42
|
</repository>
|
42
43
|
</repositories>
|
43
44
|
<build>
|
45
|
+
<extensions>
|
46
|
+
<extension>
|
47
|
+
<groupId>org.torquebox.mojo</groupId>
|
48
|
+
<artifactId>mavengem-wagon</artifactId>
|
49
|
+
<version>${mavengem.wagon.version}</version>
|
50
|
+
</extension>
|
51
|
+
</extensions>
|
44
52
|
<directory>${basedir}/pkg</directory>
|
45
53
|
<plugins>
|
46
54
|
<plugin>
|
@@ -17,7 +17,8 @@
|
|
17
17
|
<name>gemfile_with_platforms</name>
|
18
18
|
<properties>
|
19
19
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
20
|
-
<jruby.plugins.version>1.1.
|
20
|
+
<jruby.plugins.version>1.1.4</jruby.plugins.version>
|
21
|
+
<mavengem.wagon.version>0.2.0</mavengem.wagon.version>
|
21
22
|
</properties>
|
22
23
|
<dependencies>
|
23
24
|
<dependency>
|
@@ -35,11 +36,18 @@
|
|
35
36
|
</dependencies>
|
36
37
|
<repositories>
|
37
38
|
<repository>
|
38
|
-
<id>
|
39
|
-
<url>
|
39
|
+
<id>mavengems</id>
|
40
|
+
<url>mavengem:https://rubygems.org</url>
|
40
41
|
</repository>
|
41
42
|
</repositories>
|
42
43
|
<build>
|
44
|
+
<extensions>
|
45
|
+
<extension>
|
46
|
+
<groupId>org.torquebox.mojo</groupId>
|
47
|
+
<artifactId>mavengem-wagon</artifactId>
|
48
|
+
<version>${mavengem.wagon.version}</version>
|
49
|
+
</extension>
|
50
|
+
</extensions>
|
43
51
|
<directory>${basedir}/pkg</directory>
|
44
52
|
<plugins>
|
45
53
|
<plugin>
|
@@ -30,7 +30,8 @@
|
|
30
30
|
</scm>
|
31
31
|
<properties>
|
32
32
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
33
|
-
<jruby.plugins.version>1.1.
|
33
|
+
<jruby.plugins.version>1.1.4</jruby.plugins.version>
|
34
|
+
<mavengem.wagon.version>0.2.0</mavengem.wagon.version>
|
34
35
|
</properties>
|
35
36
|
<dependencies>
|
36
37
|
<dependency>
|
@@ -46,12 +47,17 @@
|
|
46
47
|
</dependencies>
|
47
48
|
<repositories>
|
48
49
|
<repository>
|
49
|
-
<id>
|
50
|
-
<url>
|
50
|
+
<id>mavengems</id>
|
51
|
+
<url>mavengem:https://rubygems.org</url>
|
51
52
|
</repository>
|
52
53
|
</repositories>
|
53
54
|
<build>
|
54
55
|
<extensions>
|
56
|
+
<extension>
|
57
|
+
<groupId>org.torquebox.mojo</groupId>
|
58
|
+
<artifactId>mavengem-wagon</artifactId>
|
59
|
+
<version>${mavengem.wagon.version}</version>
|
60
|
+
</extension>
|
55
61
|
<extension>
|
56
62
|
<groupId>de.saumya.mojo</groupId>
|
57
63
|
<artifactId>gem-with-jar-extension</artifactId>
|
@@ -30,7 +30,8 @@
|
|
30
30
|
</scm>
|
31
31
|
<properties>
|
32
32
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
33
|
-
<jruby.plugins.version>1.1.
|
33
|
+
<jruby.plugins.version>1.1.4</jruby.plugins.version>
|
34
|
+
<mavengem.wagon.version>0.2.0</mavengem.wagon.version>
|
34
35
|
</properties>
|
35
36
|
<dependencies>
|
36
37
|
<dependency>
|
@@ -49,12 +50,17 @@
|
|
49
50
|
</dependencies>
|
50
51
|
<repositories>
|
51
52
|
<repository>
|
52
|
-
<id>
|
53
|
-
<url>
|
53
|
+
<id>mavengems</id>
|
54
|
+
<url>mavengem:https://rubygems.org</url>
|
54
55
|
</repository>
|
55
56
|
</repositories>
|
56
57
|
<build>
|
57
58
|
<extensions>
|
59
|
+
<extension>
|
60
|
+
<groupId>org.torquebox.mojo</groupId>
|
61
|
+
<artifactId>mavengem-wagon</artifactId>
|
62
|
+
<version>${mavengem.wagon.version}</version>
|
63
|
+
</extension>
|
58
64
|
<extension>
|
59
65
|
<groupId>de.saumya.mojo</groupId>
|
60
66
|
<artifactId>gem-with-jar-extension</artifactId>
|
@@ -30,7 +30,8 @@
|
|
30
30
|
</scm>
|
31
31
|
<properties>
|
32
32
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
33
|
-
<jruby.plugins.version>1.1.
|
33
|
+
<jruby.plugins.version>1.1.4</jruby.plugins.version>
|
34
|
+
<mavengem.wagon.version>0.2.0</mavengem.wagon.version>
|
34
35
|
</properties>
|
35
36
|
<dependencies>
|
36
37
|
<dependency>
|
@@ -49,12 +50,17 @@
|
|
49
50
|
</dependencies>
|
50
51
|
<repositories>
|
51
52
|
<repository>
|
52
|
-
<id>
|
53
|
-
<url>
|
53
|
+
<id>mavengems</id>
|
54
|
+
<url>mavengem:https://rubygems.org</url>
|
54
55
|
</repository>
|
55
56
|
</repositories>
|
56
57
|
<build>
|
57
58
|
<extensions>
|
59
|
+
<extension>
|
60
|
+
<groupId>org.torquebox.mojo</groupId>
|
61
|
+
<artifactId>mavengem-wagon</artifactId>
|
62
|
+
<version>${mavengem.wagon.version}</version>
|
63
|
+
</extension>
|
58
64
|
<extension>
|
59
65
|
<groupId>de.saumya.mojo</groupId>
|
60
66
|
<artifactId>gem-extension</artifactId>
|
@@ -8,15 +8,23 @@
|
|
8
8
|
<name>gemfile_with_test_group</name>
|
9
9
|
<properties>
|
10
10
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
11
|
-
<jruby.plugins.version>1.1.
|
11
|
+
<jruby.plugins.version>1.1.4</jruby.plugins.version>
|
12
|
+
<mavengem.wagon.version>0.2.0</mavengem.wagon.version>
|
12
13
|
</properties>
|
13
14
|
<repositories>
|
14
15
|
<repository>
|
15
|
-
<id>
|
16
|
-
<url>
|
16
|
+
<id>mavengems</id>
|
17
|
+
<url>mavengem:https://rubygems.org</url>
|
17
18
|
</repository>
|
18
19
|
</repositories>
|
19
20
|
<build>
|
21
|
+
<extensions>
|
22
|
+
<extension>
|
23
|
+
<groupId>org.torquebox.mojo</groupId>
|
24
|
+
<artifactId>mavengem-wagon</artifactId>
|
25
|
+
<version>${mavengem.wagon.version}</version>
|
26
|
+
</extension>
|
27
|
+
</extensions>
|
20
28
|
<directory>${basedir}/pkg</directory>
|
21
29
|
<plugins>
|
22
30
|
<plugin>
|
@@ -188,27 +196,27 @@
|
|
188
196
|
<i18n>0.6.9</i18n>
|
189
197
|
<json>1.8.1</json>
|
190
198
|
<minitest>5.3.3</minitest>
|
191
|
-
<
|
199
|
+
<thread_safe>0.3.3</thread_safe>
|
192
200
|
<tzinfo>1.1.0</tzinfo>
|
193
201
|
<builder>3.2.2</builder>
|
194
202
|
<arel>5.0.1.20140414130214</arel>
|
195
203
|
<activerecord-jdbcmysql-adapter>1.3.7</activerecord-jdbcmysql-adapter>
|
196
204
|
<activerecord-jdbc-adapter>1.3.7</activerecord-jdbc-adapter>
|
197
205
|
<jdbc-mysql>5.1.30</jdbc-mysql>
|
198
|
-
<
|
206
|
+
<newrelic_rpm>3.8.1.221</newrelic_rpm>
|
199
207
|
<aws-sdk>1.40.3</aws-sdk>
|
200
208
|
<nokogiri>1.6.1</nokogiri>
|
201
|
-
<
|
209
|
+
<mini_portile>0.5.3</mini_portile>
|
202
210
|
<grape>0.7.0</grape>
|
203
211
|
<hashie>2.1.1</hashie>
|
204
|
-
<
|
205
|
-
<
|
212
|
+
<multi_json>1.10.0</multi_json>
|
213
|
+
<multi_xml>0.5.5</multi_xml>
|
206
214
|
<rack-accept>0.4.5</rack-accept>
|
207
215
|
<rack-mount>0.8.3</rack-mount>
|
208
216
|
<virtus>1.0.2</virtus>
|
209
217
|
<axiom-types>0.1.1</axiom-types>
|
210
|
-
<
|
211
|
-
<
|
218
|
+
<descendants_tracker>0.0.4</descendants_tracker>
|
219
|
+
<ice_nine>0.11.0</ice_nine>
|
212
220
|
<coercible>1.0.0</coercible>
|
213
221
|
<equalizer>0.0.9</equalizer>
|
214
222
|
</gems>
|
@@ -237,13 +245,13 @@
|
|
237
245
|
<webmock>1.16.1</webmock>
|
238
246
|
<addressable>2.3.6</addressable>
|
239
247
|
<crack>0.4.2</crack>
|
240
|
-
<
|
241
|
-
<
|
248
|
+
<safe_yaml>1.0.3</safe_yaml>
|
249
|
+
<fake_sqs>0.1.0</fake_sqs>
|
242
250
|
<sinatra>1.4.5</sinatra>
|
243
251
|
<rack-protection>1.5.3</rack-protection>
|
244
252
|
<tilt>1.4.1</tilt>
|
245
253
|
<rack-test>0.6.2</rack-test>
|
246
|
-
<
|
254
|
+
<database_cleaner>1.2.0</database_cleaner>
|
247
255
|
<shoulda-matchers>2.6.1</shoulda-matchers>
|
248
256
|
</gems>
|
249
257
|
</configuration>
|