wontomedia 1.0.2 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (115) hide show
  1. data/Capfile +14 -0
  2. data/Gemfile +21 -0
  3. data/Gemfile.lock +110 -0
  4. data/README.markdown +3 -1
  5. data/Rakefile +47 -14
  6. data/VERSION.yml +2 -2
  7. data/app/controllers/admin_controller.rb +1 -1
  8. data/app/controllers/application_controller.rb +1 -1
  9. data/app/controllers/connections_controller.rb +1 -1
  10. data/app/controllers/items_controller.rb +1 -1
  11. data/app/helpers/connections_helper.rb +1 -1
  12. data/app/helpers/format_helper.rb +1 -1
  13. data/app/helpers/items_helper.rb +1 -1
  14. data/app/models/category_item.rb +1 -1
  15. data/app/models/connection.rb +1 -1
  16. data/app/models/individual_item.rb +1 -1
  17. data/app/models/item.rb +1 -1
  18. data/app/models/property_item.rb +1 -1
  19. data/app/models/qualified_item.rb +1 -1
  20. data/app/views/admin/index.html.erb +1 -1
  21. data/app/views/admin/search.html.erb +1 -1
  22. data/app/views/connections/_index_outbound_links.html.erb +1 -1
  23. data/app/views/connections/_spo_select_controls.html.erb +1 -1
  24. data/app/views/connections/edit.html.erb +1 -1
  25. data/app/views/connections/index.html.erb +1 -1
  26. data/app/views/connections/new.html.erb +1 -1
  27. data/app/views/connections/show.html.erb +1 -1
  28. data/app/views/items/_active_content.html.erb +1 -1
  29. data/app/views/items/_class_select.html.erb +1 -1
  30. data/app/views/items/_content_examples.html.erb +1 -1
  31. data/app/views/items/_core_tasks.html.erb +1 -1
  32. data/app/views/items/_form_fields.html.erb +1 -1
  33. data/app/views/items/_inline_add_popopen.html.erb +1 -1
  34. data/app/views/items/_inline_item_add_form.html.erb +1 -1
  35. data/app/views/items/_inline_scalar_add_form.html.erb +1 -1
  36. data/app/views/items/_list_outbound_links.html.erb +1 -1
  37. data/app/views/items/_most_populous_classes.html.erb +1 -1
  38. data/app/views/items/_screen_select.html.erb +1 -1
  39. data/app/views/items/_show_outbound_links.html.erb +1 -1
  40. data/app/views/items/_topic_list.html.erb +1 -1
  41. data/app/views/items/_type_select.html.erb +1 -1
  42. data/app/views/items/edit.html.erb +1 -1
  43. data/app/views/items/index.html.erb +1 -1
  44. data/app/views/items/new.html.erb +1 -1
  45. data/app/views/items/newpop.html.erb +1 -1
  46. data/app/views/items/show.html.erb +1 -1
  47. data/app/views/layouts/_amazon_ads.html.erb +1 -1
  48. data/app/views/layouts/_dynamic_alert_framework.html.erb +1 -1
  49. data/app/views/layouts/_footer.html.erb +2 -2
  50. data/app/views/layouts/_glossary_help_box.html.erb +1 -1
  51. data/app/views/layouts/_google_ads.html.erb +1 -1
  52. data/app/views/layouts/_language_select.html.erb +1 -1
  53. data/app/views/layouts/_login_controls.html.erb +1 -1
  54. data/app/views/layouts/_master_help.html.erb +1 -1
  55. data/app/views/layouts/_navigation_menu.html.erb +1 -1
  56. data/app/views/layouts/_search_box.html.erb +1 -1
  57. data/app/views/layouts/_status_msgs.html.erb +1 -1
  58. data/app/views/layouts/application.html.erb +1 -1
  59. data/app/views/layouts/base.html.erb +1 -1
  60. data/app/views/layouts/home.html.erb +1 -1
  61. data/app/views/layouts/popup.html.erb +1 -1
  62. data/app/views/layouts/search.html.erb +1 -1
  63. data/assets/wontomedia-sample.rb +1 -1
  64. data/config/asset_packages.yml +1 -1
  65. data/config/boot.rb +17 -0
  66. data/config/caliper.yml +1 -1
  67. data/config/cucumber.yml +1 -1
  68. data/config/database-mysql-development.yml +1 -1
  69. data/config/database-mysql.yml +1 -1
  70. data/config/deploy.rb +42 -0
  71. data/config/deploy_on_a2hosting.rb +53 -0
  72. data/config/deploy_wontomedia.rb +85 -0
  73. data/config/environment.rb +2 -10
  74. data/config/environments/cucumber.rb +0 -7
  75. data/config/environments/development.rb +1 -1
  76. data/config/environments/production.rb +1 -1
  77. data/config/environments/test.rb +1 -1
  78. data/config/initializers/extensions.rb +1 -1
  79. data/config/initializers/mongrel.rb +90 -0
  80. data/config/preinitializer.rb +38 -0
  81. data/config/routes.rb +1 -1
  82. data/db/fixtures/connections.yml +1 -1
  83. data/db/fixtures/items.yml +1 -1
  84. data/default-custom/app/views/items/_home_introductory_text.html.erb +1 -1
  85. data/default-custom/app/views/items/home.html.erb +1 -1
  86. data/default-custom/app/views/layouts/_local_navigation.html.erb +1 -1
  87. data/default-custom/config/initializers/wontomedia.rb +53 -0
  88. data/default-custom/public/images/logo.png +0 -0
  89. data/default-custom/public/robots.txt +2 -0
  90. data/doc/README.markdown +3 -2
  91. data/doc/README_FOR_APP +1 -1
  92. data/doc/customization.markdown +15 -15
  93. data/doc/scripts/rake-customize.markdown +10 -10
  94. data/lib/helpers/connection_helper.rb +1 -1
  95. data/lib/helpers/item_helper.rb +1 -1
  96. data/lib/helpers/tripple_navigation.rb +1 -1
  97. data/{vendor/plugins/asset_packager → lib}/tasks/asset_packager_tasks.rake +2 -3
  98. data/lib/tasks/cucumber.rake +1 -1
  99. data/lib/tasks/customize.rake +10 -8
  100. data/lib/tasks/db.rake +1 -1
  101. data/lib/tasks/javascript_testing_tasks.rake +4 -2
  102. data/public/404.html +2 -2
  103. data/public/422.html +2 -2
  104. data/public/500.html +2 -2
  105. data/public/javascripts/application.js +1 -1
  106. data/public/javascripts/forConnectionsForms.js +1 -1
  107. data/public/javascripts/forItemsForms.js +1 -1
  108. data/public/javascripts/forItemsShow.js +1 -1
  109. data/public/javascripts/itemCreatePopup.js +1 -1
  110. data/public/javascripts/itemTitleToName.js +1 -1
  111. data/public/javascripts/reconcileJQueryAndPrototype.js +1 -1
  112. metadata +220 -18
  113. data/default-custom/public/images/logo.svg +0 -74
  114. data/doc/gemlist.txt +0 -42
  115. data/public/robots.txt +0 -7
