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.
Files changed (4) hide show
  1. data/Rakefile +2 -1
  2. data/bin/resat +1 -2
  3. data/lib/resat.rb +6 -2
  4. metadata +1 -1
data/Rakefile CHANGED
@@ -1,8 +1,9 @@
1
1
  require 'rubygems'
2
2
  require 'rake/gempackagetask'
3
+ require 'lib/resat'
3
4
 
4
5
  GEM = 'resat'
5
- GEM_VER = '0.7.0'
6
+ GEM_VER = Resat::VERSION
6
7
  AUTHOR = 'Raphael Simon'
7
8
  EMAIL = 'raphael@rightscale.com'
8
9
  HOMEPAGE = 'http://github.com/raphael/resat'
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', 'engine'))
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.rb' in the root folder to run resat from the command line.
2
+ # Use the 'resat' application in the root bin folder to run resat from the command line.
3
3
  #
4
4
 
5
- require File.join(File.dirname(__FILE__), 'engine')
5
+ module Resat
6
+ VERSION = '0.7.1'
7
+ end
8
+
9
+ require File.join(File.dirname(__FILE__), 'engine')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: resat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Raphael Simon