saga 0.7.0 → 0.7.1
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/VERSION +1 -1
- data/saga.gemspec +47 -51
- metadata +5 -7
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.7.
|
|
1
|
+
0.7.1
|
data/saga.gemspec
CHANGED
|
@@ -1,76 +1,72 @@
|
|
|
1
1
|
# Generated by jeweler
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{saga}
|
|
8
|
-
s.version = "0.
|
|
8
|
+
s.version = "0.7.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
-
s.authors = [
|
|
12
|
-
s.date = %q{2011-
|
|
13
|
-
s.default_executable = %q{saga}
|
|
11
|
+
s.authors = [%q{Manfred Stienstra}]
|
|
12
|
+
s.date = %q{2011-07-04}
|
|
14
13
|
s.description = %q{Saga is a tool to convert stories syntax to a nicely formatted document.}
|
|
15
14
|
s.email = %q{manfred@fngtps.com}
|
|
16
|
-
s.executables = [
|
|
15
|
+
s.executables = [%q{saga}]
|
|
17
16
|
s.extra_rdoc_files = [
|
|
18
17
|
"LICENSE",
|
|
19
|
-
|
|
18
|
+
"README.rdoc"
|
|
20
19
|
]
|
|
21
20
|
s.files = [
|
|
22
|
-
".
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"test/spec_helper.rb"
|
|
21
|
+
".kick",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.rdoc",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"bin/saga",
|
|
27
|
+
"lib/saga.rb",
|
|
28
|
+
"lib/saga/document.rb",
|
|
29
|
+
"lib/saga/formatter.rb",
|
|
30
|
+
"lib/saga/parser.rb",
|
|
31
|
+
"lib/saga/planning.rb",
|
|
32
|
+
"lib/saga/runner.rb",
|
|
33
|
+
"lib/saga/tokenizer.rb",
|
|
34
|
+
"saga.gemspec",
|
|
35
|
+
"templates/default/document.erb",
|
|
36
|
+
"templates/default/helpers.rb",
|
|
37
|
+
"templates/requirements.txt.erb",
|
|
38
|
+
"templates/saga/document.erb",
|
|
39
|
+
"templates/saga/helpers.rb",
|
|
40
|
+
"test/cases/author.txt",
|
|
41
|
+
"test/cases/definition.txt",
|
|
42
|
+
"test/cases/story.txt",
|
|
43
|
+
"test/cases/story_attributes.txt",
|
|
44
|
+
"test/fixtures/document.erb",
|
|
45
|
+
"test/saga_document_spec.rb",
|
|
46
|
+
"test/saga_formatter_spec.rb",
|
|
47
|
+
"test/saga_parser_spec.rb",
|
|
48
|
+
"test/saga_planning_spec.rb",
|
|
49
|
+
"test/saga_runner_spec.rb",
|
|
50
|
+
"test/saga_spec.rb",
|
|
51
|
+
"test/saga_tokenizer_spec.rb",
|
|
52
|
+
"test/spec_helper.rb"
|
|
55
53
|
]
|
|
56
54
|
s.homepage = %q{http://fingertips.github.com}
|
|
57
|
-
s.
|
|
58
|
-
s.
|
|
59
|
-
s.rubygems_version = %q{1.3.7}
|
|
55
|
+
s.require_paths = [%q{lib}]
|
|
56
|
+
s.rubygems_version = %q{1.8.5}
|
|
60
57
|
s.summary = %q{Saga is a tool to convert stories syntax to a nicely formatted document.}
|
|
61
58
|
s.test_files = [
|
|
62
59
|
"test/saga_document_spec.rb",
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
60
|
+
"test/saga_formatter_spec.rb",
|
|
61
|
+
"test/saga_parser_spec.rb",
|
|
62
|
+
"test/saga_planning_spec.rb",
|
|
63
|
+
"test/saga_runner_spec.rb",
|
|
64
|
+
"test/saga_spec.rb",
|
|
65
|
+
"test/saga_tokenizer_spec.rb",
|
|
66
|
+
"test/spec_helper.rb"
|
|
70
67
|
]
|
|
71
68
|
|
|
72
69
|
if s.respond_to? :specification_version then
|
|
73
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
74
70
|
s.specification_version = 3
|
|
75
71
|
|
|
76
72
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: saga
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 1
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 7
|
|
9
|
-
-
|
|
10
|
-
version: 0.7.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.7.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Manfred Stienstra
|
|
@@ -15,8 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-07-04 00:00:00
|
|
19
|
-
default_executable: saga
|
|
18
|
+
date: 2011-07-04 00:00:00 Z
|
|
20
19
|
dependencies:
|
|
21
20
|
- !ruby/object:Gem::Dependency
|
|
22
21
|
name: erubis
|
|
@@ -104,7 +103,6 @@ files:
|
|
|
104
103
|
- test/saga_spec.rb
|
|
105
104
|
- test/saga_tokenizer_spec.rb
|
|
106
105
|
- test/spec_helper.rb
|
|
107
|
-
has_rdoc: true
|
|
108
106
|
homepage: http://fingertips.github.com
|
|
109
107
|
licenses: []
|
|
110
108
|
|
|
@@ -134,7 +132,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
134
132
|
requirements: []
|
|
135
133
|
|
|
136
134
|
rubyforge_project:
|
|
137
|
-
rubygems_version: 1.5
|
|
135
|
+
rubygems_version: 1.8.5
|
|
138
136
|
signing_key:
|
|
139
137
|
specification_version: 3
|
|
140
138
|
summary: Saga is a tool to convert stories syntax to a nicely formatted document.
|