Binary file
@@ -0,0 +1,2 @@
1
+ User-agent: *
2
+ Disallow: /
data/doc/README.markdown CHANGED
@@ -1,5 +1,6 @@
1
1
  "README" file for general-documentation directory of the WontoMedia package
2
- Copyright (C) 2010 - Glen E. Ivey
2
+
3
+ Copyright (C) 2011 - Glen E. Ivey
3
4
  (see the end of this file for copyright/licensing information)
4
5
 
5
6
  This directory contains documentation for the WontoMedia application.
@@ -12,7 +13,7 @@ documentation. The files and sub-directories here are as follows:
12
13
  `rake` tasks that are part of the WontoMedia project.
13
14
 
14
15
  * __wiki__: This directory contains the source documents (raw
15
- MediaWiki markup) for the content of wiki.wontology.org. In
16
+ MediaWiki markup) for the content of `wiki.wontology.org`. In
16
17
  addition to providing a local and cannonical set of documentation
17
18
  for WontoMedia's internals, the content of `wiki/Help` can be used
18
19
  to seed your own local MediaWiki installation if you'd rather use
data/doc/README_FOR_APP CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (C) 2010 - Glen E. Ivey
1
+ Copyright (C) 2011 - Glen E. Ivey
2
2
 
3
3
  WontoMedia is a Ruby-on-Rails web application for the community
4
4
  creation of information classification schemes. It is free software,
@@ -1,4 +1,4 @@
1
- Copyright (C) 2010 - Glen E. Ivey
1
+ Copyright (C) 2011 - Glen E. Ivey
2
2
  (see the end of this file for copyright/licensing information)
3
3
 
4
4
  Mechanism for Per-Instalation WontoMedia Customization
