gamefic-sdk 1.0.1 → 1.1.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: feb9e62d32af95b02fb220229fb0debf3fba4efc
4
- data.tar.gz: d92499811b3405a49ec933c50be9cfd6add98edc
3
+ metadata.gz: 3b6246feb78b9dfe2668e0409dad7e9c5866a248
4
+ data.tar.gz: c847fab4182447f1980d429e401af4543cd0a5ab
5
5
  SHA512:
6
- metadata.gz: 16f5d5eaa5452c9f6d3afc972b0e467c21e47d658a4a1a04280be2107f5fcdcbd58bc60fc1be24e815be3be1b174c1982a5de838a9c11a9a03f927a426219e4c
7
- data.tar.gz: c921c27a1ce303432775b92b8c7c82c8ddfd84e0fbc1205a6887a2a9ac08e6d0125f7c2f21262686814b204dac74316613c89e25e71d843fffb4202efa2a8d1c
6
+ metadata.gz: d8ceec5b5493b56cd852794e192774a77405147e930fe3e0696a48df1142777cc336e84de889c49c5098b68842653bb04d4cdf46160fec5e53dd732eb56a006a
7
+ data.tar.gz: 0c3062e078cf8639569d5bffce9a4f8fa53f735973a446cf785dbc5ab3915a543925927d247ec90ed484365337e687427529a8fb447c6dd2a20f97300fa7c5fc
data/html/core/engine.js CHANGED
@@ -76,14 +76,20 @@ var Gamefic = (function() {
76
76
  responseCallbacks[state] = callback;
77
77
  },
78
78
  save: function(filename, data) {
79
- var json = JSON.stringify(data);
80
- console.log("Save " + filename + ": " + json);
79
+ var json = Opal.JSON.$generate(data);
81
80
  localStorage.setItem(filename, json);
82
81
  Opal.GameficOpal.$static_player().$character().$tell('Game saved.');
83
82
  },
84
83
  restore: function(filename) {
85
- console.log("Restore " + filename + ": " + localStorage.getItem(filename));
86
- return JSON.parse(localStorage.getItem(filename));
84
+ var data = Opal.JSON.$parse(localStorage.getItem(filename));
85
+ var metadata = data.$fetch('metadata');
86
+ // HACK Converting hashes to strings for JavaScript comparison
87
+ if (metadata.$to_s() != Opal.GameficOpal.$static_plot().$metadata().$to_s()) {
88
+ Opal.GameficOpal.$static_player().$character().$tell('The saved data is not compatible with this version of the game.');
89
+ return Opal.nil;
90
+ } else {
91
+ return data;
92
+ }
87
93
  }
88
94
  }
89
95
  })();
@@ -27,7 +27,7 @@ module Gamefic::Sdk
27
27
  v['name'] = k
28
28
  puts "Cleaning #{k}..."
29
29
  build_dir = "#{directory}/build/#{k}"
30
- platform_dir = File.join(directory, release, k)
30
+ platform_dir = File.join(directory, "release", k)
31
31
  cls = Gamefic::Sdk::Platform.const_get(v['platform'])
32
32
  plat = cls.new(directory, v)
33
33
  plat.clean
@@ -4,7 +4,7 @@ module Gamefic::Sdk
4
4
  module Debug
5
5
  class Action < Gamefic::Action
6
6
  attr_reader :source_location
7
- def initialize(story, command, *queries, &proc)
7
+ def initialize(command, *queries, &proc)
8
8
  super
9
9
  @executed = false
10
10
  caller.each { |c|
@@ -15,7 +15,9 @@ module Gamefic::Sdk::Debug
15
15
  end
16
16
  end
17
17
  def action(command, *queries, &proc)
18
- Gamefic::Sdk::Debug::Action.new(self, command, *queries, &proc)
18
+ act = Gamefic::Sdk::Debug::Action.new(command, *queries, &proc)
19
+ add_action act
20
+ act
19
21
  end
20
22
  end
21
23
  end
@@ -15,7 +15,11 @@ module Gamefic::Sdk
15
15
  def build
16
16
  target_dir = config['target_dir']
17
17
  if config['filename'].to_s == ''
18
- filename = File.join(target_dir, source_dir.split('/').delete_if{|i| i.to_s == ''}.last + '.gfic')
18
+ if plot_config.title.to_s == ''
19
+ filename = File.join(target_dir, File.expand_path(source_dir).split('/').delete_if{|i| i.to_s == ''}.last + '.gfic')
20
+ else
21
+ filename = File.join(target_dir, plot_config.title.gsub(/ /, '-').downcase + '.gfic')
22
+ end
19
23
  else
20
24
  filename = File.join(target_dir, config['filename'])
21
25
  end
@@ -1,5 +1,7 @@
1
1
  require 'gamefic'
2
2
  require 'gamefic-sdk'
3
+ #require 'rubygems'
4
+ #gem 'opal', '>= 0.9', '< 0.10'
3
5
  require 'opal'
4
6
 
5
7
  module Gamefic::Sdk
@@ -71,9 +73,9 @@ module Gamefic::Sdk
71
73
  # Opal core
72
74
  if !File.exist?(build_dir + "/core/opal.js")
73
75
  File.open(build_dir + "/core/opal.js", "w") do |file|
74
- file << Opal::Builder.build('opal')
75
- file << Opal::Builder.build('json')
76
- file << Opal::Builder.build('native')
76
+ file << Opal::Builder.build('opal')
77
+ file << Opal::Builder.build('json')
78
+ file << Opal::Builder.build('native')
77
79
  end
78
80
  end
79
81
  end
@@ -107,7 +109,7 @@ module Gamefic::Sdk
107
109
  file << "\nend\n"
108
110
  }
109
111
  file << "end\n"
110
- #file << metadata
112
+ file << metadata_code
111
113
  end
112
114
  Opal.append_path build_dir
113
115
  File.open(build_dir + "/core/scripts.js", 'w') do |file|
@@ -152,6 +154,10 @@ module Gamefic::Sdk
152
154
  end
153
155
  }
154
156
  end
157
+
158
+ def metadata_code
159
+ "\nGameficOpal.static_plot.metadata = JSON.parse('#{metadata.to_json}')"
160
+ end
155
161
  end
156
162
 
157
163
  end
@@ -4,7 +4,7 @@ require 'gamefic/query/matches'
4
4
  require 'gamefic/grammar/verb_set'
5
5
  require 'gamefic/scene/multiple_choice/input'
6
6
 
7
- # HACK Opal doesn't recognizes classes and modules declared from scripts
7
+ # HACK Opal doesn't recognize classes and modules declared from scripts
8
8
  def Object.const_missing sym
9
9
  Gamefic.const_get sym
10
10
  end
@@ -17,24 +17,25 @@ module GameficOpal
17
17
  @@static_player ||= WebUser.new(GameficOpal.static_plot)
18
18
  end
19
19
 
20
- class WebPlot < Gamefic::Plot
21
- def script path
22
- # Stub
23
- end
24
- end
25
-
26
- class WebUser < Gamefic::User
27
- def save filename, data
28
- `Gamefic.save(filename, data);`
29
- end
30
- def restore filename
31
- data = `Gamefic.restore(filename);`
32
- return data
33
- end
34
- def test_queue
35
- character[:test_queue] || []
36
- end
37
- end
20
+ class WebPlot < Gamefic::Plot
21
+ def script path
22
+ # Stub
23
+ end
24
+ end
25
+
26
+ class WebUser < Gamefic::User
27
+ def save filename, data
28
+ data[:metadata] = character.plot.metadata
29
+ `Gamefic.save(filename, data);`
30
+ end
31
+ def restore filename
32
+ data = `Gamefic.restore(filename);`
33
+ return data
34
+ end
35
+ def test_queue
36
+ character[:test_queue] || []
37
+ end
38
+ end
38
39
  end
39
40
 
40
41
  GameficOpal.static_plot.script 'main'
@@ -70,7 +70,8 @@ class Gamefic::Sdk::Shell::Command::Init < Gamefic::Shell::Command::Base
70
70
  file.puts "web:",
71
71
  " platform: Web",
72
72
  "gfic:",
73
- " platform: Gfic"
73
+ " platform: Gfic",
74
+ " filename: game.gfic"
74
75
  end
75
76
  end
76
77
 
@@ -1,5 +1,5 @@
1
1
  module Gamefic
2
2
  module Sdk
3
- VERSION = '1.0.1'
3
+ VERSION = '1.1.0'
4
4
  end
5
5
  end
@@ -15,7 +15,7 @@ respond :open, Use.reachable(Openable) do |actor, container|
15
15
  end
16
16
  end
17
17
  if !container.open?
18
- actor.tell "#{you.pronoun.Subj} #{you.verb.open} #{the container}."
18
+ actor.tell "#{you.pronoun.Subj} #{you.verb['open']} #{the container}."
19
19
  container.open = true
20
20
  if container.children.that_are_not(:attached?).length > 0
21
21
  actor.perform :search, container
@@ -1,5 +1,8 @@
1
1
  module Gamefic::Openable
2
- attr_writer :open, :openable
2
+ attr_writer :openable
3
+ def open= bool
4
+ @open = bool
5
+ end
3
6
  def open?
4
7
  @open ||= false
5
8
  end
@@ -112,7 +112,7 @@ respond :drop, Use.any_expression, Use.ambiguous_children do |actor, text1, thin
112
112
  end
113
113
  end
114
114
 
115
- respond :drop, Use.any_expression, Use.ambiguous_children, Use.text("except", "but"), Use.any_expression, Use.ambiguous_children do |actor, _, things, _, exceptions|
115
+ respond :drop, Use.any_expression, Use.ambiguous_children, Use.text("except", "but"), Use.any_expression, Use.ambiguous_children do |actor, _, things, _, _, exceptions|
116
116
  actor.perform :drop, things - exceptions
117
117
  end
118
118
 
@@ -41,11 +41,7 @@ respond :insert, Use.many_children, Use.reachable(Container) do |actor, children
41
41
  end
42
42
  end
43
43
 
44
- respond :insert, Use.any_expression, Use.ambiguous_children, Use.reachable(Receptacle) do |actor, _, children, _, receptacle|
45
- actor.perform :insert, children, receptacle
46
- end
47
-
48
- respond :insert, Use.any_expression, Use.ambiguous_children, Use.reachable(Receptacle) do |actor, _, children, _, receptacle|
44
+ respond :insert, Use.any_expression, Use.ambiguous_children, Use.reachable(Receptacle) do |actor, _, children, receptacle|
49
45
  actor.perform :insert, children, receptacle
50
46
  end
51
47
 
@@ -54,10 +50,6 @@ respond :insert, Use.text("everything", "all"), Use.text("except", "but"), Use.a
54
50
  actor.perform :insert, children - exceptions, receptacle
55
51
  end
56
52
 
57
- respond :insert, Use.any_expression, Use.ambiguous_children, Use.reachable(Receptacle) do |actor, _, children, receptacle|
58
- actor.perform :insert, children, receptacle
59
- end
60
-
61
53
  respond :insert, Use.not_expression, Use.ambiguous_children, Use.reachable(Receptacle) do |actor, _, exceptions, receptacle|
62
54
  children = Use.children.context_from(actor).that_are_not(:attached?)
63
55
  actor.perform :insert, children - exceptions, receptacle
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gamefic-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fred Snyder
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-18 00:00:00.000000000 Z
11
+ date: 2016-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gamefic
@@ -30,28 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - '>='
32
32
  - !ruby/object:Gem::Version
33
- version: 0.7.2
33
+ version: 0.10.3
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '>='
39
39
  - !ruby/object:Gem::Version
40
- version: 0.7.2
41
- - !ruby/object:Gem::Dependency
42
- name: slop
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - '>='
46
- - !ruby/object:Gem::Version
47
- version: '0'
48
- type: :runtime
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - '>='
53
- - !ruby/object:Gem::Version
54
- version: '0'
40
+ version: 0.10.3
55
41
  - !ruby/object:Gem::Dependency
56
42
  name: rspec
57
43
  requirement: !ruby/object:Gem::Requirement
@@ -87,118 +73,128 @@ executables:
87
73
  extensions: []
88
74
  extra_rdoc_files: []
89
75
  files:
90
- - lib/gamefic-sdk.rb
91
- - lib/gamefic-sdk/platform/web/gamefic_opal.rb
92
- - lib/gamefic-sdk/platform/web/app_config.rb
93
- - lib/gamefic-sdk/platform/base.rb
94
- - lib/gamefic-sdk/platform/gfic.rb
95
- - lib/gamefic-sdk/platform/web.rb
96
- - lib/gamefic-sdk/plot_config.rb
97
- - lib/gamefic-sdk/shell.rb
98
- - lib/gamefic-sdk/shell/command.rb
99
- - lib/gamefic-sdk/shell/command/build.rb
100
- - lib/gamefic-sdk/shell/command/clean.rb
101
- - lib/gamefic-sdk/shell/command/init.rb
102
- - lib/gamefic-sdk/shell/command/test.rb
103
- - lib/gamefic-sdk/version.rb
104
- - lib/gamefic-sdk/debug/action.rb
105
- - lib/gamefic-sdk/debug/plot.rb
106
- - lib/gamefic-sdk/build.rb
107
- - lib/gamefic-sdk/debug.rb
108
- - lib/gamefic-sdk/platform.rb
76
+ - bin/gfk
77
+ - html/core/engine.js
109
78
  - html/core/jquery.js
