larch 1.1.0.dev.20110122 → 1.1.0

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 (5) hide show
  1. data/HISTORY +1 -1
  2. data/README.rdoc +6 -5
  3. data/lib/larch.rb +1 -1
  4. data/lib/larch/version.rb +3 -3
  5. metadata +17 -21
data/HISTORY CHANGED
@@ -1,7 +1,7 @@
1
1
  Larch History
2
2
  ================================================================================
3
3
 
4
- Version 1.1.0 (git)
4
+ Version 1.1.0 (2011-01-22)
5
5
  * Mailbox and message state information is now stored in a local SQLite
6
6
  database, which allows Larch to resync and resume interrupted syncs much
7
7
  more quickly without having to rescan all messages. As a result, SQLite 3 is
data/README.rdoc CHANGED
@@ -9,8 +9,8 @@ Larch is particularly well-suited for copying email to, from, or between Gmail
9
9
  accounts.
10
10
 
11
11
  *Author*:: Ryan Grove (mailto:ryan@wonko.com)
12
- *Version*:: 1.1.0 (git)
13
- *Copyright*:: Copyright (c) 2010 Ryan Grove. All rights reserved.
12
+ *Version*:: 1.1.0 (2011-01-22)
13
+ *Copyright*:: Copyright (c) 2011 Ryan Grove. All rights reserved.
14
14
  *License*:: GPL 2.0 (http://opensource.org/licenses/gpl-2.0.php)
15
15
  *Website*:: http://github.com/rgrove/larch
16
16
 
@@ -326,9 +326,10 @@ delay before your first message shows up.
326
326
 
327
327
  == Contributors
328
328
 
329
- The following lovely people have contributed code to Larch:
329
+ Larch was created and is maintained by Ryan Grove <ryan@wonko.com>.
330
+
331
+ The following lovely people have also contributed to Larch:
330
332
 
331
- * Ryan Grove <ryan@wonko.com>
332
333
  * Andrew Hobson <ahobson@damballa.com>
333
334
  * Edgardo Hames <ehames@gmail.com>
334
335
  * Justin Mazzi <hh@mailheist.com>
@@ -346,7 +347,7 @@ Gray II).
346
347
 
347
348
  == License
348
349
 
349
- Copyright (c) 2010 Ryan Grove <ryan@wonko.com>
350
+ Copyright (c) 2011 Ryan Grove <ryan@wonko.com>
350
351
 
351
352
  Licensed under the GNU General Public License version 2.0.
352
353
 
data/lib/larch.rb CHANGED
@@ -121,7 +121,7 @@ module Larch
121
121
  end
122
122
 
123
123
  begin
124
- db = Sequel.sqlite(:database => filename)
124
+ db = Sequel.amalgalite(:database => filename)
125
125
  db.test_connection
126
126
  rescue => e
127
127
  @log.fatal "unable to open message database: #{e}"
data/lib/larch/version.rb CHANGED
@@ -1,9 +1,9 @@
1
1
  module Larch
2
2
  APP_NAME = 'Larch'
3
- APP_VERSION = '1.1.0.dev.20110122'
3
+ APP_VERSION = '1.1.0'
4
4
  APP_AUTHOR = 'Ryan Grove'
5
5
  APP_EMAIL = 'ryan@wonko.com'
6
- APP_URL = 'http://github.com/rgrove/larch/'
7
- APP_COPYRIGHT = 'Copyright (c) 2010 Ryan Grove <ryan@wonko.com>. All ' <<
6
+ APP_URL = 'https://github.com/rgrove/larch/'
7
+ APP_COPYRIGHT = 'Copyright (c) 2011 Ryan Grove <ryan@wonko.com>. All ' <<
8
8
  'rights reserved.'
9
9
  end
metadata CHANGED
@@ -1,14 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: larch
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: true
4
+ prerelease: false
5
5
  segments:
6
6
  - 1
7
7
  - 1
8
8
  - 0
9
- - dev
10
- - 20110122
11
- version: 1.1.0.dev.20110122
9
+ version: 1.1.0
12
10
  platform: ruby
13
11
  authors:
14
12
  - Ryan Grove
@@ -20,7 +18,7 @@ date: 2011-01-22 00:00:00 -08:00
20
18
  default_executable:
21
19
  dependencies:
22
20
  - !ruby/object:Gem::Dependency
23
- name: highline
21
+ name: amalgalite
24
22
  prerelease: false
25
23
  requirement: &id001 !ruby/object:Gem::Requirement
26
24
  none: false
@@ -29,13 +27,13 @@ dependencies:
29
27
  - !ruby/object:Gem::Version
30
28
  segments:
31
29
  - 1
32
- - 5
33
30
  - 0
34
- version: 1.5.0
31
+ - 0
32
+ version: 1.0.0
35
33
  type: :runtime
36
34
  version_requirements: *id001
37
35
  - !ruby/object:Gem::Dependency
38
- name: sequel
36
+ name: highline
39
37
  prerelease: false
40
38
  requirement: &id002 !ruby/object:Gem::Requirement
41
39
  none: false
@@ -43,13 +41,14 @@ dependencies:
43
41
  - - ~>
44
42
  - !ruby/object:Gem::Version
45
43
  segments:
46
- - 3
47
- - 14
48
- version: "3.14"
44
+ - 1
45
+ - 5
46
+ - 0
47
+ version: 1.5.0
49
48
  type: :runtime
50
49
  version_requirements: *id002
51
50
  - !ruby/object:Gem::Dependency
52
- name: sqlite3
51
+ name: sequel
53
52
  prerelease: false
54
53
  requirement: &id003 !ruby/object:Gem::Requirement
55
54
  none: false
@@ -57,10 +56,9 @@ dependencies:
57
56
  - - ~>
58
57
  - !ruby/object:Gem::Version
59
58
  segments:
60
- - 1
61
- - 3
62
59
  - 3
63
- version: 1.3.3
60
+ - 14
61
+ version: "3.14"
64
62
  type: :runtime
65
63
  version_requirements: *id003
66
64
  - !ruby/object:Gem::Dependency
@@ -104,7 +102,7 @@ files:
104
102
  - lib/larch/version.rb
105
103
  - lib/larch.rb
106
104
  has_rdoc: true
107
- homepage: http://github.com/rgrove/larch/
105
+ homepage: https://github.com/rgrove/larch/
108
106
  licenses: []
109
107
 
110
108
  post_install_message:
@@ -125,13 +123,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
125
123
  required_rubygems_version: !ruby/object:Gem::Requirement
126
124
  none: false
127
125
  requirements:
128
- - - ">"
126
+ - - ">="
129
127
  - !ruby/object:Gem::Version
130
128
  segments:
131
- - 1
132
- - 3
133
- - 1
134
- version: 1.3.1
129
+ - 0
130
+ version: "0"
135
131
  requirements: []
136
132
 
137
133
  rubyforge_project: