radiant-twitter-extension 2.0.0.rc1 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -6,18 +6,12 @@ An extension to Radiant that will automatically tweet the publication of new pag
6
6
 
7
7
  sudo gem install radiant-twitter-extension
8
8
 
9
- add this to your environment.rb
9
+ add this to your Gemfile
10
10
 
11
- config.gem 'radiant-twitter-extension', :version => '~> 2.0.0.rc1'
11
+ gem 'radiant-twitter-extension', '~> 2.0.0'
12
12
 
13
13
  and then:
14
14
 
15
- rake radiant:extensions:update_all
16
- rake radiant:extensions:twitter:migrate
17
-
18
- You can also vendor the extension in the old-fashioned way:
19
-
20
- git submodule add git://github.com/radiant/radiant-twitter-extension.git vendor/extensions/twitter
21
15
  rake radiant:extensions:twitter:update
22
16
  rake radiant:extensions:twitter:migrate
23
17
 
@@ -1,8 +1,8 @@
1
1
  module RadiantTwitterExtension
2
- VERSION = '2.0.0.rc1'
2
+ VERSION = '2.0.0'
3
3
  SUMMARY = %q{Twitter posting and radius tags for twitter feeds.}
4
4
  DESCRIPTION = %q{Posts notification of pages to Twitter and provides radiius tags to display the results of twitter searches.}
5
- URL = "http://github.com/ehaselwanter/radiant-twitter-extension"
5
+ URL = "http://github.com/radiant/radiant-twitter-extension"
6
6
  AUTHORS = ["Sean Cribbs", "Edmund Haselwanter", "Jim Gay", "William Ross"]
7
7
  EMAIL = ["radiant@radiantcms.org"]
8
8
  end
data/twitter_extension.rb CHANGED
@@ -1,3 +1,5 @@
1
+ require 'radiant-twitter-extension'
2
+
1
3
  class TwitterExtension < Radiant::Extension
2
4
  version RadiantTwitterExtension::VERSION
3
5
  description RadiantTwitterExtension::DESCRIPTION
@@ -5,6 +7,7 @@ class TwitterExtension < Radiant::Extension
5
7
 
6
8
  extension_config do |config|
7
9
  config.gem "twitter", :version => "~> 1.6.0"
10
+ # config.gem "bitly", :version => "~> 0.6.1"
8
11
  end
9
12
 
10
13
  def activate
metadata CHANGED
@@ -1,15 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: radiant-twitter-extension
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15424087
5
- prerelease: 6
4
+ hash: 15
5
+ prerelease:
6
6
  segments:
7
7
  - 2
8
8
  - 0
9
9
  - 0
10
- - rc
11
- - 1
12
- version: 2.0.0.rc1
10
+ version: 2.0.0
13
11
  platform: ruby
14
12
  authors:
15
13
  - Sean Cribbs
@@ -20,8 +18,7 @@ autorequire:
20
18
  bindir: bin
21
19
  cert_chain: []
22
20
 
23
- date: 2011-07-28 00:00:00 +01:00
24
- default_executable:
21
+ date: 2011-10-11 00:00:00 Z
25
22
  dependencies:
26
23
  - !ruby/object:Gem::Dependency
27
24
  name: twitter
@@ -63,6 +60,7 @@ files:
63
60
  - public/images/twitter/bird.png
64
61
  - public/images/twitter/sprite.png
65
62
  - public/stylesheets/sass/twitter.sass
63
+ - radiant-twitter-extension-2.0.0.rc1.gem
66
64
  - radiant-twitter-extension.gemspec
67
65
  - Rakefile
68
66
  - README.md
@@ -74,11 +72,10 @@ files:
74
72
  - vendor/plugins/filestore_expires_in-plugin/lib/active_support/cache/file_store_extras.rb
75
73
  - vendor/plugins/filestore_expires_in-plugin/MIT-LICENSE
76
74
  - vendor/plugins/filestore_expires_in-plugin/README.md
77
- has_rdoc: true
78
- homepage: http://github.com/ehaselwanter/radiant-twitter-extension
75
+ homepage: http://github.com/radiant/radiant-twitter-extension
79
76
  licenses: []
80
77
 
81
- post_install_message: "\n Add this to your radiant project with:\n config.gem 'radiant-twitter-extension', :version => '~>2.0.0.rc1'\n "
78
+ post_install_message: "\n Add this to your radiant project with:\n config.gem 'radiant-twitter-extension', :version => '~>2.0.0'\n "
82
79
  rdoc_options: []
83
80
 
84
81
  require_paths:
@@ -95,18 +92,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
95
92
  required_rubygems_version: !ruby/object:Gem::Requirement
96
93
  none: false
97
94
  requirements:
98
- - - ">"
95
+ - - ">="
99
96
  - !ruby/object:Gem::Version
100
- hash: 25
97
+ hash: 3
101
98
  segments:
102
- - 1
103
- - 3
104
- - 1
105
- version: 1.3.1
99
+ - 0
100
+ version: "0"
106
101
  requirements: []
107
102
 
108
103
  rubyforge_project:
109
- rubygems_version: 1.5.3
104
+ rubygems_version: 1.8.10
110
105
  signing_key:
111
106
  specification_version: 3
112
107
  summary: Twitter posting and radius tags for twitter feeds.