110
79
  - html/core/jquery.modal.css
111
80
  - html/core/jquery.modal.js
112
81
  - html/core/js.cookie.js
113
- - html/core/engine.js
114
82
  - html/skins/hypertext/compass.png
115
- - html/skins/hypertext/style.css
116
83
  - html/skins/hypertext/index.html
84
+ - html/skins/hypertext/style.css
85
+ - html/skins/minimal/index.html.erb
86
+ - html/skins/minimal/index.rb
87
+ - html/skins/minimal/play.js
88
+ - html/skins/minimal/style.css
117
89
  - html/skins/multimedia/close.png
90
+ - html/skins/multimedia/index.html
118
91
  - html/skins/multimedia/mobile.css
119
92
  - html/skins/multimedia/spinner.gif
120
93
  - html/skins/multimedia/style.css
121
- - html/skins/multimedia/index.html
122
94
  - html/skins/standard/index.html.erb
123
- - html/skins/standard/style.css
124
- - html/skins/standard/play.js
125
95
  - html/skins/standard/index.rb
126
- - html/skins/minimal/style.css
127
- - html/skins/minimal/index.html.erb
128
- - html/skins/minimal/play.js
129
- - html/skins/minimal/index.rb
130
- - scripts/clothing/actions/wear.plot.rb
131
- - scripts/clothing/actions/inventory.plot.rb
132
- - scripts/clothing/actions/drop.plot.rb
133
- - scripts/clothing/actions/doff.plot.rb
134
- - scripts/clothing/entities/shoes.plot.rb
135
- - scripts/clothing/entities/shirt.plot.rb
136
- - scripts/clothing/entities/pants.plot.rb
137
- - scripts/clothing/entities/hat.plot.rb
138
- - scripts/clothing/entities/gloves.plot.rb
139
- - scripts/clothing/entities/coat.plot.rb
140
- - scripts/clothing/entities/clothing.plot.rb
96
+ - html/skins/standard/play.js
97
+ - html/skins/standard/style.css
98
+ - lib/gamefic-sdk.rb
99
+ - lib/gamefic-sdk/build.rb
100
+ - lib/gamefic-sdk/debug.rb
101
+ - lib/gamefic-sdk/debug/action.rb
102
+ - lib/gamefic-sdk/debug/plot.rb
103
+ - lib/gamefic-sdk/platform.rb
104
+ - lib/gamefic-sdk/platform/base.rb
105
+ - lib/gamefic-sdk/platform/gfic.rb
106
+ - lib/gamefic-sdk/platform/web.rb
107
+ - lib/gamefic-sdk/platform/web/app_config.rb
108
+ - lib/gamefic-sdk/platform/web/gamefic_opal.rb
109
+ - lib/gamefic-sdk/plot_config.rb
110
+ - lib/gamefic-sdk/shell.rb
111
+ - lib/gamefic-sdk/shell/command.rb
112
+ - lib/gamefic-sdk/shell/command/build.rb
113
+ - lib/gamefic-sdk/shell/command/clean.rb
114
+ - lib/gamefic-sdk/shell/command/init.rb
115
+ - lib/gamefic-sdk/shell/command/test.rb
116
+ - lib/gamefic-sdk/version.rb
117
+ - scripts/ansi.plot.rb
118
+ - scripts/autosuggest.plot.rb
119
+ - scripts/clothing.plot.rb
141
120
  - scripts/clothing/actions.plot.rb
121
+ - scripts/clothing/actions/doff.plot.rb
122
+ - scripts/clothing/actions/drop.plot.rb
123
+ - scripts/clothing/actions/inventory.plot.rb
124
+ - scripts/clothing/actions/wear.plot.rb
142
125
  - scripts/clothing/entities.plot.rb
