openskip-skip_embedded 0.0.17 → 0.0.18
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +4 -0
- data/Rakefile +35 -33
- data/lib/skip_embedded.rb +1 -1
- metadata +13 -4
data/ChangeLog
CHANGED
data/Rakefile
CHANGED
@@ -35,51 +35,53 @@ BIN_FILES = %w( )
|
|
35
35
|
VERS = SkipEmbedded::Version
|
36
36
|
REV = File.read(".svn/entries")[/committed-rev="(d+)"/, 1] rescue nil
|
37
37
|
RDOC_OPTS = [
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
38
|
+
'--title', "#{NAME} documentation",
|
39
|
+
"--charset", "utf-8",
|
40
|
+
"--opname", "index.html",
|
41
|
+
"--line-numbers",
|
42
|
+
"--main", "README.rdoc",
|
43
|
+
"--inline-source",
|
44
44
|
]
|
45
45
|
|
46
46
|
spec = Gem::Specification.new do |s|
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
47
|
+
s.name = NAME
|
48
|
+
s.version = VERS
|
49
|
+
s.platform = Gem::Platform::RUBY
|
50
|
+
s.has_rdoc = true
|
51
|
+
s.extra_rdoc_files = ["README.rdoc", "ChangeLog"]
|
52
|
+
s.rdoc_options += RDOC_OPTS + ['--exclude', '^(examples|extras)/']
|
53
|
+
s.summary = DESCRIPTION
|
54
|
+
s.description = DESCRIPTION
|
55
|
+
s.author = AUTHOR
|
56
|
+
s.email = EMAIL
|
57
|
+
s.homepage = HOMEPATH
|
58
|
+
s.executables = BIN_FILES
|
59
|
+
s.bindir = "bin" unless BIN_FILES.empty?
|
60
|
+
s.require_path = "lib"
|
61
|
+
s.test_files = Dir["spec/**/*_spec.rb"]
|
62
62
|
|
63
|
-
|
64
|
-
Dir.glob("{bin,doc,test,lib,templates,generators,extras,website,script}/**/*") +
|
65
|
-
Dir.glob("spec/**/*.rb") +
|
66
|
-
Dir.glob("ext/**/*.{h,c,rb}") +
|
67
|
-
Dir.glob("examples/**/*.rb") +
|
68
|
-
Dir.glob("tools/*.rb") +
|
69
|
-
Dir.glob("rails/*.rb") +
|
70
|
-
Dir.glob("lib/tasks/*.rake")
|
63
|
+
s.add_dependency "moro-repim", ">=0.1.4"
|
71
64
|
|
72
|
-
|
65
|
+
s.files = %w(README.rdoc ChangeLog Rakefile) +
|
66
|
+
Dir.glob("{bin,doc,test,lib,templates,generators,extras,website,script}/**/*") +
|
67
|
+
Dir.glob("spec/**/*.rb") +
|
68
|
+
Dir.glob("ext/**/*.{h,c,rb}") +
|
69
|
+
Dir.glob("examples/**/*.rb") +
|
70
|
+
Dir.glob("tools/*.rb") +
|
71
|
+
Dir.glob("rails/*.rb") +
|
72
|
+
Dir.glob("lib/tasks/*.rake")
|
73
|
+
|
74
|
+
s.extensions = FileList["ext/**/extconf.rb"].to_a
|
73
75
|
end
|
74
76
|
|
75
77
|
Rake::GemPackageTask.new(spec) do |p|
|
76
|
-
|
77
|
-
|
78
|
+
p.need_tar = true
|
79
|
+
p.gem_spec = spec
|
78
80
|
end
|
79
81
|
|
80
82
|
desc 'Show information about the gem.'
|
81
83
|
task :debug_gem do
|
82
|
-
|
84
|
+
puts spec.to_ruby
|
83
85
|
end
|
84
86
|
|
85
87
|
desc 'Update gem spec'
|
data/lib/skip_embedded.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openskip-skip_embedded
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.18
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MOROHASHI Kyosuke
|
@@ -9,10 +9,19 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-03-
|
12
|
+
date: 2009-03-26 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: moro-repim
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.1.4
|
24
|
+
version:
|
16
25
|
description: Utilities to collabolate SKIP, opensource buisiness SNS.
|
17
26
|
email: k-morohashi@esm.co.jp
|
18
27
|
executables: []
|