apprise 0.9.9 → 0.9.10

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -19,18 +19,6 @@ Apprise currently looks for three types of dependencies.
19
19
  $ gem install apprise --source http://gemcutter.org
20
20
  $ apprise /path/to/rails
21
21
 
22
- == Requirements
22
+ == Support
23
23
 
24
- Apprise currently needs a patched version of Bundler, this version is
25
- available on the Fingertips GitHub repository:
26
-
27
- http://github.com/Fingertips/bundler
28
-
29
- You can install it in the following way:
30
-
31
- $ git clone git://github.com/Fingertips/bundler.git
32
- $ cd bundler
33
- $ sudo rake install
34
-
35
- If you don't use Bundler, you don't have to install it. Apprise will
36
- work without it as well.
24
+ Apprise is known to run on Ruby 1.8.7 and 1.9.2.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.9
1
+ 0.9.10
data/apprise.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{apprise}
8
- s.version = "0.9.9"
8
+ s.version = "0.9.10"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Manfred Stienstra", "Eloy Duran"]
12
- s.date = %q{2009-10-31}
12
+ s.date = %q{2009-11-01}
13
13
  s.default_executable = %q{apprise}
14
14
  s.description = %q{Apprise gives an overview of the dependencies of a Rails application.}
15
15
  s.email = ["manfred@fngtps.com", "eloy@fngtps.com"]
data/bin/apprise CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  $:.unshift File.expand_path('../../lib', __FILE__)
4
4
  require 'apprise'
5
+ require 'optparse'
5
6
 
6
7
  action = :outdated
7
8
  ARGV.clone.options do |options|
data/lib/apprise.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+
1
3
  require 'apprise/plugin'
2
4
  require 'apprise/bundler'
3
5
 
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+
1
3
  module Apprise
2
4
  class Bundler
3
5
  begin
@@ -16,6 +18,8 @@ module Apprise
16
18
  repository.outdated_gems.map do |name|
17
19
  [name, 'gem']
18
20
  end
21
+ rescue ::Bundler::ManifestFileNotFound
22
+ []
19
23
  end
20
24
 
21
25
  def self.repository
@@ -24,11 +28,17 @@ module Apprise
24
28
 
25
29
  def self.gem_dependencies
26
30
  environment.send(:gem_dependencies)
31
+ rescue ::Bundler::ManifestFileNotFound
32
+ []
27
33
  end
28
34
 
29
35
  def self.environment
30
36
  @environment ||= ::Bundler::Environment.load(gemfile_path)
31
37
  end
38
+
39
+ def self.reset!
40
+ @environment = nil
41
+ end
32
42
 
33
43
  def self.usable?; true; end
34
44
  rescue LoadError
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+
1
3
  require 'pathname'
2
4
 
3
5
  module Apprise
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+
1
3
  module Apprise
2
4
  module Plugin
3
5
  class Base
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+
1
3
  require 'apprise/plugin/base'
2
4
 
3
5
  module Apprise
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+
1
3
  require 'apprise/plugin/base'
2
4
 
3
5
  module Apprise
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+
1
3
  $:.unshift(File.expand_path('../../', __FILE__))
2
4
  require 'apprise'
3
5
 
data/rails/init.rb CHANGED
@@ -1 +1,3 @@
1
+ # encoding: utf-8
2
+
1
3
  require 'apprise'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apprise
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.9
4
+ version: 0.9.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Manfred Stienstra
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2009-10-31 00:00:00 +01:00
13
+ date: 2009-11-01 00:00:00 +01:00
14
14
  default_executable: apprise
15
15
  dependencies: []
16
16