143
- - scripts/standard/actions/unlock.plot.rb
144
- - scripts/standard/actions/drop.plot.rb
145
- - scripts/standard/actions/place.plot.rb
146
- - scripts/standard/actions/wait.plot.rb
147
- - scripts/standard/actions/read.plot.rb
148
- - scripts/standard/actions/nil.plot.rb
149
- - scripts/standard/actions/look-under.plot.rb
126
+ - scripts/clothing/entities/clothing.plot.rb
127
+ - scripts/clothing/entities/coat.plot.rb
128
+ - scripts/clothing/entities/gloves.plot.rb
129
+ - scripts/clothing/entities/hat.plot.rb
130
+ - scripts/clothing/entities/pants.plot.rb
131
+ - scripts/clothing/entities/shirt.plot.rb
132
+ - scripts/clothing/entities/shoes.plot.rb
133
+ - scripts/cover.plot.rb
134
+ - scripts/debug.plot.rb
135
+ - scripts/edible.plot.rb
136
+ - scripts/furniture.plot.rb
137
+ - scripts/hints.plot.rb
138
+ - scripts/hypertext.plot.rb
139
+ - scripts/media.plot.rb
140
+ - scripts/multimedia.plot.rb
141
+ - scripts/questions.plot.rb
142
+ - scripts/room-modes.plot.rb
143
+ - scripts/rough-sizes.plot.rb
144
+ - scripts/save-restore.plot.rb
145
+ - scripts/snapshots.plot.rb
146
+ - scripts/standard.plot.rb
147
+ - scripts/standard/actions.plot.rb
150
148
  - scripts/standard/actions/close.plot.rb
149
+ - scripts/standard/actions/drop.plot.rb
151
150
  - scripts/standard/actions/enter.plot.rb
152
151
  - scripts/standard/actions/give.plot.rb
153
152
  - scripts/standard/actions/go.plot.rb
153
+ - scripts/standard/actions/insert.plot.rb
154
154
  - scripts/standard/actions/inventory.plot.rb
155
155
  - scripts/standard/actions/leave.plot.rb
156
156
  - scripts/standard/actions/lock.plot.rb
157
+ - scripts/standard/actions/look-under.plot.rb
157
158
  - scripts/standard/actions/look.plot.rb
159
+ - scripts/standard/actions/nil.plot.rb
158
160
  - scripts/standard/actions/open.plot.rb
161
+ - scripts/standard/actions/place.plot.rb
162
+ - scripts/standard/actions/quit.plot.rb
163
+ - scripts/standard/actions/read.plot.rb
159
164
  - scripts/standard/actions/search.plot.rb
160
165
  - scripts/standard/actions/show.plot.rb
166
+ - scripts/standard/actions/take.plot.rb
161
167
  - scripts/standard/actions/talk.plot.rb
168
+ - scripts/standard/actions/unlock.plot.rb
162
169
  - scripts/standard/actions/use.plot.rb
163
- - scripts/standard/actions/quit.plot.rb
164
- - scripts/standard/actions/insert.plot.rb
165
- - scripts/standard/actions/take.plot.rb
170
+ - scripts/standard/actions/wait.plot.rb
171
+ - scripts/standard/entities.plot.rb
172
+ - scripts/standard/entities/character.plot.rb
173
+ - scripts/standard/entities/container.plot.rb
174
+ - scripts/standard/entities/door.plot.rb
175
+ - scripts/standard/entities/entity.plot.rb
176
+ - scripts/standard/entities/exterior.plot.rb
166
177
  - scripts/standard/entities/fixture.plot.rb
167
- - scripts/standard/entities/supporter.plot.rb
168
- - scripts/standard/entities/scenery.plot.rb
169
- - scripts/standard/entities/rubble.plot.rb
170
- - scripts/standard/entities/room.plot.rb
171
- - scripts/standard/entities/receptacle.plot.rb
172
- - scripts/standard/entities/portal.plot.rb
173
178
  - scripts/standard/entities/item.plot.rb
