warbler 1.3.5 → 1.3.6

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/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 1.3.6
2
+
3
+ - #100: fix winstone URL
4
+
1
5
  == 1.3.5
2
6
 
3
7
  - Add config.webserver to give choices for which lightweight Java
data/README.rdoc CHANGED
@@ -265,5 +265,5 @@ After that, simply run "rake".
265
265
 
266
266
  Warbler is provided under the terms of the MIT license.
267
267
 
268
- Warbler (c) 2010-2011 Engine Yard, Inc.
268
+ Warbler (c) 2010-2012 Engine Yard, Inc.
269
269
  Warbler (c) 2007-2009 Sun Microsystems, Inc.
@@ -6,5 +6,5 @@
6
6
  #++
7
7
 
8
8
  module Warbler
9
- VERSION = "1.3.5"
9
+ VERSION = "1.3.6"
10
10
  end
@@ -65,7 +65,7 @@ PROPS
65
65
 
66
66
  class JenkinsWinstoneServer < WinstoneServer
67
67
  def initialize
68
- @artifact = Artifact.new("http://maven.jenkins-ci.org/content/groups/artifacts",
68
+ @artifact = Artifact.new("http://maven.jenkins-ci.org/content/repositories/releases",
69
69
  "org.jenkins-ci", "winstone",
70
70
  ENV["WEBSERVER_VERSION"] || "0.9.10-jenkins-35")
71
71
  end
data/warble.rb CHANGED
@@ -109,6 +109,13 @@ Warbler::Config.new do |config|
109
109
  # Pathmaps for controlling how public HTML files are copied into the .war
110
110
  # config.pathmaps.public_html = ["%{public/,}p"]
111
111
 
112
+ # Embedded webserver to use with the 'executable' feature. Currently supported
113
+ # webservers are:
114
+ # * <tt>winstone</tt> (default) - Winstone 0.9.10 from sourceforge
115
+ # * <tt>jenkins-ci.winstone</tt> - Improved Winstone from Jenkins CI
116
+ # * <tt>jetty</tt> - Embedded Jetty from Eclipse
117
+ # config.webserver = 'jetty'
118
+
112
119
  # Value of RAILS_ENV for the webapp -- default as shown below
113
120
  # config.webxml.rails.env = ENV['RAILS_ENV'] || 'production'
114
121
 
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: warbler
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.3.5
5
+ version: 1.3.6
6
6
  platform: ruby
7
7
  authors:
8
8
  - Nick Sieger
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2012-04-03 00:00:00 Z
13
+ date: 2012-08-13 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rake
@@ -208,7 +208,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
208
208
  requirements: []
209
209
 
210
210
  rubyforge_project: caldersphere
211
- rubygems_version: 1.8.15
211
+ rubygems_version: 1.8.24
212
212
  signing_key:
213
213
  specification_version: 3
214
214
  summary: Warbler chirpily constructs .war files of your Rails applications.