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 +6 -1
- data/Rakefile +1 -1
- data/lib/commands/plugin/commands.rb +2 -0
- metadata +2 -2
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
|
@@ -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