Skip to content

Commit

Permalink
1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksieger committed Dec 1, 2011
1 parent 5ce0bad commit 46a1be0
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
9 changes: 9 additions & 0 deletions History.txt
@@ -1,3 +1,12 @@
== 1.3.3

- Move all jars to WEB-INF/lib, and leave an empty jar in the original
place
- Deal with private Kernel#gem method in recent RubyGems
- Deal with Gem::Specification#full_gem_path changes in RG 1.8.x
- GH #42: Tricks to allow Bundler to find git repo gems even when they
are excluded form production

== 1.3.2

- Compatibility with rake 0.9.x, avoid deprecation warnings and deal
Expand Down
Binary file modified lib/warbler_jar.jar
Binary file not shown.
17 changes: 8 additions & 9 deletions warbler.gemspec
Expand Up @@ -5,22 +5,21 @@ Gem::Specification.new do |s|
s.version = "1.3.3"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Nick Sieger"]
s.date = %q{2011-08-17}
s.default_executable = %q{warble}
s.authors = [%q{Nick Sieger}]
s.date = %q{2011-12-01}
s.description = %q{Warbler is a gem to make a Java jar or war file out of any Ruby,
Rails, Merb, or Rack application. Warbler provides a minimal,
flexible, Ruby-like way to bundle up all of your application files for
deployment to a Java environment.}
s.email = %q{nick@nicksieger.com}
s.executables = ["warble"]
s.extra_rdoc_files = ["History.txt", "LICENSE.txt", "Manifest.txt", "README.rdoc"]
s.files = ["Gemfile", "History.txt", "LICENSE.txt", "Manifest.txt", "README.rdoc", "Rakefile", "bin/warble", "ext/JarMain.java", "ext/WarMain.java", "ext/WarblerJar.java", "ext/WarblerJarService.java", "lib/warbler.rb", "lib/warbler/application.rb", "lib/warbler/config.rb", "lib/warbler/gems.rb", "lib/warbler/jar.rb", "lib/warbler/pathmap_helper.rb", "lib/warbler/rake_helper.rb", "lib/warbler/task.rb", "lib/warbler/templates/bundler.erb", "lib/warbler/templates/config.erb", "lib/warbler/templates/jar.erb", "lib/warbler/templates/rack.erb", "lib/warbler/templates/rails.erb", "lib/warbler/templates/war.erb", "lib/warbler/traits.rb", "lib/warbler/traits/bundler.rb", "lib/warbler/traits/gemspec.rb", "lib/warbler/traits/jar.rb", "lib/warbler/traits/merb.rb", "lib/warbler/traits/nogemspec.rb", "lib/warbler/traits/rack.rb", "lib/warbler/traits/rails.rb", "lib/warbler/traits/war.rb", "lib/warbler/version.rb", "lib/warbler/war.rb", "lib/warbler_jar.jar", "spec/drb_helper.rb", "spec/sample_bundler/Gemfile.lock", "spec/sample_bundler/config.ru", "spec/sample_bundler/vendor/bundle/jruby/1.8/cache/rake-0.8.7.gem", "spec/sample_bundler/vendor/bundle/jruby/1.8/gems/rake-0.8.7/lib/rake.rb", "spec/sample_bundler/vendor/bundle/jruby/1.8/specifications/rake-0.8.7.gemspec", "spec/sample_bundler/vendor/bundle/ruby/1.8/cache/rake-0.8.7.gem", "spec/sample_bundler/vendor/bundle/ruby/1.8/gems/rake-0.8.7/lib/rake.rb", "spec/sample_bundler/vendor/bundle/ruby/1.8/specifications/rake-0.8.7.gemspec", "spec/sample_bundler/vendor/bundle/ruby/1.9.1/cache/rake-0.8.7.gem", "spec/sample_bundler/vendor/bundle/ruby/1.9.1/gems/rake-0.8.7/lib/rake.rb", "spec/sample_bundler/vendor/bundle/ruby/1.9.1/specifications/rake-0.8.7.gemspec", "spec/sample_jar/History.txt", "spec/sample_jar/Manifest.txt", "spec/sample_jar/README.txt", "spec/sample_jar/lib/sample_jar.rb", "spec/sample_jar/sample_jar.gemspec", "spec/sample_jar/test/test_sample_jar.rb", "spec/sample_war/app/controllers/application.rb", "spec/sample_war/app/helpers/application_helper.rb", "spec/sample_war/config/boot.rb", "spec/sample_war/config/database.yml", "spec/sample_war/config/environment.rb", "spec/sample_war/config/environments/development.rb", "spec/sample_war/config/environments/production.rb", "spec/sample_war/config/environments/test.rb", "spec/sample_war/config/initializers/inflections.rb", "spec/sample_war/config/initializers/mime_types.rb", "spec/sample_war/config/initializers/new_rails_defaults.rb", "spec/sample_war/config/routes.rb", "spec/sample_war/lib/tasks/utils.rake", "spec/sample_war/public/404.html", "spec/sample_war/public/422.html", "spec/sample_war/public/500.html", "spec/sample_war/public/favicon.ico", "spec/sample_war/public/index.html", "spec/sample_war/public/robots.txt", "spec/spec_helper.rb", "spec/warbler/application_spec.rb", "spec/warbler/bundler_spec.rb", "spec/warbler/config_spec.rb", "spec/warbler/gems_spec.rb", "spec/warbler/jar_spec.rb", "spec/warbler/task_spec.rb", "spec/warbler/traits_spec.rb", "spec/warbler/war_spec.rb", "warble.rb", "web.xml.erb"]
s.executables = [%q{warble}]
s.extra_rdoc_files = [%q{History.txt}, %q{LICENSE.txt}, %q{Manifest.txt}]
s.files = [%q{Gemfile}, %q{History.txt}, %q{LICENSE.txt}, %q{Manifest.txt}, %q{README.rdoc}, %q{Rakefile}, %q{bin/warble}, %q{ext/JarMain.java}, %q{ext/WarMain.java}, %q{ext/WarblerJar.java}, %q{ext/WarblerJarService.java}, %q{lib/warbler.rb}, %q{lib/warbler/application.rb}, %q{lib/warbler/config.rb}, %q{lib/warbler/gems.rb}, %q{lib/warbler/jar.rb}, %q{lib/warbler/pathmap_helper.rb}, %q{lib/warbler/rake_helper.rb}, %q{lib/warbler/task.rb}, %q{lib/warbler/templates/bundler.erb}, %q{lib/warbler/templates/config.erb}, %q{lib/warbler/templates/jar.erb}, %q{lib/warbler/templates/rack.erb}, %q{lib/warbler/templates/rails.erb}, %q{lib/warbler/templates/war.erb}, %q{lib/warbler/traits.rb}, %q{lib/warbler/traits/bundler.rb}, %q{lib/warbler/traits/gemspec.rb}, %q{lib/warbler/traits/jar.rb}, %q{lib/warbler/traits/merb.rb}, %q{lib/warbler/traits/nogemspec.rb}, %q{lib/warbler/traits/rack.rb}, %q{lib/warbler/traits/rails.rb}, %q{lib/warbler/traits/war.rb}, %q{lib/warbler/version.rb}, %q{lib/warbler/war.rb}, %q{lib/warbler_jar.jar}, %q{spec/drb_helper.rb}, %q{spec/sample_bundler/Gemfile.lock}, %q{spec/sample_bundler/config.ru}, %q{spec/sample_bundler/vendor/bundle/jruby/1.8/cache/rake-0.8.7.gem}, %q{spec/sample_bundler/vendor/bundle/jruby/1.8/gems/rake-0.8.7/lib/rake.rb}, %q{spec/sample_bundler/vendor/bundle/jruby/1.8/specifications/rake-0.8.7.gemspec}, %q{spec/sample_bundler/vendor/bundle/ruby/1.8/cache/rake-0.8.7.gem}, %q{spec/sample_bundler/vendor/bundle/ruby/1.8/gems/rake-0.8.7/lib/rake.rb}, %q{spec/sample_bundler/vendor/bundle/ruby/1.8/specifications/rake-0.8.7.gemspec}, %q{spec/sample_bundler/vendor/bundle/ruby/1.9.1/cache/rake-0.8.7.gem}, %q{spec/sample_bundler/vendor/bundle/ruby/1.9.1/gems/rake-0.8.7/lib/rake.rb}, %q{spec/sample_bundler/vendor/bundle/ruby/1.9.1/specifications/rake-0.8.7.gemspec}, %q{spec/sample_jar/History.txt}, %q{spec/sample_jar/Manifest.txt}, %q{spec/sample_jar/README.txt}, %q{spec/sample_jar/lib/sample_jar.rb}, %q{spec/sample_jar/sample_jar.gemspec}, %q{spec/sample_jar/test/test_sample_jar.rb}, %q{spec/sample_war/app/controllers/application.rb}, %q{spec/sample_war/app/helpers/application_helper.rb}, %q{spec/sample_war/config/boot.rb}, %q{spec/sample_war/config/database.yml}, %q{spec/sample_war/config/environment.rb}, %q{spec/sample_war/config/environments/development.rb}, %q{spec/sample_war/config/environments/production.rb}, %q{spec/sample_war/config/environments/test.rb}, %q{spec/sample_war/config/initializers/inflections.rb}, %q{spec/sample_war/config/initializers/mime_types.rb}, %q{spec/sample_war/config/initializers/new_rails_defaults.rb}, %q{spec/sample_war/config/routes.rb}, %q{spec/sample_war/lib/tasks/utils.rake}, %q{spec/sample_war/public/404.html}, %q{spec/sample_war/public/422.html}, %q{spec/sample_war/public/500.html}, %q{spec/sample_war/public/favicon.ico}, %q{spec/sample_war/public/index.html}, %q{spec/sample_war/public/robots.txt}, %q{spec/spec_helper.rb}, %q{spec/warbler/application_spec.rb}, %q{spec/warbler/bundler_spec.rb}, %q{spec/warbler/config_spec.rb}, %q{spec/warbler/gems_spec.rb}, %q{spec/warbler/jar_spec.rb}, %q{spec/warbler/task_spec.rb}, %q{spec/warbler/traits_spec.rb}, %q{spec/warbler/war_spec.rb}, %q{warble.rb}, %q{web.xml.erb}]
s.homepage = %q{http://caldersphere.rubyforge.org/warbler}
s.rdoc_options = ["--main", "README.rdoc", "-SHN", "-f", "darkfish"]
s.require_paths = ["lib"]
s.rdoc_options = [%q{--main}, %q{README.rdoc}, %q{-SHN}, %q{-f}, %q{darkfish}]
s.require_paths = [%q{lib}]
s.rubyforge_project = %q{caldersphere}
s.rubygems_version = %q{1.5.1}
s.rubygems_version = %q{1.8.9}
s.summary = %q{Warbler chirpily constructs .war files of your Rails applications.}

if s.respond_to? :specification_version then
Expand Down

0 comments on commit 46a1be0

Please sign in to comment.