wagn 1.14.0 → 1.14.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.
Files changed (52) hide show
  1. checksums.yaml +5 -13
  2. data/VERSION +1 -1
  3. data/app/controllers/card_controller.rb +1 -1
  4. data/db/bootstrap/card_actions.yml +544 -544
  5. data/db/bootstrap/card_acts.yml +2 -2
  6. data/db/bootstrap/card_changes.yml +552 -562
  7. data/db/bootstrap/card_references.yml +340 -347
  8. data/db/bootstrap/cards.yml +2328 -2327
  9. data/db/migrate/20141121172918_rename_card_migration_table.rb +8 -0
  10. data/db/migrate_core_cards/20140629222005_add_email_cards.rb +0 -8
  11. data/db/migrate_core_cards/20141119001955_make_symlinks_relative.rb +15 -0
  12. data/db/migrate_core_cards/20141120120605_fix_notification_html_message.rb +10 -0
  13. data/db/schema.rb +3 -3
  14. data/db/version.txt +1 -0
  15. data/db/version_core_cards.txt +1 -0
  16. data/features/{watch.feature → follow.feature} +3 -2
  17. data/features/notifications.feature +5 -5
  18. data/features/setup.feature +1 -1
  19. data/features/step_definitions/email_steps.rb +18 -18
  20. data/features/step_definitions/wagn_steps.rb +14 -8
  21. data/features/step_definitions/web_steps.rb +2 -2
  22. data/lib/card/action.rb +2 -2
  23. data/lib/card/codename.rb +18 -12
  24. data/lib/card/generators/card_migration/card_migration_generator.rb +2 -1
  25. data/lib/wagn/application.rb +1 -1
  26. data/lib/wagn/cache.rb +9 -0
  27. data/{config → lib/wagn/config}/routes.rb +0 -0
  28. data/lib/wagn/core_migration.rb +2 -2
  29. data/lib/wagn/generators/wagn/wagn_generator.rb +1 -2
  30. data/lib/wagn/migration.rb +8 -14
  31. data/lib/wagn/tasks/wagn.rake +4 -4
  32. data/lib/wagn/version.rb +11 -4
  33. data/mod/01_core/set/all/collection.rb +1 -1
  34. data/mod/01_core/set/all/content.rb +6 -2
  35. data/mod/01_core/set/all/phases.rb +1 -1
  36. data/mod/01_core/set/all/tracked_attributes.rb +1 -1
  37. data/mod/02_basic_types/set/type/pointer.rb +9 -8
  38. data/mod/03_machines/set/right/machine_output.rb +1 -1
  39. data/mod/05_standard/set/all/attach.rb +2 -2
  40. data/mod/05_standard/set/all/follow.rb +2 -2
  41. data/mod/05_standard/set/all/rss.rb +2 -2
  42. data/mod/05_standard/set/type/signup.rb +3 -3
  43. data/test/fixtures/card_actions.yml +954 -954
  44. data/test/fixtures/card_acts.yml +196 -196
  45. data/test/fixtures/card_changes.yml +2609 -2619
  46. data/test/fixtures/card_references.yml +495 -502
  47. data/test/fixtures/cards.yml +2870 -2869
  48. metadata +13 -12
  49. data/Rakefile +0 -7
  50. data/config/samples/cucumber.yml +0 -8
  51. data/config/version.txt +0 -1
  52. data/config/version_cards.txt +0 -1
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wagn
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.14.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ethan McCutchen
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-11-17 00:00:00.000000000 Z
13
+ date: 2014-11-24 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails
@@ -253,7 +253,6 @@ files:
253
253
  - Guardfile
254
254
  - LICENSE
255
255
  - README.rdoc
256
- - Rakefile
257
256
  - VERSION
258
257
  - app/assets/images/body-bg.bmp
259
258
  - app/assets/images/body-bg.png
@@ -279,10 +278,6 @@ files:
279
278
  - app/assets/javascripts/jquery.ui.autocomplete.html.js
280
279
  - app/controllers/card_controller.rb
281
280
  - bin/wagn
282
- - config/routes.rb
283
- - config/samples/cucumber.yml
284
- - config/version.txt
285
- - config/version_cards.txt
286
281
  - db/bootstrap/card_actions.yml
287
282
  - db/bootstrap/card_acts.yml
288
283
  - db/bootstrap/card_changes.yml
@@ -298,6 +293,7 @@ files:
298
293
  - db/migrate/20130411210957_update_codenames.rb
299
294
  - db/migrate/20140822073704_create_new_revision_tables.rb
300
295
  - db/migrate/20141001105348_move_revisions_to_actions.rb
