warbler 0.9.4 → 0.9.5

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ == 0.9.5
2
+
3
+ * Fix bug in plugin warbler.rake task file that would favor loading warbler from gems before the version
4
+ installed as a plugin
5
+ * Upgrade to JRuby 1.1 final and Goldspike 1.6.1
6
+
1
7
  == 0.9.4
2
8
 
3
9
  * Update bundled JRuby to 1.1RC3 and Goldspike to 1.6.
data/Manifest.txt CHANGED
@@ -11,8 +11,8 @@ generators/warble/templates/warble.rb
11
11
  generators/warble/warble_generator.rb
12
12
  lib/activation-1.1.jar
13
13
  lib/commons-pool-1.3.jar
14
- lib/goldspike-1.6.jar
15
- lib/jruby-complete-1.1RC3.jar
14
+ lib/goldspike-1.6.1.jar
15
+ lib/jruby-complete-1.1.jar
16
16
  lib/warbler
17
17
  lib/warbler/config.rb
18
18
  lib/warbler/gems.rb
data/README.txt CHANGED
@@ -92,9 +92,13 @@ For Rails 1.2.3, the items that may need your attention are:
92
92
 
93
93
  == Source
94
94
 
95
- Warbler source is not currently located in Rubyforge's SVN. To get the source:
95
+ You can get the Warbler source using Git, in any of the following ways:
96
96
 
97
- svn co http://svn.caldersphere.net/svn/main/rubyforge/warbler/trunk warbler
97
+ git clone git://git.caldersphere.net/warbler.git
98
+ git clone http://git.caldersphere.net/warbler.git
99
+ git clone git://github.com/nicksieger/warbler.git
100
+
101
+ You can also download a tarball of Warbler source at http://github.com/nicksieger/warbler/tree/master.
98
102
 
99
103
  == License
100
104
 
data/bin/warble CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  #
3
3
  #--
4
- # (c) Copyright 2007 Nick Sieger <nicksieger@gmail.com>
4
+ # (c) Copyright 2007-2008 Nick Sieger <nicksieger@gmail.com>
5
5
  # See the file LICENSES.txt included with the distribution for
6
6
  # software license details.
7
7
  #++
@@ -1,5 +1,5 @@
1
1
  #--
2
- # (c) Copyright 2007 Nick Sieger <nicksieger@gmail.com>
2
+ # (c) Copyright 2007-2008 Nick Sieger <nicksieger@gmail.com>
3
3
  # See the file LICENSES.txt included with the distribution for
4
4
  # software license details.
5
5
  #++
data/lib/warbler.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #--
2
- # (c) Copyright 2007 Nick Sieger <nicksieger@gmail.com>
2
+ # (c) Copyright 2007-2008 Nick Sieger <nicksieger@gmail.com>
3
3
  # See the file LICENSES.txt included with the distribution for
4
4
  # software license details.
5
5
  #++
@@ -1,5 +1,5 @@
1
1
  #--
2
- # (c) Copyright 2007 Nick Sieger <nicksieger@gmail.com>
2
+ # (c) Copyright 2007-2008 Nick Sieger <nicksieger@gmail.com>
3
3
  # See the file LICENSES.txt included with the distribution for
4
4
  # software license details.
5
5
  #++
data/lib/warbler/task.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #--
2
- # (c) Copyright 2007 Nick Sieger <nicksieger@gmail.com>
2
+ # (c) Copyright 2007-2008 Nick Sieger <nicksieger@gmail.com>
3
3
  # See the file LICENSES.txt included with the distribution for
4
4
  # software license details.
5
5
  #++
@@ -1,9 +1,9 @@
1
1
  #--
2
- # (c) Copyright 2007 Nick Sieger <nicksieger@gmail.com>
2
+ # (c) Copyright 2007-2008 Nick Sieger <nicksieger@gmail.com>
3
3
  # See the file LICENSES.txt included with the distribution for
4
4
  # software license details.
5
5
  #++
6
6
 
7
7
  module Warbler
8
- VERSION = "0.9.4"
8
+ VERSION = "0.9.5"
9
9
  end
data/spec/spec_helper.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #--
2
- # (c) Copyright 2007 Nick Sieger <nicksieger@gmail.com>
2
+ # (c) Copyright 2007-2008 Nick Sieger <nicksieger@gmail.com>
3
3
  # See the file LICENSES.txt included with the distribution for
4
4
  # software license details.
5
5
  #++
@@ -1,5 +1,5 @@
1
1
  #--
2
- # (c) Copyright 2007 Nick Sieger <nicksieger@gmail.com>
2
+ # (c) Copyright 2007-2008 Nick Sieger <nicksieger@gmail.com>
3
3
  # See the file LICENSES.txt included with the distribution for
4
4
  # software license details.
5
5
  #++
@@ -1,5 +1,5 @@
1
1
  #--
2
- # (c) Copyright 2007 Nick Sieger <nicksieger@gmail.com>
2
+ # (c) Copyright 2007-2008 Nick Sieger <nicksieger@gmail.com>
3
3
  # See the file LICENSES.txt included with the distribution for
4
4
  # software license details.
5
5
  #++
data/tasks/warbler.rake CHANGED
@@ -1,22 +1,18 @@
1
1
  #--
2
- # (c) Copyright 2007 Nick Sieger <nicksieger@gmail.com>
2
+ # (c) Copyright 2007-2008 Nick Sieger <nicksieger@gmail.com>
3
3
  # See the file LICENSES.txt included with the distribution for
4
4
  # software license details.
5
5
  #++
6
6
 
7
7
  begin
8
- # First, try w/o activating gem or touching load path
8
+ # First, make sure plugin directory is at the front of the load path
9
+ # (to avoid picking up gem-installed warbler)
10
+ $LOAD_PATH.unshift(File.dirname(__FILE__) + '/../lib')
9
11
  require 'warbler'
10
12
  rescue LoadError
11
- begin
12
- # Next, try activating the gem
13
- gem 'warbler'
14
- require 'warbler'
15
- rescue Gem::LoadError
16
- # Last, add our lib dir to the load path, and try again
17
- $LOAD_PATH.unshift(File.dirname(__FILE__) + '/../lib')
18
- require 'warbler'
19
- end
13
+ # Next, try activating the gem
14
+ gem 'warbler'
15
+ require 'warbler'
20
16
  end
21
17
 
22
18
  Warbler::Task.new
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: warbler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.4
4
+ version: 0.9.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Sieger
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-03-25 00:00:00 -05:00
12
+ date: 2008-04-05 00:00:00 -05:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -46,8 +46,8 @@ files:
46
46
  - generators/warble/warble_generator.rb
47
47
  - lib/activation-1.1.jar
48
48
  - lib/commons-pool-1.3.jar
49
- - lib/goldspike-1.6.jar
50
- - lib/jruby-complete-1.1RC3.jar
49
+ - lib/goldspike-1.6.1.jar
50
+ - lib/jruby-complete-1.1.jar
51
51
  - lib/warbler
52
52
  - lib/warbler/config.rb
53
53
  - lib/warbler/gems.rb