@@ -35,7 +35,7 @@ We have reconciled these conflicting needs as follows:
35
35
  used as-is to get a new WontoMedia installation going, is located
36
36
  in:
37
37
 
38
- wontomedia/default-custom
38
+ wontomedia/default-custom
39
39
 
40
40
  * a rake task is provided that will create symbolic links to all
41
41
  files found under all customization directories from the matching
@@ -44,10 +44,10 @@ We have reconciled these conflicting needs as follows:
44
44
  control purposes) to appear "inside" where Rails expects them
45
45
  during execution.
46
46
 
47
- * a script is executed by rake (first step in "rake test:policies")
47
+ * a script is executed by rake (first step in `"rake test:policies"`)
48
48
  that finds all symbolic links in the project directory, and
49
- replaces the file $GIT_DIR/info/exclude with a list of them. In a
50
- different type of project, where keeping symbolic links under
49
+ replaces the file `$GIT_DIR/info/exclude` with a list of them. In
50
+ a different type of project, where keeping symbolic links under
51
51
  version control was important, this would be a problem. However,
52
52
  we have chosen the convention that symbolic links will be used in
53
53
  the WontoMedia directory structure only for installation
@@ -56,22 +56,22 @@ We have reconciled these conflicting needs as follows:
56
56
  configuration of cusomization files from being incorporated into
57
57
  any updates to WontoMedia.
58
58
 
59
- The "exclude" file is used, rather than .gitignore, so that an
59
+ The "exclude" file is used, rather than `.gitignore`, so that an
60
60
  individual site's extensions can include files above and beyond the
61
61
  minimal set of entry points that the WontoMedia core expects. If
62
- .gitignore were used, then people would still have to manually
62
+ `.gitignore` were used, then people would still have to manually
63
63
  prevent customization files they added to their system from being
64
64
  listed in Git commits they share with others.
65
65
 
66
- * a script is executed by rake (run as part of "rake test:policies")
67
- that recurses through the "default-custom" directory and fails that
68
- a symbolic link exists in the application directory hierarchy for
69
- each file under default-custom. In this way, the content of
70
- default-custom not only provides a sample of customization files,
71
- but serves as the definition for all of the files referenced from
72
- portions of the core application.
66
+ * a script is executed by `rake` (run as part of `"rake
67
+ test:policies"`) that recurses through the `default-custom`
68
+ directory and fails that a symbolic link exists in the application
69
+ directory hierarchy for each file under `default-custom`. In this
70
+ way, the content of `default-custom` not only provides a sample of
71
+ customization files, but serves as the definition for all of the
72
+ files referenced from portions of the core application.
73
73
 
74
- The "customize" rake task is documented in
74
+ The `customize` rake task is documented in
75
75
 
76
76
  wontomedia/doc/script/rake-customize.markdown
77
77
 
@@ -1,4 +1,4 @@
1
- Copyright (C) 2010 - Glen E. Ivey
1
+ Copyright (C) 2011 - Glen E. Ivey
2
2
  (see the end of this file for copyright/licensing information)
3
3
 
4
4
  # rake customize[directory-path:directory-path]
@@ -12,9 +12,9 @@ control repositories) from the core of the WontoMedia web application.
12
12
 
13
13
  As many directories as desired can be specified on the command line
14
14
  (one minimum). The directory name list must be enclosed in square
15
- brackets, and placed immediately after the task name "customize" (no
15
+ brackets, and placed immediately after the task name `customize` (no
16
16
  space). Each directory is separated from the next by a colon (like a
17
- UNIX PATH). Recall that rake always operates relative to the top
17
+ UNIX `PATH`). Recall that rake always operates relative to the top
18
18
  directory of your project, regardless of your working directory when
19
19
  you execute the rake command. Therefore, any relative paths you
20
20
  include are evaluated relative to the root of the wontomedia
@@ -24,16 +24,16 @@ Depending on your shell and the content of your directory names, you
24
24
  may need to include quotation marks or escape characters in the
25
25
  command line you type in order for rake to receive a command line
26
26
  formatted as shown. In particular, the entire parameterized task,
27
- from the task name ("customize") through the closing square-bracket
27
+ from the task name (`customize`) through the closing square-bracket
28
28
  must be parsed by the shell and passed to rake as a single
29
29
  command-line argument.
30
30
 
31
- As an example of the "customize" task's operation, the command
31
+ As an example of the `customize` task's operation, the command
32
32
 
33
33
  rake customize[~/myWontology]
34
34
 
