public
Description: a ruby on rails plugin to create and display a social feed
Homepage: http://upstream-berlin.com/blog/open-source/#social_feed
Clone URL: git://github.com/langalex/social_feed.git
social_feed / Rakefile
100644 24 lines (21 sloc) 0.722 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require 'rake'
require 'spec/rake/spectask'
 
desc 'Default: run specs.'
task :default => :spec
 
desc "Run all specs"
Spec::Rake::SpecTask.new(:spec) do |t|
  t.spec_files = FileList['spec/**/*_spec.rb']
end
 
begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = "social_feed"
    gemspec.summary = "a ruby on rails plugin to create and display a social feed"
    gemspec.email = "alex@upstream-berlin.com"
    gemspec.homepage = "http://github.com/langalex/social_feed"
    gemspec.description = ""
    gemspec.authors = ["Alexander Lang", "Thilo Utke"]
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end