174
- - scripts/standard/entities/exterior.plot.rb
175
- - scripts/standard/entities/entity.plot.rb
176
- - scripts/standard/entities/door.plot.rb
177
- - scripts/standard/entities/container.plot.rb
178
- - scripts/standard/entities/character.plot.rb
179
- - scripts/standard/modules/transparent.plot.rb
180
- - scripts/standard/modules/portable.plot.rb
181
- - scripts/standard/modules/parent-room.plot.rb
182
- - scripts/standard/modules/openable.plot.rb
183
- - scripts/standard/modules/lockable.plot.rb
184
- - scripts/standard/modules/itemizable.plot.rb
185
- - scripts/standard/modules/explicit_exits.plot.rb
186
- - scripts/standard/modules/enterable.plot.rb
187
- - scripts/standard/modules/darkenable.plot.rb
188
- - scripts/standard/modules/auto_takes.plot.rb
189
- - scripts/standard/modules/attachable.plot.rb
190
- - scripts/standard/queries/visible.plot.rb
191
- - scripts/standard/queries/room.plot.rb
192
- - scripts/standard/queries/reachable.plot.rb
193
- - scripts/standard/queries/from_expression.plot.rb
194
- - scripts/standard/rules/has-enough-light.plot.rb
195
- - scripts/standard/actions.plot.rb
196
- - scripts/standard/entities.plot.rb
179
+ - scripts/standard/entities/portal.plot.rb
180
+ - scripts/standard/entities/receptacle.plot.rb
181
+ - scripts/standard/entities/room.plot.rb
182
+ - scripts/standard/entities/rubble.plot.rb
183
+ - scripts/standard/entities/scenery.plot.rb
184
+ - scripts/standard/entities/supporter.plot.rb
197
185
  - scripts/standard/modules.plot.rb
198
- - scripts/standard/rules.plot.rb
199
- - scripts/standard/use.plot.rb
186
+ - scripts/standard/modules/attachable.plot.rb
187
+ - scripts/standard/modules/auto_takes.plot.rb
188
+ - scripts/standard/modules/darkenable.plot.rb
189
+ - scripts/standard/modules/enterable.plot.rb
190
+ - scripts/standard/modules/explicit_exits.plot.rb
191
+ - scripts/standard/modules/itemizable.plot.rb
192
+ - scripts/standard/modules/lockable.plot.rb
193
+ - scripts/standard/modules/openable.plot.rb
194
+ - scripts/standard/modules/parent-room.plot.rb
195
+ - scripts/standard/modules/portable.plot.rb
196
+ - scripts/standard/modules/transparent.plot.rb
200
197
  - scripts/standard/pathfinder.plot.rb
201
- - scripts/standard/test.plot.rb
202
198
  - scripts/standard/plural.plot.rb
203
199
  - scripts/standard/plural/actions.plot.rb
204
200
  - scripts/standard/plural/actions/drop.plot.rb
@@ -212,26 +208,16 @@ files:
212
208
  - scripts/standard/plural/queries/not_expression.plot.rb
213
209
  - scripts/standard/plural/queries/plural_visible.plot.rb
214
210
  - scripts/standard/queries.plot.rb
215
- - scripts/clothing.plot.rb
216
- - scripts/debug.plot.rb
217
- - scripts/media.plot.rb
218
- - scripts/standard.plot.rb
219
- - scripts/undo.plot.rb
220
- - scripts/save-restore.plot.rb
221
- - scripts/rough-sizes.plot.rb
222
- - scripts/room-modes.plot.rb
223
- - scripts/questions.plot.rb
224
- - scripts/multimedia.plot.rb
225
- - scripts/hypertext.plot.rb
226
- - scripts/hints.plot.rb
227
- - scripts/furniture.plot.rb
228
- - scripts/edible.plot.rb
229
- - scripts/ansi.plot.rb
230
- - scripts/cover.plot.rb
231
- - scripts/snapshots.plot.rb
232
- - scripts/autosuggest.plot.rb
211
+ - scripts/standard/queries/from_expression.plot.rb
212
+ - scripts/standard/queries/reachable.plot.rb
213
+ - scripts/standard/queries/room.plot.rb
214
+ - scripts/standard/queries/visible.plot.rb
215
+ - scripts/standard/rules.plot.rb
216
+ - scripts/standard/rules/has-enough-light.plot.rb
217
+ - scripts/standard/test.plot.rb
218
+ - scripts/standard/use.plot.rb
233
219
  - scripts/suggestible.plot.rb
234
- - bin/gfk
220
+ - scripts/undo.plot.rb
235
221
  homepage: http://gamefic.com
236
222
  licenses:
237
223
  - MIT
@@ -244,7 +230,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
244
230
  requirements:
245
231
  - - '>='
246
232
  - !ruby/object:Gem::Version
247
- version: 1.9.3
233
+ version: 2.0.0
248
234
  required_rubygems_version: !ruby/object:Gem::Requirement
249
235
  requirements:
250
236
  - - '>='
@@ -252,7 +238,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
252
238
  version: '0'
253
239
  requirements: []
254
240
  rubyforge_project:
255
- rubygems_version: 2.0.14
241
+ rubygems_version: 2.6.8
256
242
  signing_key:
257
243
  specification_version: 4
258
244
  summary: Gamefic SDK