35
35
  will recursively find all files and directories under your
36
- "myWontology" directory, and make it appear as though they've been
36
+ `myWontology` directory, and make it appear as though they've been
37
37
  copied into your WontoMedia directory (in which the rake command was
38
38
  executed). Assuming the following directory structure/content:
39
39
 
@@ -41,7 +41,7 @@ executed). Assuming the following directory structure/content:
41
41
 
42
42
  this rake task will do the equivalent of:
43
43
 
44
- ln -s ~/myWontology/app/views/items/_home_introductory_text.html.erb [wontomedia-root]/app/views/items
44
+ ln -s ~/myWontology/app/views/items/_home_introductory_text.html.erb $RAILS_ROOT/app/views/items
45
45
 
46
46
  However, the rake task uses absolute paths, so it will have to be
47
47
  re-executed if you later move either the WontoMedia directory or one
@@ -65,11 +65,11 @@ WontoMedia directory:
65
65
  rake customize[default-custom:~/myWontology]
66
66
 
67
67
  will first create links to the minimum set of required customization
68
- files under the "default-custom" directory, and then create links to
69
- the files in your "myWontology" directory. Your myWontology could
68
+ files under the `default-custom` directory, and then create links to
69
+ the files in your `myWontology` directory. Your `myWontology` could
70
70
  then contain as little as a single file (with the correct,
71
71
  Rails-matching relative path) that replaced only a single link
72
- pointing into the default-custom directory.
72
+ pointing into the `default-custom` directory.
73
73
 
74
74
  ----------------------------------------------------------------
75
75
 
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # WontoMedia - a wontology web application
3
- # Copyright (C) 2010 - Glen E. Ivey
3
+ # Copyright (C) 2011 - Glen E. Ivey
4
4
  # www.wontology.com
5
5
  #
6
6
  # This program is free software: you can redistribute it and/or modify
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # WontoMedia - a wontology web application
3
- # Copyright (C) 2010 - Glen E. Ivey
3
+ # Copyright (C) 2011 - Glen E. Ivey
4
4
  # www.wontology.com
5
5
  #
6
6
  # This program is free software: you can redistribute it and/or modify
@@ -1,6 +1,6 @@
1
1
  #--
2
2
  # WontoMedia - a wontology web application
3
- # Copyright (C) 2010 - Glen E. Ivey
3
+ # Copyright (C) 2011 - Glen E. Ivey
4
4
  # www.wontology.com
5
5
  #
6
6
  # This program is free software: you can redistribute it and/or modify
@@ -1,5 +1,5 @@
1
1
  require 'yaml'
2
- require File.dirname(__FILE__) + '/../lib/synthesis/asset_package'
2
+ require Rails.root.join 'vendor/plugins/asset_packager/lib/synthesis/asset_package'
3
3
 
4
4
  namespace :asset do
5
5
  namespace :packager do
@@ -13,11 +13,10 @@ namespace :asset do
13
13
  task :delete_all do
14
14
  Synthesis::AssetPackage.delete_all
15
15
  end
16
-
16
+
17
17
  desc "Generate asset_packages.yml from existing assets"
18
18
  task :create_yml do
19
19
  Synthesis::AssetPackage.create_yml
20
20
  end
21
-
22
21
  end
23
22
  end
@@ -1,5 +1,5 @@
1
1
  # WontoMedia - a wontology web application
2
- # Copyright (C) 2010 - Glen E. Ivey
2
+ # Copyright (C) 2011 - Glen E. Ivey
3
3
  # www.wontology.com
4
4
  #
5
5
  # This program is free software: you can redistribute it and/or modify
@@ -1,5 +1,5 @@
1
1
  # WontoMedia - a wontology web application
2
- # Copyright (C) 2010 - Glen E. Ivey
2
+ # Copyright (C) 2011 - Glen E. Ivey
3
3
  # www.wontology.com
4
4
  #
5
5
  # This program is free software: you can redistribute it and/or modify
@@ -24,13 +24,15 @@ task :customize, :path_list do |t, args|
24
24
  # first, clear out all symbolic links from any previous
25
25
  # configurations--we don't want to leave any old ones lying around
26
26
  # pointing into customization directories we aren't currently using.
