vmail 2.1.5 → 2.1.6

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -39,6 +39,7 @@ end
39
39
  desc "build webpage"
40
40
  task :build_webpage do
41
41
  `cp README.markdown ../project-webpages/src/vmail.README.markdown`
42
+ `cp coverage.markdown ../project-webpages/src/vmail.coverage.markdown`
42
43
  Dir.chdir "../project-webpages" do
43
44
  puts `ruby gen.rb vmail #{Vmail::VERSION}`
44
45
  #`open out/vmail.html`
@@ -0,0 +1,3 @@
1
+ * [ReadWriteHack](http://www.readwriteweb.com/hack/2011/01/gmail-for-vim-vmail.php)
2
+ * [The Changelog](http://thechangelog.com/post/2416116421/vmail-check-your-gmail-from-within-vim)
3
+
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = '2.1.5'
2
+ VERSION = '2.1.6'
3
3
  end
@@ -23,6 +23,6 @@ Gem::Specification.new do |s|
23
23
 
24
24
  s.add_dependency 'mail', '>= 2.2.12'
25
25
  s.add_dependency 'highline', '>= 1.6.1'
26
- s.add_dependency 'sequel'
27
- s.add_dependency 'sqlite3'
26
+ s.add_dependency 'sequel', '>= 3.24.1'
27
+ s.add_dependency 'sqlite3', '>= 1.3.3'
28
28
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: vmail
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 2.1.5
5
+ version: 2.1.6
6
6
  platform: ruby
7
7
  authors:
8
8
  - Daniel Choi
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-07-05 00:00:00 -04:00
13
+ date: 2011-07-07 00:00:00 -04:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -43,7 +43,7 @@ dependencies:
43
43
  requirements:
44
44
  - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: "0"
46
+ version: 3.24.1
47
47
  type: :runtime
48
48
  version_requirements: *id003
49
49
  - !ruby/object:Gem::Dependency
@@ -54,7 +54,7 @@ dependencies:
54
54
  requirements:
55
55
  - - ">="
56
56
  - !ruby/object:Gem::Version
57
- version: "0"
57
+ version: 1.3.3
58
58
  type: :runtime
59
59
  version_requirements: *id004
60
60
  description: Manage your email with Vim
@@ -78,6 +78,7 @@ files:
78
78
  - bin/vmail
79
79
  - bin/vmail_client
80
80
  - bin/vmailsend
81
+ - coverage.markdown
81
82
  - db/create.sql
82
83
  - lib/vmail.rb
83
84
  - lib/vmail.vim