File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- # Version:20140124
1
+ # Version:20140221
2
2
3
3
source "http://rubygems.org"
4
4
source "http://gems.github.com"
5
5
6
- gem 'json' , '~> 1.8.1 '
6
+ gem 'json' , '~> 1.7.7 '
7
7
gem 'sqlite3' , '~> 1.3.8'
8
8
gem 'activesupport' , '~> 4.0.2'
9
9
gem 'activerecord' , '~> 4.0.2'
Original file line number Diff line number Diff line change 3
3
# Name:: Automatic::Ruby
4
4
# Author:: 774 <http://id774.net>
5
5
# Created:: Feb 18, 2012
6
- # Updated:: Jul 19, 2013
7
- # Copyright:: Copyright (c) 2012-2013 Automatic Ruby Developers.
6
+ # Updated:: Feb 21, 2014
7
+ # Copyright:: Copyright (c) 2012-2014 Automatic Ruby Developers.
8
8
# License:: Licensed under the GNU GENERAL PUBLIC LICENSE, Version 3.0.
9
9
10
10
root_dir = File . expand_path ( ".." , File . dirname ( __FILE__ ) )
@@ -66,15 +66,15 @@ subparsers = {
66
66
'feedparser' => lambda { |argv |
67
67
require 'automatic/feed_parser'
68
68
url = argv . shift || abort_with_usage ( "feedparser" , "<url>" )
69
- rss_results = Automatic ::FeedParser . get ( url )
69
+ rss_results = Automatic ::FeedParser . get_url ( url )
70
70
pp rss_results
71
71
} ,
72
72
'inspect' => lambda { |argv |
73
73
require 'automatic/feed_parser'
74
74
url = argv . shift || abort_with_usage ( "inspect" , "<url>" )
75
75
feeds = Feedbag . find ( url )
76
76
pp feeds
77
- rss_results = Automatic ::FeedParser . get ( feeds . pop )
77
+ rss_results = Automatic ::FeedParser . get_url ( feeds . pop )
78
78
pp rss_results
79
79
} ,
80
80
'opmlparser' => lambda { |argv |
You can’t perform that action at this time.
0 commit comments