27
- FileList[ "*", "**/*"].
28
- exclude do |maybe_not_link|
29
- !File.symlink?(maybe_not_link)
30
- end.
31
- each do |link_to_delete|
32
- File.delete link_to_delete
33
- end
27
+ unless RAILS_ENV == 'production'
28
+ FileList[ "*", "**/*"].
29
+ exclude do |maybe_not_link|
30
+ !File.symlink?(maybe_not_link)
31
+ end.
32
+ each do |link_to_delete|
33
+ File.delete link_to_delete
34
+ end
35
+ end
34
36
 
35
37
  # now, build new links
36
38
  paths = args[:path_list].split(':')
data/lib/tasks/db.rake CHANGED
@@ -1,5 +1,5 @@
1
1
  # WontoMedia - a wontology web application
2
- # Copyright (C) 2010 - Glen E. Ivey
2
+ # Copyright (C) 2011 - Glen E. Ivey
3
3
  # www.wontology.com
4
4
  #
5
5
  # This program is free software: you can redistribute it and/or modify
@@ -1,5 +1,5 @@
1
1
  # WontoMedia - a wontology web application
2
- # Copyright (C) 2010 - Glen E. Ivey
2
+ # Copyright (C) 2011 - Glen E. Ivey
3
3
  # www.wontology.com
4
4
  #
5
5
  # This program is free software: you can redistribute it and/or modify
@@ -171,6 +171,8 @@ begin # don't force Blue Ridge dependency on non-developers
171
171
  end
172
172
 
173
173
  rescue LoadError
174
- puts "WARNING: Missing development dependency. 'Blue Ridge', 'Webrat', or a dependency not available. To install, see 'http://wiki.wontology.org/SettingUpYourDevelopmentEnvironment'"
174
+ unless ENV['NO_RAKE_WARN']
175
+ puts "WARNING: Missing development dependency. 'Blue Ridge', 'Webrat', or a dependency not available. To install, see 'http://wiki.wontology.org/SettingUpYourDevelopmentEnvironment'"
176
+ end
175
177
  end
176
178
 
data/public/404.html CHANGED
@@ -1,9 +1,9 @@
1
1
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
3
 
4
4
  <!--
5
5
  WontoMedia - a wontology web application
6
- Copyright (C) 2010 - Glen E. Ivey
6
+ Copyright (C) 2011 - Glen E. Ivey
7
7
  www.wontology.com
8
8
 
9
9
  This program is free software: you can redistribute it and/or modify
data/public/422.html CHANGED
@@ -1,9 +1,9 @@
1
1
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
3
 
4
4
  <!--
5
5
  WontoMedia - a wontology web application
6
- Copyright (C) 2010 - Glen E. Ivey
6
+ Copyright (C) 2011 - Glen E. Ivey
7
7
  www.wontology.com
8
8
 
9
9
  This program is free software: you can redistribute it and/or modify
data/public/500.html CHANGED
@@ -1,9 +1,9 @@
1
1
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
3
 
4
4
  <!--
5
5
  WontoMedia - a wontology web application
6
- Copyright (C) 2010 - Glen E. Ivey
6
+ Copyright (C) 2011 - Glen E. Ivey
7
7
  www.wontology.com
8
8
 
9
9
  This program is free software: you can redistribute it and/or modify
@@ -1,5 +1,5 @@
1
1
  // WontoMedia - a wontology web application
2
- // Copyright (C) 2010 - Glen E. Ivey
2
+ // Copyright (C) 2011 - Glen E. Ivey
3
3
  // www.wontology.com
4
4
  //
5
5
  // This program is free software: you can redistribute it and/or modify
@@ -1,5 +1,5 @@
1
1
  // WontoMedia - a wontology web application
2
- // Copyright (C) 2010 - Glen E. Ivey
2
+ // Copyright (C) 2011 - Glen E. Ivey
3
3
  // www.wontology.com
4
4
  //
5
5
  // This program is free software: you can redistribute it and/or modify
@@ -1,5 +1,5 @@
1
1
  // WontoMedia - a wontology web application
2
- // Copyright (C) 2010 - Glen E. Ivey
2
+ // Copyright (C) 2011 - Glen E. Ivey
3
3
  // www.wontology.com
4
4
  //
5
5
  // This program is free software: you can redistribute it and/or modify
@@ -1,5 +1,5 @@
1
1
  // WontoMedia - a wontology web application
2
- // Copyright (C) 2010 - Glen E. Ivey
2
+ // Copyright (C) 2011 - Glen E. Ivey
3
3
  // www.wontology.com
4
4
  //
5
5
  // This program is free software: you can redistribute it and/or modify
@@ -1,5 +1,5 @@
1
1
  // WontoMedia - a wontology web application
