sarnesjo-twhere 0.0.8 → 0.0.9
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.
- data/Rakefile +22 -0
- data/VERSION.yml +4 -0
- metadata +5 -3
data/Rakefile
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = 'twhere'
|
8
|
+
gem.summary = 'Twitter/Google Maps mashup'
|
9
|
+
gem.email = 'jesper@sarnesjo.org'
|
10
|
+
gem.homepage = 'http://github.com/sarnesjo/twhere'
|
11
|
+
gem.authors = ['Jesper Särnesjö']
|
12
|
+
gem.files = %w{LICENSE README.rdoc Rakefile VERSION.yml bin/twhere examples/config.yml examples/locations.yml examples/template.html.erb lib/twhere.rb}
|
13
|
+
gem.add_dependency('twitter')
|
14
|
+
end
|
15
|
+
rescue LoadError
|
16
|
+
puts 'Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler --source http://gems.github.com'
|
17
|
+
end
|
18
|
+
|
19
|
+
require 'spec/rake/spectask'
|
20
|
+
Spec::Rake::SpecTask.new do |spec|
|
21
|
+
spec.spec_files = %w{spec/hashtag_spec.rb spec/twhere_spec.rb}
|
22
|
+
end
|
data/VERSION.yml
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sarnesjo-twhere
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- "Jesper S\xC3\xA4rnesj\xC3\xB6"
|
@@ -32,13 +32,15 @@ extra_rdoc_files:
|
|
32
32
|
- LICENSE
|
33
33
|
- README.rdoc
|
34
34
|
files:
|
35
|
+
- LICENSE
|
36
|
+
- README.rdoc
|
37
|
+
- Rakefile
|
38
|
+
- VERSION.yml
|
35
39
|
- bin/twhere
|
36
40
|
- examples/config.yml
|
37
41
|
- examples/locations.yml
|
38
42
|
- examples/template.html.erb
|
39
43
|
- lib/twhere.rb
|
40
|
-
- LICENSE
|
41
|
-
- README.rdoc
|
42
44
|
has_rdoc: true
|
43
45
|
homepage: http://github.com/sarnesjo/twhere
|
44
46
|
post_install_message:
|