rapt 0.2.0 → 0.2.1

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/CHANGELOG CHANGED
@@ -1,6 +1,11 @@
1
+ = 0.2.1
2
+
3
+ * Fixed minor bug with URL mangling and added a warning about running rapt
4
+ outside of a Rails application directory (#5157) [BC]
5
+
1
6
  = 0.2.0
2
7
 
3
- * Added search
8
+ * Added search [BC]
4
9
  * Added --force-http option to force http download method [LR]
5
10
  * Added --svn option to add installed files to subversion with svn add [LR]
6
11
 
data/Rakefile CHANGED
@@ -10,7 +10,7 @@ $:.unshift(File.dirname(__FILE__) + "/lib/commands")
10
10
  require 'plugin'
11
11
 
12
12
  PKG_NAME = 'rapt'
13
- PKG_VERSION = '0.2.0'
13
+ PKG_VERSION = '0.2.1'
14
14
  PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
15
15
 
16
16
  RELEASE_NAME = "REL #{PKG_VERSION}"
@@ -115,6 +115,8 @@ module Commands
115
115
 
116
116
  def self.parse!(args=ARGV)
117
117
  Plugin.new.parse!(args)
118
+ rescue NoMethodError
119
+ puts "Error: RaPT currently does not work outside of a Rails application directory. Please change to the top level of a Rails application and try again."
118
120
  end
119
121
  end
120
122
 
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: rapt
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.2.0
7
- date: 2006-10-26 00:00:00 -07:00
6
+ version: 0.2.1
7
+ date: 2006-10-27 00:00:00 -07:00
8
8
  summary: Rails Plugin Tool.
9
9
  require_paths:
10
10
  - lib