2
- // Copyright (C) 2010 - Glen E. Ivey
2
+ // Copyright (C) 2011 - Glen E. Ivey
3
3
  // www.wontology.com
4
4
  //
5
5
  // This program is free software: you can redistribute it and/or modify
@@ -1,5 +1,5 @@
1
1
  // WontoMedia - a wontology web application
2
- // Copyright (C) 2010 - Glen E. Ivey
2
+ // Copyright (C) 2011 - Glen E. Ivey
3
3
  // www.wontology.com
4
4
  //
5
5
  // This program is free software: you can redistribute it and/or modify
@@ -1,5 +1,5 @@
1
1
  // WontoMedia - a wontology web application
2
- // Copyright (C) 2010 - Glen E. Ivey
2
+ // Copyright (C) 2011 - Glen E. Ivey
3
3
  // www.wontology.com
4
4
  //
5
5
  // This program is free software: you can redistribute it and/or modify
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wontomedia
3
3
  version: !ruby/object:Gem::Version
4
+ hash: 31
4
5
  prerelease: false
5
6
  segments:
6
7
  - 1
7
8
  - 0
8
- - 2
9
- version: 1.0.2
9
+ - 4
10
+ version: 1.0.4
10
11
  platform: ruby
11
12
  authors:
12
13
  - Glen E. Ivey
@@ -14,37 +15,227 @@ autorequire:
14
15
  bindir: bin
15
16
  cert_chain: []
16
17
 
17
- date: 2010-04-11 00:00:00 -07:00
18
+ date: 2011-03-27 00:00:00 -07:00
18
19
  default_executable:
19
20
  dependencies:
20
21
  - !ruby/object:Gem::Dependency
21
- name: rake
22
22
  prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
23
+ name: rake
24
+ version_requirements: &id001 !ruby/object:Gem::Requirement
25
+ none: false
24
26
  requirements:
25
- - - ~>
27
+ - - "="
26
28
  - !ruby/object:Gem::Version
29
+ hash: 49
27
30
  segments:
28
31
  - 0
29
32
  - 8
30
33
  - 7
31
34
  version: 0.8.7
35
+ requirement: *id001
32
36
  type: :runtime
33
- version_requirements: *id001
34
37
  - !ruby/object:Gem::Dependency
35
- name: rails
36
38
  prerelease: false
37
- requirement: &id002 !ruby/object:Gem::Requirement
39
+ name: rails
40
+ version_requirements: &id002 !ruby/object:Gem::Requirement
41
+ none: false
38
42
  requirements:
39
- - - ~>
43
+ - - "="
40
44
  - !ruby/object:Gem::Version
45
+ hash: 21
41
46
  segments:
42
47
  - 2
43
48
  - 3
44
- - 5
45
- version: 2.3.5
49
+ - 11
50
+ version: 2.3.11
51
+ requirement: *id002
52
+ type: :runtime
53
+ - !ruby/object:Gem::Dependency
54
+ prerelease: false
55
+ name: mysql
56
+ version_requirements: &id003 !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - "="
60
+ - !ruby/object:Gem::Version
61
+ hash: 45
62
+ segments:
63
+ - 2
64
+ - 8
65
+ - 1
66
+ version: 2.8.1
67
+ requirement: *id003
46
68
  type: :runtime
47
- version_requirements: *id002
69
+ - !ruby/object:Gem::Dependency
70
+ prerelease: false
71
+ name: mongrel
72
+ version_requirements: &id004 !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ hash: 3
78
+ segments:
79
+ - 0
80
+ version: "0"
81
+ requirement: *id004
82
+ type: :runtime
83
+ - !ruby/object:Gem::Dependency
84
+ prerelease: false
85
+ name: bundler
86
+ version_requirements: &id005 !ruby/object:Gem::Requirement
87
+ none: false
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ hash: 3
92
+ segments:
93
+ - 0
94
+ version: "0"
95
+ requirement: *id005
96
+ type: :development
97
+ - !ruby/object:Gem::Dependency
98
+ prerelease: false
99
+ name: capistrano
100
+ version_requirements: &id006 !ruby/object:Gem::Requirement
101
+ none: false
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ hash: 3
106
+ segments:
107
+ - 0
108
+ version: "0"
109
+ requirement: *id006
110
+ type: :development
111
+ - !ruby/object:Gem::Dependency
112
+ prerelease: false
113
+ name: rspec-rails
114
+ version_requirements: &id007 !ruby/object:Gem::Requirement
115
+ none: false
116
+ requirements:
117
+ - - "="
118
+ - !ruby/object:Gem::Version
119
+ hash: 29
120
+ segments:
121
+ - 1
122
+ - 3
123
+ - 3
124
+ version: 1.3.3
125
+ requirement: *id007
126
+ type: :development
127
+ - !ruby/object:Gem::Dependency
128
+ prerelease: false
129
+ name: webrat
130
+ version_requirements: &id008 !ruby/object:Gem::Requirement
131
+ none: false
132
+ requirements:
133
+ - - ">="
134
+ - !ruby/object:Gem::Version
135
+ hash: 3
136
+ segments:
137
+ - 0
138
+ version: "0"
139
+ requirement: *id008
140
+ type: :development
141
+ - !ruby/object:Gem::Dependency
142
+ prerelease: false
143
+ name: cucumber-rails
144
+ version_requirements: &id009 !ruby/object:Gem::Requirement
145
+ none: false
146
+ requirements:
147
+ - - ">="
148
+ - !ruby/object:Gem::Version
149
+ hash: 3
150
+ segments:
151
+ - 0
152
+ version: "0"
153
+ requirement: *id009
154
+ type: :development
155
+ - !ruby/object:Gem::Dependency
156
+ prerelease: false
157
+ name: database_cleaner
158
+ version_requirements: &id010 !ruby/object:Gem::Requirement
159
+ none: false
160
+ requirements:
161
+ - - ">="
162
+ - !ruby/object:Gem::Version
163
+ hash: 3
164
+ segments:
165
+ - 0
166
+ version: "0"
167
+ requirement: *id010
168
+ type: :development
169
+ - !ruby/object:Gem::Dependency
170
+ prerelease: false
171
+ name: selenium-client
172
+ version_requirements: &id011 !ruby/object:Gem::Requirement
173
+ none: false
174
+ requirements:
175
+ - - ">="
176
+ - !ruby/object:Gem::Version
177
+ hash: 3
178
+ segments:
179
+ - 0
180
+ version: "0"
181
+ requirement: *id011
182
+ type: :development
183
+ - !ruby/object:Gem::Dependency
184
+ prerelease: false
185
+ name: technicalpickles-jeweler
186
+ version_requirements: &id012 !ruby/object:Gem::Requirement
187
+ none: false
188
+ requirements:
189
+ - - ">="
190
+ - !ruby/object:Gem::Version
191
+ hash: 3
192
+ segments:
193
+ - 0
194
+ version: "0"
195
+ requirement: *id012
196
+ type: :development
197
+ - !ruby/object:Gem::Dependency
198
+ prerelease: false
199
+ name: gemcutter
200
+ version_requirements: &id013 !ruby/object:Gem::Requirement
201
+ none: false
202
+ requirements:
203
+ - - ">="
204
+ - !ruby/object:Gem::Version
205
+ hash: 3
206
+ segments:
207
+ - 0
208
+ version: "0"
209
+ requirement: *id013
210
+ type: :development
211
+ - !ruby/object:Gem::Dependency
212
+ prerelease: false
213
+ name: ZenTest
214
+ version_requirements: &id014 !ruby/object:Gem::Requirement
215
+ none: false
216
+ requirements:
217
+ - - ">="
218
+ - !ruby/object:Gem::Version
219
+ hash: 3
220
+ segments:
221
+ - 0
222
+ version: "0"
223
+ requirement: *id014
224
+ type: :development
225
+ - !ruby/object:Gem::Dependency
226
+ prerelease: false
227
+ name: migration_test_helper
228
+ version_requirements: &id015 !ruby/object:Gem::Requirement
229
+ none: false
230
+ requirements:
231
+ - - ">="
232
+ - !ruby/object:Gem::Version
233
+ hash: 3
234
+ segments:
235
+ - 0
236
+ version: "0"
237
+ requirement: *id015
238
+ type: :development
48
239
  description: " WontoMedia is a Ruby-on-Rails web app for community creation of\n an information classification scheme. WontoMedia is free\n software (licensed under the AGPL v3), and is being developed by\n a dispersed volunteer team using agile methods.\n"
49
240
  email: gleneivey@wontology.org
50
241
  executables: []
@@ -56,6 +247,9 @@ extra_rdoc_files: []
56
247
  files:
57
248
  - COPYING
58
249
  - COPYING.DOCUMENTATION