296
+ - db/migrate/20141121172918_rename_card_migration_table.rb
301
297
  - db/migrate_core_cards/20130411191151_renaming_for_menu.rb
302
298
  - db/migrate_core_cards/20130411211600_delete_old_related_tab_cards.rb
303
299
  - db/migrate_core_cards/20130419215612_import_help_text.rb
@@ -315,6 +311,8 @@ files:
315
311
  - db/migrate_core_cards/20140725180118_config_card_updates.rb
316
312
  - db/migrate_core_cards/20141111083921_delete_machine_output.rb
317
313
  - db/migrate_core_cards/20141115034214_config_descriptions_etc.rb
314
+ - db/migrate_core_cards/20141119001955_make_symlinks_relative.rb
315
+ - db/migrate_core_cards/20141120120605_fix_notification_html_message.rb
318
316
  - db/migrate_core_cards/data/1.11_help_text.json
319
317
  - db/migrate_core_cards/data/1.12_stylesheets/classic_cards.scss
320
318
  - db/migrate_core_cards/data/1.12_stylesheets/common.scss
@@ -333,9 +331,12 @@ files:
333
331
  - db/migrate_core_cards/data/mailer/verification_email.txt
334
332
  - db/schema.rb
335
333
  - db/seeds.rb
334
+ - db/version.txt
335
+ - db/version_core_cards.txt
336
336
  - features/autonaming.feature
337
337
  - features/conflict.feature
338
338
  - features/flexmail.feature
339
+ - features/follow.feature
339
340
  - features/layouts.feature
340
341
  - features/navbox.feature
341
342
  - features/notifications.feature
@@ -356,7 +357,6 @@ files:
356
357
  - features/support/wagn_env.rb
357
358
  - features/table_of_contents.feature
358
359
  - features/update_includers.feature
359
- - features/watch.feature
360
360
  - lib/card.rb
361
361
  - lib/card/act.rb
362
362
  - lib/card/action.rb
@@ -415,6 +415,7 @@ files:
415
415
  - lib/wagn/config/initializers/secret_token.rb
416
416
  - lib/wagn/config/initializers/session_store.rb
417
417
  - lib/wagn/config/initializers/uuid_state_file.rb
418
+ - lib/wagn/config/routes.rb
418
419
  - lib/wagn/core_migration.rb
419
420
  - lib/wagn/exceptions.rb
420
421
  - lib/wagn/generators/wagn/USAGE
@@ -1354,17 +1355,17 @@ require_paths:
1354
1355
  - lib
1355
1356
  required_ruby_version: !ruby/object:Gem::Requirement
1356
1357
  requirements:
1357
- - - ! '>='
1358
+ - - '>='
1358
1359
  - !ruby/object:Gem::Version
1359
1360
  version: 1.8.7
1360
1361
  required_rubygems_version: !ruby/object:Gem::Requirement
1361
1362
  requirements:
1362
- - - ! '>='
1363
+ - - '>='
1363
1364
  - !ruby/object:Gem::Version
1364
1365
  version: '0'
1365
1366
  requirements: []
1366
1367
  rubyforge_project:
1367
- rubygems_version: 2.2.1
1368
+ rubygems_version: 2.0.3
1368
1369
  signing_key:
1369
1370
  specification_version: 4
1370
1371
  summary: structured wiki web platform
@@ -1372,6 +1373,7 @@ test_files:
1372
1373
  - features/autonaming.feature
1373
1374
  - features/conflict.feature
1374
1375
  - features/flexmail.feature
1376
+ - features/follow.feature
1375
1377
  - features/layouts.feature
1376
1378
  - features/navbox.feature
1377
1379
  - features/notifications.feature
@@ -1392,7 +1394,6 @@ test_files:
1392
1394
  - features/support/wagn_env.rb
1393
1395
  - features/table_of_contents.feature
1394
1396
  - features/update_includers.feature
1395
- - features/watch.feature
1396
1397
  - spec/controllers/card_controller_spec.rb
1397
1398
  - spec/controllers/location_spec.rb
1398
1399
  - spec/javascripts/helpers/.gitkeep
data/Rakefile DELETED
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env rake
2
- # Add your own tasks in files placed in lib/tasks ending in .rake,
3
- # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
4
-
5
- require File.expand_path('../config/application', __FILE__)
6
-
7
- WagnTest::Application.load_tasks
@@ -1,8 +0,0 @@
1
- <%
2
- rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : ""
3
- rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}"
4
- std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} --strict --tags ~@wip"
5
- %>
6
- default: <%= std_opts %> features
7
- wip: --tags @wip:3 --wip features
8
- rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip
@@ -1 +0,0 @@
1
- 20141001105348
@@ -1 +0,0 @@
1
- 20141115034214