brevis-imap 0.0.2.1 → 0.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.
- metadata +12 -20
- data/.gitignore +0 -4
- data/Gemfile +0 -4
- data/Rakefile +0 -2
- data/brevis-imap.gemspec +0 -20
- data/lib/brevis-imap.rb +0 -5
- data/lib/brevis-imap/version.rb +0 -5
metadata
CHANGED
|
@@ -1,43 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: brevis-imap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 9
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
|
-
- 0
|
|
9
|
-
- 2
|
|
10
8
|
- 1
|
|
11
|
-
version: 0.
|
|
9
|
+
version: "0.1"
|
|
12
10
|
platform: ruby
|
|
13
11
|
authors:
|
|
14
|
-
-
|
|
12
|
+
- Alokat
|
|
15
13
|
autorequire:
|
|
16
14
|
bindir: bin
|
|
17
15
|
cert_chain: []
|
|
18
16
|
|
|
19
|
-
date: 2011-02-
|
|
17
|
+
date: 2011-02-09 00:00:00 +01:00
|
|
20
18
|
default_executable:
|
|
21
19
|
dependencies: []
|
|
22
20
|
|
|
23
|
-
description:
|
|
24
|
-
email:
|
|
25
|
-
- development@alokat.org
|
|
21
|
+
description: With this engine Brevis is able to connect with a imap server to manage the mails.
|
|
22
|
+
email: development@alokat.org
|
|
26
23
|
executables: []
|
|
27
24
|
|
|
28
25
|
extensions: []
|
|
29
26
|
|
|
30
27
|
extra_rdoc_files: []
|
|
31
28
|
|
|
32
|
-
files:
|
|
33
|
-
|
|
34
|
-
- Gemfile
|
|
35
|
-
- Rakefile
|
|
36
|
-
- brevis-imap.gemspec
|
|
37
|
-
- lib/brevis-imap.rb
|
|
38
|
-
- lib/brevis-imap/version.rb
|
|
29
|
+
files: []
|
|
30
|
+
|
|
39
31
|
has_rdoc: true
|
|
40
|
-
homepage: http://
|
|
32
|
+
homepage: http://brevis.alokat.org
|
|
41
33
|
licenses: []
|
|
42
34
|
|
|
43
35
|
post_install_message:
|
|
@@ -65,10 +57,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
65
57
|
version: "0"
|
|
66
58
|
requirements: []
|
|
67
59
|
|
|
68
|
-
rubyforge_project:
|
|
69
|
-
rubygems_version: 1.
|
|
60
|
+
rubyforge_project:
|
|
61
|
+
rubygems_version: 1.4.1
|
|
70
62
|
signing_key:
|
|
71
63
|
specification_version: 3
|
|
72
|
-
summary: Ruby on Rails
|
|
64
|
+
summary: Ruby on Rails imap engine for Brevis.
|
|
73
65
|
test_files: []
|
|
74
66
|
|
data/.gitignore
DELETED
data/Gemfile
DELETED
data/Rakefile
DELETED
data/brevis-imap.gemspec
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
|
2
|
-
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
-
require "brevis-imap/version"
|
|
4
|
-
|
|
5
|
-
Gem::Specification.new do |s|
|
|
6
|
-
s.name = "brevis-imap"
|
|
7
|
-
s.version = Brevis::Imap::VERSION
|
|
8
|
-
s.platform = Gem::Platform::RUBY
|
|
9
|
-
s.authors = ["alokat"]
|
|
10
|
-
s.email = ["development@alokat.org"]
|
|
11
|
-
s.homepage = "http://development.alokat.org"
|
|
12
|
-
s.summary = %q{Ruby on Rails Engine for the Brevis Webmailer}
|
|
13
|
-
|
|
14
|
-
s.rubyforge_project = "brevis-imap"
|
|
15
|
-
|
|
16
|
-
s.files = `git ls-files`.split("\n")
|
|
17
|
-
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
18
|
-
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
19
|
-
s.require_paths = ["lib"]
|
|
20
|
-
end
|
data/lib/brevis-imap.rb
DELETED