250
+ - Capfile
251
+ - Gemfile
252
+ - Gemfile.lock
59
253
  - LICENSE
60
254
  - README.markdown
61
255
  - Rakefile
@@ -123,6 +317,9 @@ files:
123
317
  - config/cucumber.yml
124
318
  - config/database-mysql-development.yml
125
319
  - config/database-mysql.yml
320
+ - config/deploy.rb
321
+ - config/deploy_on_a2hosting.rb
322
+ - config/deploy_wontomedia.rb
126
323
  - config/environment.rb
127
324
  - config/environments/cucumber.rb
128
325
  - config/environments/development.rb
@@ -131,8 +328,10 @@ files:
131
328
  - config/initializers/extensions.rb
132
329
  - config/initializers/inflections.rb
133
330
  - config/initializers/mime_types.rb
331
+ - config/initializers/mongrel.rb
134
332
  - config/initializers/new_rails_defaults.rb
135
333
  - config/locales/en.yml
334
+ - config/preinitializer.rb
136
335
  - config/routes.rb
137
336
  - db/fixtures/connections.yml
138
337
  - db/fixtures/items.yml
@@ -151,18 +350,19 @@ files:
151
350
  - default-custom/app/views/items/_home_introductory_text.html.erb
152
351
  - default-custom/app/views/items/home.html.erb
153
352
  - default-custom/app/views/layouts/_local_navigation.html.erb
353
+ - default-custom/config/initializers/wontomedia.rb
154
354
  - default-custom/public/favicon.ico
155
355
  - default-custom/public/images/logo.png
156
- - default-custom/public/images/logo.svg
356
+ - default-custom/public/robots.txt
157
357
  - default-custom/public/stylesheets/wm.css
158
358
  - doc/README.markdown
159
359
  - doc/README_FOR_APP
160
360
  - doc/customization.markdown
161
- - doc/gemlist.txt
162
361
  - doc/scripts/rake-customize.markdown
163
362
  - lib/helpers/connection_helper.rb
164
363
  - lib/helpers/item_helper.rb
165
364
  - lib/helpers/tripple_navigation.rb
365
+ - lib/tasks/asset_packager_tasks.rake
166
366
  - lib/tasks/cucumber.rake
167
367
  - lib/tasks/customize.rake
168
368
  - lib/tasks/db.rake
@@ -200,7 +400,6 @@ files:
200
400
  - public/javascripts/modalbox.js
201
401
  - public/javascripts/prototype.js
202
402
  - public/javascripts/reconcileJQueryAndPrototype.js
203
- - public/robots.txt
204
403
  - public/stylesheets/blank.gif
205
404
  - public/stylesheets/fancy_close.png
206
405
  - public/stylesheets/fancy_loading.png
@@ -246,7 +445,6 @@ files:
246
445
  - vendor/plugins/asset_packager/lib/jsmin.rb
247
446
  - vendor/plugins/asset_packager/lib/synthesis/asset_package.rb
248
447
  - vendor/plugins/asset_packager/lib/synthesis/asset_package_helper.rb
249
- - vendor/plugins/asset_packager/tasks/asset_packager_tasks.rake
250
448
  - vendor/plugins/asset_packager/test/asset_package_helper_development_test.rb
251
449
  - vendor/plugins/asset_packager/test/asset_package_helper_production_test.rb
252
450
  - vendor/plugins/asset_packager/test/asset_packager_test.rb
@@ -285,25 +483,29 @@ rdoc_options:
285
483
  require_paths:
286
484
  - lib
287
485
  required_ruby_version: !ruby/object:Gem::Requirement
486
+ none: false
288
487
  requirements:
289
488
  - - ~>
290
489
  - !ruby/object:Gem::Version
490
+ hash: 57
291
491
  segments:
292
492
  - 1
293
493
  - 8
294
494
  - 7
295
495
  version: 1.8.7
296
496
  required_rubygems_version: !ruby/object:Gem::Requirement
497
+ none: false
297
498
  requirements:
298
499
  - - ">="
299
500
  - !ruby/object:Gem::Version
501
+ hash: 3
300
502
  segments:
301
503
  - 0
302
504
  version: "0"
303
505
  requirements: []
304
506
 
305
507
  rubyforge_project: wontomedia
306
- rubygems_version: 1.3.6
508
+ rubygems_version: 1.3.7
307
509
  signing_key:
308
510
  specification_version: 3
309
511
  summary: WontoMedia is a Ruby-on-Rails web app for community creation of an information classification scheme