podgraph 0.0.2 → 0.0.3

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/NEWS +6 -0
  2. data/Rakefile +2 -1
  3. data/bin/podgraph +2 -2
  4. data/lib/podgraph/posterous.rb +3 -2
  5. metadata +17 -3
data/NEWS CHANGED
@@ -1,5 +1,11 @@
1
1
  -*- text -*-
2
2
 
3
+ 0.0.3
4
+
5
+ - add missing active_support dependency (btw, active_support 3.0.0
6
+ requires i18n (ran `gem install i18n) but it's not listed in its
7
+ dependencies)
8
+
3
9
  0.0.2
4
10
 
5
11
  - nailed the mail gem to explicit version 2.1.3, because the current
data/Rakefile CHANGED
@@ -9,7 +9,7 @@ require 'rake/testtask'
9
9
  spec = Gem::Specification.new do |s|
10
10
  s.name = "podgraph"
11
11
  s.summary = 'Creates a MIME mail from a XHTML source and delivers it to Posterous.com.'
12
- s.version = '0.0.2'
12
+ s.version = '0.0.3'
13
13
  s.author = 'Alexander Gromnitsky'
14
14
  s.email = 'alexander.gromnitsky@gmail.com'
15
15
  s.platform = Gem::Platform::RUBY
@@ -21,6 +21,7 @@ spec = Gem::Specification.new do |s|
21
21
  s.rdoc_options << '-m' << 'Podgraph'
22
22
  end
23
23
  spec.add_dependency('mail', '= 2.1.3')
24
+ spec.add_dependency('activesupport', '>= 3.0.0')
24
25
 
25
26
  Rake::GemPackageTask.new(spec).define
26
27
 
data/bin/podgraph CHANGED
@@ -3,12 +3,12 @@
3
3
 
4
4
  # Copyright (c) 2010 Alexander Gromnitsky <mailto:alexander.gromnitsky@gmail.com>.
5
5
  #
6
- # $Id: podgraph 102 2010-03-10 18:41:28Z alex $
6
+ # $Id: podgraph 128 2010-04-24 07:16:01Z alex $
7
7
 
8
8
  require_relative '../lib/podgraph/posterous'
9
9
 
10
10
  $conf = {
11
- prog_ver: '0.0.2',
11
+ prog_ver: '0.0.3',
12
12
  send?: true,
13
13
  config: 'config.yaml',
14
14
  modes: %w(related mixed),
@@ -1,7 +1,8 @@
1
- # $Id: posterous.rb 104 2010-03-10 18:46:53Z alex $
1
+ # $Id: posterous.rb 128 2010-04-24 07:16:01Z alex $
2
2
 
3
3
  gem 'mail', '= 2.1.3'
4
4
  require 'mail'
5
+ require 'active_support/core_ext/module/attribute_accessors'
5
6
 
6
7
  require 'rexml/document'
7
8
  require 'yaml'
@@ -10,7 +11,7 @@ require 'optparse'
10
11
  # :include: ../../README.rdoc
11
12
  module Podgraph
12
13
 
13
- VERSION = '0.0.2'
14
+ VERSION = '0.0.3'
14
15
  mattr_accessor :cfg
15
16
 
16
17
  self.cfg = Hash.new()
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 2
9
- version: 0.0.2
8
+ - 3
9
+ version: 0.0.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Alexander Gromnitsky
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-04-24 00:00:00 +03:00
17
+ date: 2010-09-07 00:00:00 +03:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -31,6 +31,20 @@ dependencies:
31
31
  version: 2.1.3
32
32
  type: :runtime
33
33
  version_requirements: *id001
34
+ - !ruby/object:Gem::Dependency
35
+ name: activesupport
36
+ prerelease: false
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ segments:
42
+ - 3
43
+ - 0
44
+ - 0
45
+ version: 3.0.0
46
+ type: :runtime
47
+ version_requirements: *id002
34
48
  description:
35
49
  email: alexander.gromnitsky@gmail.com
36
50
  executables: