resat 0.7.0 → 0.7.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/Rakefile +2 -1
- data/bin/resat +1 -2
- data/lib/resat.rb +6 -2
- metadata +1 -1
data/Rakefile
CHANGED
data/bin/resat
CHANGED
|
@@ -58,11 +58,10 @@ require 'date'
|
|
|
58
58
|
require 'benchmark'
|
|
59
59
|
THIS_FILE = File.symlink?(__FILE__) ? File.readlink(__FILE__) : __FILE__
|
|
60
60
|
require File.expand_path(File.join(File.dirname(THIS_FILE), '..', 'lib', 'rdoc_patch'))
|
|
61
|
-
require File.expand_path(File.join(File.dirname(THIS_FILE), '..', 'lib', '
|
|
61
|
+
require File.expand_path(File.join(File.dirname(THIS_FILE), '..', 'lib', 'resat'))
|
|
62
62
|
|
|
63
63
|
module Resat
|
|
64
64
|
class App
|
|
65
|
-
VERSION = '0.7.0'
|
|
66
65
|
|
|
67
66
|
def initialize(arguments)
|
|
68
67
|
@arguments = arguments
|
data/lib/resat.rb
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# This file is here so Resat can be used as a Rails plugin.
|
|
2
|
-
# Use the 'resat
|
|
2
|
+
# Use the 'resat' application in the root bin folder to run resat from the command line.
|
|
3
3
|
#
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
module Resat
|
|
6
|
+
VERSION = '0.7.1'
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
require File.join(File.dirname(__FILE__), 'engine')
|