jruby-warck 1.2.2 → 1.2.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 28f640870ea3351c416c8ec50352ba23452fa6ef
4
- data.tar.gz: 5ca5a2c5ce0f71551d7db5e9ca6f95eaa9379357
3
+ metadata.gz: 797b65aec6d48ec501a15b87020984e626fcd45e
4
+ data.tar.gz: 6734b3527a47d58418dafddf7b0f39ac2be1c0b7
5
5
  SHA512:
6
- metadata.gz: ca3100cef212e10015ead686bf5c6f79a95e892c55d706f1079df6d60d48317058e32084791d4581d05eed0bb3b39bc7a247e5b775becfad0f3770969928a8a5
7
- data.tar.gz: 6da16ee37dcb05e4dcf36a5e6087beb2632c15855ca692a286af6b52683461bb9a742eba48780b8b76b7a5508d52bb264bd0eb412b2e81c65905efb3ab2ea093
6
+ metadata.gz: 4e9d1e2fe6b1319816d8d66c43002f86f4aee29deac03150d3b27c7dd784b636fea420b0dd649f3bff9b870da496a9e6e3932aef3774057aea98e23b642e0ed3
7
+ data.tar.gz: 5e1501688e6db74ca8336aa8874e4674764b850e30bdf427948d7c941396f0cbaa62ab9ad540ac3df5100023e055e6a393bde0d7b4d97c40c2c08517ebbaf566
data/README.md CHANGED
@@ -16,8 +16,8 @@ Yes, it's like Warbler, but far simpler.
16
16
 
17
17
  1. change directory to the root of your application
18
18
  2. run "rake assets:precompile" if you've a Rails application.
19
- 3. run "warck package[war_name]" (If you need to compile the source code, use "warck package_compiled [war_name]" instead)
20
- 4. You can now deploy the resulting jar in a servlet container or run in standalone mode, i.e, java -jar [war_name].
19
+ 3. run "warck package[war_name]" (If you need to compile the source code, use "warck package_compiled[war_name]" instead)
20
+ 4. You can now deploy the resulting jar in a servlet container or run in standalone mode, i.e, java -jar [war_name].war
21
21
 
22
22
  ### Customizing what gets in the .war
23
23
 
@@ -7,7 +7,7 @@ module JrubyWarck
7
7
  HOME = File.expand_path(File.dirname(__FILE__) + '/../..') unless defined?(HOME)
8
8
 
9
9
  ADDITIONAL_CLASSPATH = FileList[IO.readlines(Dir.pwd + "/cp.entries").map(&:chomp).reject { |line| line.each_char.first == "#" }] rescue FileList[]
10
- CLASSPATH = "Class-Path: /opt/jruby/lib/jruby-complete/jruby-complete.jar#{ADDITIONAL_CLASSPATH}".scan(/.{70}/).join("\n ")
10
+ CLASSPATH = "Class-Path: /opt/jruby/lib/jruby-complete/jruby-complete.jar #{ADDITIONAL_CLASSPATH}".scan(/.{1,70}/).join("\n ")
11
11
 
12
12
  WEB_XML = <<-XML
13
13
  <!DOCTYPE web-app PUBLIC
@@ -2,7 +2,7 @@ module JrubyWarck
2
2
  module VERSION
3
3
  MAJOR = 1
4
4
  MINOR = 2
5
- PATCH = 2
5
+ PATCH = 3
6
6
 
7
7
  STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
 
metadata CHANGED
@@ -1,19 +1,19 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jruby-warck
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.2
4
+ version: 1.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nuno Correia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-16 00:00:00.000000000 Z
11
+ date: 2015-09-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
- - - ~>
16
+ - - "~>"
17
17
  - !ruby/object:Gem::Version
18
18
  version: '0'
19
19
  name: rack
@@ -21,13 +21,13 @@ dependencies:
21
21
  type: :runtime
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
30
- - - ~>
30
+ - - "~>"
31
31
  - !ruby/object:Gem::Version
32
32
  version: '0'
33
33
  name: jruby-rack
@@ -35,16 +35,16 @@ dependencies:
35
35
  type: :runtime
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  requirement: !ruby/object:Gem::Requirement
43
43
  requirements:
44
- - - ~>
44
+ - - "~>"
45
45
  - !ruby/object:Gem::Version
46
46
  version: '1.1'
47
- - - '>='
47
+ - - ">="
48
48
  - !ruby/object:Gem::Version
49
49
  version: 1.1.7
50
50
  name: rubyzip
@@ -52,10 +52,10 @@ dependencies:
52
52
  type: :runtime
53
53
  version_requirements: !ruby/object:Gem::Requirement
54
54
  requirements:
55
- - - ~>
55
+ - - "~>"
56
56
  - !ruby/object:Gem::Version
57
57
  version: '1.1'
58
- - - '>='
58
+ - - ">="
59
59
  - !ruby/object:Gem::Version
60
60
  version: 1.1.7
61
61
  description: Kinda like warbler, except WAR-only and contained in a single Rakefile.
@@ -66,15 +66,15 @@ executables:
66
66
  extensions: []
67
67
  extra_rdoc_files: []
68
68
  files:
69
- - .gitignore
70
- - .idea/compiler.xml
71
- - .idea/copyright/profiles_settings.xml
72
- - .idea/encodings.xml
73
- - .idea/misc.xml
74
- - .idea/modules.xml
75
- - .idea/rubygem-jruby-warck.iml
76
- - .idea/scopes/scope_settings.xml
77
- - .idea/vcs.xml
69
+ - ".gitignore"
70
+ - ".idea/compiler.xml"
71
+ - ".idea/copyright/profiles_settings.xml"
72
+ - ".idea/encodings.xml"
73
+ - ".idea/misc.xml"
74
+ - ".idea/modules.xml"
75
+ - ".idea/rubygem-jruby-warck.iml"
76
+ - ".idea/scopes/scope_settings.xml"
77
+ - ".idea/vcs.xml"
78
78
  - README.md
79
79
  - bin/warck
80
80
  - jruby-warck.gemspec
@@ -95,17 +95,17 @@ require_paths:
95
95
  - lib
96
96
  required_ruby_version: !ruby/object:Gem::Requirement
97
97
  requirements:
98
- - - '>='
98
+ - - ">="
99
99
  - !ruby/object:Gem::Version
100
100
  version: '0'
101
101
  required_rubygems_version: !ruby/object:Gem::Requirement
102
102
  requirements:
103
- - - '>='
103
+ - - ">="
104
104
  - !ruby/object:Gem::Version
105
105
  version: '0'
106
106
  requirements: []
107
107
  rubyforge_project:
108
- rubygems_version: 2.4.6
108
+ rubygems_version: 2.4.8
109
109
  signing_key:
110
110
  specification_version: 4
111
111
  summary: Kinda like warbler, except our way