apprise 0.9.9 → 0.9.10
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/README.rdoc +2 -14
- data/VERSION +1 -1
- data/apprise.gemspec +2 -2
- data/bin/apprise +1 -0
- data/lib/apprise.rb +2 -0
- data/lib/apprise/bundler.rb +10 -0
- data/lib/apprise/plugin.rb +2 -0
- data/lib/apprise/plugin/base.rb +2 -0
- data/lib/apprise/plugin/git.rb +2 -0
- data/lib/apprise/plugin/svn.rb +2 -0
- data/lib/tasks/apprise.rake +2 -0
- data/rails/init.rb +2 -0
- metadata +2 -2
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
|
-
==
|
22
|
+
== Support
|
23
23
|
|
24
|
-
Apprise
|
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.
|
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.
|
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-
|
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
data/lib/apprise.rb
CHANGED
data/lib/apprise/bundler.rb
CHANGED
@@ -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
|
data/lib/apprise/plugin.rb
CHANGED
data/lib/apprise/plugin/base.rb
CHANGED
data/lib/apprise/plugin/git.rb
CHANGED
data/lib/apprise/plugin/svn.rb
CHANGED
data/lib/tasks/apprise.rake
CHANGED
data/rails/init.rb
CHANGED
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.
|
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-
|
13
|
+
date: 2009-11-01 00:00:00 +01:00
|
14
14
|
default_executable: apprise
|
15
15
|
dependencies: []
|
16
16
|
|