siuying-fullfeed 0.1.6
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 +31 -0
- metadata +53 -0
data/Rakefile
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
require "rubygems"
|
|
2
|
+
require "pathname"
|
|
3
|
+
require "rake"
|
|
4
|
+
require "rake/testtask"
|
|
5
|
+
|
|
6
|
+
# Gem
|
|
7
|
+
require "rake/gempackagetask"
|
|
8
|
+
|
|
9
|
+
NAME = "fullfeed"
|
|
10
|
+
SUMMARY = "Fullfeed RSS creator"
|
|
11
|
+
GEM_VERSION = "0.1.6"
|
|
12
|
+
|
|
13
|
+
spec = Gem::Specification.new do |s|
|
|
14
|
+
s.name = NAME
|
|
15
|
+
s.summary = s.description = SUMMARY
|
|
16
|
+
s.author = "siuying"
|
|
17
|
+
s.email = "siu.ying@gmail.com"
|
|
18
|
+
s.version = GEM_VERSION
|
|
19
|
+
s.platform = Gem::Platform::RUBY
|
|
20
|
+
s.require_path = 'lib'
|
|
21
|
+
s.files = %w(Rakefile) + Dir.glob("lib/**/*") + Dir.glob("examples/**/*")
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
Rake::GemPackageTask.new(spec) do |pkg|
|
|
25
|
+
pkg.gem_spec = spec
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
desc "Install the FullFeed as a gem"
|
|
29
|
+
task :install => [:repackage] do
|
|
30
|
+
sh %{gem install pkg/#{spec.name}-#{spec.version}}
|
|
31
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: siuying-fullfeed
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.6
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- siuying
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2009-05-16 00:00:00 -07:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies: []
|
|
15
|
+
|
|
16
|
+
description: Fullfeed RSS creator
|
|
17
|
+
email: siu.ying@gmail.com
|
|
18
|
+
executables: []
|
|
19
|
+
|
|
20
|
+
extensions: []
|
|
21
|
+
|
|
22
|
+
extra_rdoc_files: []
|
|
23
|
+
|
|
24
|
+
files:
|
|
25
|
+
- Rakefile
|
|
26
|
+
has_rdoc: false
|
|
27
|
+
homepage:
|
|
28
|
+
post_install_message:
|
|
29
|
+
rdoc_options: []
|
|
30
|
+
|
|
31
|
+
require_paths:
|
|
32
|
+
- lib
|
|
33
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
34
|
+
requirements:
|
|
35
|
+
- - ">="
|
|
36
|
+
- !ruby/object:Gem::Version
|
|
37
|
+
version: "0"
|
|
38
|
+
version:
|
|
39
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
40
|
+
requirements:
|
|
41
|
+
- - ">="
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: "0"
|
|
44
|
+
version:
|
|
45
|
+
requirements: []
|
|
46
|
+
|
|
47
|
+
rubyforge_project:
|
|
48
|
+
rubygems_version: 1.2.0
|
|
49
|
+
signing_key:
|
|
50
|
+
specification_version: 2
|
|
51
|
+
summary: Fullfeed RSS creator
|
|
52
|
+
test_files: []
|
|
53
|
+
|