atrium 0.0.1.alpha
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/.gitignore +13 -0
- data/.gitmodules +3 -0
- data/.rvmrc +32 -0
- data/GETTING_STARTED.textile +109 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +320 -0
- data/Guardfile +10 -0
- data/README.mkd +56 -0
- data/Rakefile +6 -0
- data/app/assets/images/atrium/ajax-loader.gif +0 -0
- data/app/assets/images/atrium/lightbox-ico-loading.gif +0 -0
- data/app/assets/images/atrium/logo.png +0 -0
- data/app/assets/javascripts/atrium/atrium.js +281 -0
- data/app/assets/javascripts/chosen.jquery.js +899 -0
- data/app/assets/javascripts/ckeditor.warning.js +65 -0
- data/app/assets/javascripts/ckeditor/config.js.coffee +6 -0
- data/app/assets/javascripts/ckeditor/jquery.generateId.js +13 -0
- data/app/assets/javascripts/ckeditor/jquery.jeditable.ckeditor.js +59 -0
- data/app/assets/javascripts/ckeditor/plugins/linkItem/application_link.png +0 -0
- data/app/assets/javascripts/ckeditor/plugins/linkItem/dialogs/linkItem.js +1470 -0
- data/app/assets/javascripts/ckeditor/plugins/linkItem/plugin.js +16 -0
- data/app/assets/javascripts/ckeditor/plugins/linkItem/ui_toolbar_pencil.png +0 -0
- data/app/assets/javascripts/jquery.colorbox.js +864 -0
- data/app/assets/javascripts/jquery.jeditable.js +543 -0
- data/app/assets/stylesheets/atrium/atrium.css +216 -0
- data/app/assets/stylesheets/atrium/chosen-sprite.png +0 -0
- data/app/assets/stylesheets/atrium/chosen.css +367 -0
- data/app/assets/stylesheets/colorbox.css +42 -0
- data/app/assets/stylesheets/controls.png +0 -0
- data/app/assets/stylesheets/loading.gif +0 -0
- data/app/controllers/atrium/base_controller.rb +25 -0
- data/app/controllers/atrium/collection_exhibit_order_controller.rb +21 -0
- data/app/controllers/atrium/collections_controller.rb +165 -0
- data/app/controllers/atrium/customization_controller.rb +41 -0
- data/app/controllers/atrium/descriptions_controller.rb +177 -0
- data/app/controllers/atrium/exhibit_facet_order_controller.rb +19 -0
- data/app/controllers/atrium/exhibits_controller.rb +108 -0
- data/app/controllers/atrium/showcases_controller.rb +193 -0
- data/app/helpers/atrium/base_helper.rb +6 -0
- data/app/models/ability.rb +14 -0
- data/app/models/atrium/browse_level.rb +41 -0
- data/app/models/atrium/collection.rb +121 -0
- data/app/models/atrium/description.rb +128 -0
- data/app/models/atrium/essay.rb +21 -0
- data/app/models/atrium/exhibit.rb +58 -0
- data/app/models/atrium/search/facet.rb +29 -0
- data/app/models/atrium/search/facet_selection.rb +17 -0
- data/app/models/atrium/showcase.rb +173 -0
- data/app/models/atrium/showcase/facet_selection.rb +21 -0
- data/app/models/atrium/showcase/item.rb +19 -0
- data/app/models/role_mapper.rb +23 -0
- data/app/views/_user_util_links.html.erb +25 -0
- data/app/views/atrium/collections/_bookmark_control.html.erb +25 -0
- data/app/views/atrium/collections/_browse_index.html.erb +20 -0
- data/app/views/atrium/collections/_collection_items_index.html.erb +10 -0
- data/app/views/atrium/collections/_document.html.erb +24 -0
- data/app/views/atrium/collections/_document_list.html.erb +6 -0
- data/app/views/atrium/collections/_edit_navigation.html.erb +20 -0
- data/app/views/atrium/collections/_folder_control.html.erb +12 -0
- data/app/views/atrium/collections/_form.html.erb +93 -0
- data/app/views/atrium/collections/_listing.html.erb +18 -0
- data/app/views/atrium/collections/_navigation.html.erb +45 -0
- data/app/views/atrium/collections/_results_pagination.html.erb +9 -0
- data/app/views/atrium/collections/_sort_and_per_page.html.erb +23 -0
- data/app/views/atrium/collections/edit.html.erb +5 -0
- data/app/views/atrium/collections/new.html.erb +6 -0
- data/app/views/atrium/collections/show.html.erb +22 -0
- data/app/views/atrium/descriptions/_form.html.erb +64 -0
- data/app/views/atrium/descriptions/edit.html.erb +4 -0
- data/app/views/atrium/descriptions/index.html.erb +4 -0
- data/app/views/atrium/descriptions/new.html.erb +2 -0
- data/app/views/atrium/descriptions/show.html.erb +20 -0
- data/app/views/atrium/exhibits/_bookmark_control.html.erb +25 -0
- data/app/views/atrium/exhibits/_folder_control.html.erb +12 -0
- data/app/views/atrium/exhibits/_form.html.erb +108 -0
- data/app/views/atrium/exhibits/edit.html.erb +9 -0
- data/app/views/atrium/exhibits/new.html.erb +6 -0
- data/app/views/atrium/exhibits/show.html.erb +26 -0
- data/app/views/atrium/showcases/_showcase_navigation.html.erb +23 -0
- data/app/views/atrium/showcases/show.html.erb +1 -0
- data/app/views/catalog/_collection_home_text.html.erb +6 -0
- data/app/views/catalog/_constraints.html.erb +9 -0
- data/app/views/catalog/_default_collection_text.html.erb +18 -0
- data/app/views/catalog/_default_home_text.html.erb +6 -0
- data/app/views/catalog/_home_text.html.erb +6 -0
- data/app/views/catalog/_index_partials/_description.html.erb +8 -0
- data/app/views/catalog/_search_form.html.erb +66 -0
- data/app/views/catalog/_show_partials/_description.html.erb +15 -0
- data/app/views/catalog/browse_show.html.erb +18 -0
- data/app/views/catalog/index.html.erb +35 -0
- data/app/views/catalog/list_description.html.erb +24 -0
- data/app/views/catalog/list_item.html.erb +3 -0
- data/app/views/layouts/atrium.html.erb +86 -0
- data/app/views/layouts/atrium_themes/default.html.erb +4 -0
- data/app/views/layouts/item_listing.html.erb +36 -0
- data/app/views/listing/_document.html.erb +27 -0
- data/app/views/listing/_document_list.html.erb +3 -0
- data/app/views/listing/_item_search.html.erb +27 -0
- data/app/views/shared/_banner.html.erb +5 -0
- data/app/views/shared/_collection_complete_list.html.erb +33 -0
- data/app/views/shared/_collection_search_form.html.erb +12 -0
- data/app/views/shared/_collection_title_header.html.erb +3 -0
- data/app/views/shared/_featured_sources.html.erb +20 -0
- data/app/views/shared/_list_descriptions.html.erb +38 -0
- data/app/views/shared/_navigation_browse_levels.html.erb +34 -0
- data/app/views/shared/_showcase_configure_menu.html.erb +22 -0
- data/app/views/shared/_top_navigation.html.erb +9 -0
- data/atrium.gemspec +76 -0
- data/config/routes.rb +12 -0
- data/init.rb +3 -0
- data/lib/application_controller.rb +24 -0
- data/lib/atrium.rb +42 -0
- data/lib/atrium/application_helper.rb +24 -0
- data/lib/atrium/atrium_helper_behavior.rb +162 -0
- data/lib/atrium/catalog.rb +203 -0
- data/lib/atrium/collections_helper.rb +139 -0
- data/lib/atrium/controller.rb +10 -0
- data/lib/atrium/descriptions_helper.rb +23 -0
- data/lib/atrium/engine.rb +12 -0
- data/lib/atrium/layout_helper.rb +13 -0
- data/lib/atrium/routes.rb +99 -0
- data/lib/atrium/solr_helper.rb +440 -0
- data/lib/atrium/version.rb +3 -0
- data/lib/generators/atrium/assets_generator.rb +44 -0
- data/lib/generators/atrium/atrium_generator.rb +149 -0
- data/lib/generators/atrium/cucumber_support_generator.rb +29 -0
- data/lib/generators/atrium/templates/config/role_map_cucumber.yml +2 -0
- data/lib/generators/atrium/templates/config/role_map_development.yml +2 -0
- data/lib/generators/atrium/templates/config/role_map_production.yml +2 -0
- data/lib/generators/atrium/templates/config/role_map_test.yml +2 -0
- data/lib/generators/atrium/templates/config/solr.yml +10 -0
- data/lib/generators/atrium/templates/db/seeds.rb +87 -0
- data/lib/generators/atrium/templates/migrations/create_atrium_browse_levels.rb +18 -0
- data/lib/generators/atrium/templates/migrations/create_atrium_collections.rb +20 -0
- data/lib/generators/atrium/templates/migrations/create_atrium_descriptions.rb +16 -0
- data/lib/generators/atrium/templates/migrations/create_atrium_essays.rb +15 -0
- data/lib/generators/atrium/templates/migrations/create_atrium_exhibits.rb +16 -0
- data/lib/generators/atrium/templates/migrations/create_atrium_search_facets.rb +14 -0
- data/lib/generators/atrium/templates/migrations/create_atrium_showcase_facet_selections.rb +15 -0
- data/lib/generators/atrium/templates/migrations/create_atrium_showcase_items.rb +17 -0
- data/lib/generators/atrium/templates/migrations/create_atrium_showcases.rb +16 -0
- data/lib/generators/atrium/templates/themes/example.html.erb +21 -0
- data/lib/railties/all_tests.rake +23 -0
- data/lib/railties/atrium_cucumber.rake +121 -0
- data/lib/railties/index.rake +37 -0
- data/tasks/atrium.rake +268 -0
- data/tasks/atrium_rspec.rake +91 -0
- data/test_support/etc/Gemfile +33 -0
- data/test_support/etc/bundle_config +3 -0
- data/test_support/etc/rvmrc +32 -0
- data/test_support/features/atrium_collections.feature +162 -0
- data/test_support/features/atrium_exhibits.feature +164 -0
- data/test_support/features/step_definitions/atrium_collection_steps.rb +102 -0
- data/test_support/features/step_definitions/atrium_exhibit_steps.rb +53 -0
- data/test_support/features/step_definitions/bookmarks_steps.rb +6 -0
- data/test_support/features/step_definitions/error_steps.rb +5 -0
- data/test_support/features/step_definitions/folder_steps.rb +27 -0
- data/test_support/features/step_definitions/general_steps.rb +50 -0
- data/test_support/features/step_definitions/record_view_steps.rb +12 -0
- data/test_support/features/step_definitions/saved_searches_steps.rb +22 -0
- data/test_support/features/step_definitions/search_facets_steps.rb +29 -0
- data/test_support/features/step_definitions/search_history_steps.rb +9 -0
- data/test_support/features/step_definitions/search_result_steps.rb +114 -0
- data/test_support/features/step_definitions/search_steps.rb +103 -0
- data/test_support/features/step_definitions/user_steps.rb +5 -0
- data/test_support/features/step_definitions/web_steps.rb +213 -0
- data/test_support/features/support/env.rb +67 -0
- data/test_support/features/support/paths.rb +76 -0
- data/test_support/features/support/selectors.rb +40 -0
- data/test_support/fixtures/atrium_exhibits.yml +3 -0
- data/test_support/spec/controllers/atrium/base_controller_spec.rb +13 -0
- data/test_support/spec/controllers/atrium/collection_exhibit_order_controller_spec.rb +29 -0
- data/test_support/spec/controllers/atrium/collections_controller_spec.rb +185 -0
- data/test_support/spec/controllers/atrium/customization_controller_spec.rb +38 -0
- data/test_support/spec/controllers/atrium/descriptions_controller_spec.rb +150 -0
- data/test_support/spec/controllers/atrium/exhibit_facet_order_controller_spec.rb +36 -0
- data/test_support/spec/controllers/atrium/exhibits_controller_spec.rb +192 -0
- data/test_support/spec/controllers/atrium/showcases_controller_spec.rb +185 -0
- data/test_support/spec/helpers/atrium_collections_helper_spec.rb +147 -0
- data/test_support/spec/helpers/atrium_description_helper_spec.rb +47 -0
- data/test_support/spec/helpers/atrium_solr_helper_spec.rb +512 -0
- data/test_support/spec/models/atrium/browse_level_spec.rb +31 -0
- data/test_support/spec/models/atrium/collection_spec.rb +30 -0
- data/test_support/spec/models/atrium/description_spec.rb +67 -0
- data/test_support/spec/models/atrium/essay_spec.rb +12 -0
- data/test_support/spec/models/atrium/exhibit_spec.rb +76 -0
- data/test_support/spec/models/atrium/search/facet_selection_spec.rb +24 -0
- data/test_support/spec/models/atrium/search/facet_spec.rb +11 -0
- data/test_support/spec/models/atrium/search_facet_spec.rb +54 -0
- data/test_support/spec/models/atrium/showcase/facet_selection_spec.rb +15 -0
- data/test_support/spec/models/atrium/showcase/item_spec.rb +12 -0
- data/test_support/spec/models/atrium/showcase_facet_selection_spec.rb +65 -0
- data/test_support/spec/models/atrium/showcase_spec.rb +134 -0
- data/test_support/spec/rcov.opts +3 -0
- data/test_support/spec/routing/atrium/collections_routing_spec.rb +33 -0
- data/test_support/spec/spec.opts +4 -0
- data/test_support/spec/spec_helper.rb +47 -0
- data/test_support/spec/support/be_accessible_matcher.rb +8 -0
- data/test_support/spec/support/be_routed_mixin.rb +7 -0
- data/test_support/tmp/step_definitions/catalog_index_steps.rb +14 -0
- data/test_support/tmp/step_definitions/edit_document_steps.rb +67 -0
- data/test_support/tmp/step_definitions/hydra_metadata_steps.rb +3 -0
- data/test_support/tmp/step_definitions/hydra_steps.rb +8 -0
- data/test_support/tmp/step_definitions/search_steps.rb +86 -0
- data/test_support/tmp/step_definitions/searching_steps.rb +22 -0
- data/test_support/tmp/step_definitions/select_steps.rb +8 -0
- data/test_support/tmp/step_definitions/show_document_steps.rb +73 -0
- data/test_support/tmp/step_definitions/user_steps.rb +15 -0
- data/test_support/tmp/step_definitions/web_steps.rb +273 -0
- data/test_support/tmp/support/env.rb +54 -0
- data/test_support/tmp/support/paths.rb +57 -0
- metadata +1047 -0
data/.gitignore
ADDED
data/.gitmodules
ADDED
data/.rvmrc
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
|
|
3
|
+
# This is an RVM Project .rvmrc file, used to automatically load the ruby
|
|
4
|
+
# development environment upon cd'ing into the directory
|
|
5
|
+
|
|
6
|
+
ruby_string="ree-1.8.7"
|
|
7
|
+
gemset_name="atrium"
|
|
8
|
+
|
|
9
|
+
# Install rubies when used instead of only displaying a warning and exiting
|
|
10
|
+
rvm_install_on_use_flag=1
|
|
11
|
+
|
|
12
|
+
# Specify our desired <ruby>[@<gemset>], the @gemset name is optional.
|
|
13
|
+
environment_id="${ruby_string}@${gemset_name}"
|
|
14
|
+
|
|
15
|
+
# First, attempt to load the desired environment directly from the environment
|
|
16
|
+
# file. This is very fast and efficient compared to running through the entire
|
|
17
|
+
# CLI and selector. If you want feedback on which environment was used then
|
|
18
|
+
# insert the word 'use' after --create as this triggers verbose mode.
|
|
19
|
+
#
|
|
20
|
+
if [[ -d "${rvm_path:-$HOME/.rvm}/environments" \
|
|
21
|
+
&& -s "${rvm_path:-$HOME/.rvm}/environments/$environment_id" ]] ; then
|
|
22
|
+
\. "${rvm_path:-$HOME/.rvm}/environments/$environment_id"
|
|
23
|
+
else
|
|
24
|
+
# If the environment file has not yet been created, use the RVM CLI to select.
|
|
25
|
+
rvm --create "$environment_id"
|
|
26
|
+
fi
|
|
27
|
+
|
|
28
|
+
# Ensure that Bundler is installed, install it if it is not.
|
|
29
|
+
if ! (command -v bundle > /dev/null) ; then
|
|
30
|
+
printf "The rubygem 'bundler' is not installed, installing it now.\n"
|
|
31
|
+
gem install bundler
|
|
32
|
+
fi
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
h1. Getting Started using atrium in your own Application
|
|
2
|
+
|
|
3
|
+
h2. Before You Begin
|
|
4
|
+
|
|
5
|
+
*!!! This is a WORK IN PROGRESS !!!*
|
|
6
|
+
|
|
7
|
+
This tutorial is a work in progress.
|
|
8
|
+
|
|
9
|
+
h1. Atrium
|
|
10
|
+
|
|
11
|
+
Atrium is a Rails Engines plugin containing the core code for a Atrium application. The full hydra stack includes the following:
|
|
12
|
+
|
|
13
|
+
- "Blacklight":http://projectblacklight.org/ (a rails engines plugin) for the User Interface
|
|
14
|
+
- "Solr":http://lucene.apache.org/solr/ (a java application, also ported to other languages) for the Search Engine
|
|
15
|
+
- Atrium (a rails engines plugin) to create collection, exhibit and showcase base on the blacklight configuration
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
This is a Ruby on Rails 3 gem.
|
|
19
|
+
|
|
20
|
+
h2. Installation/Setup
|
|
21
|
+
|
|
22
|
+
h3. Install Rails, Bundler and Devise
|
|
23
|
+
|
|
24
|
+
Currently Atrium is compatible with Rails 3.1
|
|
25
|
+
|
|
26
|
+
<pre>
|
|
27
|
+
gem install 'rails' --version '~>3.0.11'
|
|
28
|
+
gem install 'bundler'
|
|
29
|
+
</pre>
|
|
30
|
+
|
|
31
|
+
h3. Generate a new rails application:
|
|
32
|
+
|
|
33
|
+
<pre>
|
|
34
|
+
rails new my_hydra_head
|
|
35
|
+
cd my_hydra_head
|
|
36
|
+
</pre>
|
|
37
|
+
|
|
38
|
+
h3. Install Dependencies
|
|
39
|
+
|
|
40
|
+
First, add them to the "Gemfile":http://gembundler.com/gemfile.html of your application:
|
|
41
|
+
|
|
42
|
+
<pre>
|
|
43
|
+
source 'http://rubygems.org'
|
|
44
|
+
|
|
45
|
+
gem 'rails', '~>3.1.3'
|
|
46
|
+
|
|
47
|
+
gem 'blacklight', '~> 3.2'
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
# We will assume that you're using sqlite3 for testing/demo,
|
|
51
|
+
# but in a production setup you probably want to use a real sql database like mysql or postgres
|
|
52
|
+
gem 'sqlite3'
|
|
53
|
+
|
|
54
|
+
# We will assume you're using devise in tutorials/documentation.
|
|
55
|
+
# You are free to implement your own User/Authentication solution in its place.
|
|
56
|
+
gem 'devise'
|
|
57
|
+
|
|
58
|
+
# For testing. You will probably want to use all of these to run the tests you write for your hydra head
|
|
59
|
+
group :development, :test do
|
|
60
|
+
gem 'bcrypt-ruby'
|
|
61
|
+
gem 'capybara'
|
|
62
|
+
gem 'cucumber-rails'
|
|
63
|
+
gem 'database_cleaner'
|
|
64
|
+
gem 'factory_girl'
|
|
65
|
+
gem 'mocha'
|
|
66
|
+
gem 'rspec'
|
|
67
|
+
gem 'rspec-rails', '>=2.5.0'
|
|
68
|
+
gem 'ruby-debug'
|
|
69
|
+
gem 'sqlite3'
|
|
70
|
+
gem "jettywrapper"
|
|
71
|
+
end # (leave this comment here to catch a stray line inserted by blacklight!)
|
|
72
|
+
</pre>
|
|
73
|
+
|
|
74
|
+
To install all of the dependencies, run:
|
|
75
|
+
|
|
76
|
+
<pre>
|
|
77
|
+
bundle install
|
|
78
|
+
</pre>
|
|
79
|
+
|
|
80
|
+
On some systems, you will have to install system libraries that various gems rely on. For example, in order to install the curl gem on ubuntu you have to first install libcurl4-openssl-dev and then re-run bundler.
|
|
81
|
+
|
|
82
|
+
h3. Run the generators and migrations:
|
|
83
|
+
|
|
84
|
+
Run the blacklight generator
|
|
85
|
+
|
|
86
|
+
<pre>rails g blacklight --devise</pre>
|
|
87
|
+
|
|
88
|
+
Run the atrium generator
|
|
89
|
+
|
|
90
|
+
<pre>rails g atrium -df</pre>
|
|
91
|
+
|
|
92
|
+
Run the database migrations
|
|
93
|
+
|
|
94
|
+
<pre>
|
|
95
|
+
rake db:migrate
|
|
96
|
+
rake db:test:prepare
|
|
97
|
+
</pre>
|
|
98
|
+
|
|
99
|
+
h3. You're done.
|
|
100
|
+
|
|
101
|
+
Congratulations. You've set up the code for your Atrium.
|
|
102
|
+
|
|
103
|
+
Read "Tools for Developing and Testing":http://hudson.projecthydra.org/job/hydra-head-rails3-plugin/Documentation/file.Tools.html, then read "How to Get Started":http://hudson.projecthydra.org/job/hydra-head-rails3-plugin/Documentation/file.HOW_TO_GET_STARTED.html to get a sense of what you can do with your Hydra Head.
|
|
104
|
+
|
|
105
|
+
h2. Modifying and Testing the Atrium Gem
|
|
106
|
+
|
|
107
|
+
#TODO
|
|
108
|
+
|
|
109
|
+
h2. Acknowledgements
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,320 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
atrium (0.0.1)
|
|
5
|
+
RedCloth (= 4.2.3)
|
|
6
|
+
blacklight (~> 3.3)
|
|
7
|
+
block_helpers
|
|
8
|
+
builder
|
|
9
|
+
cancan
|
|
10
|
+
ckeditor_rails
|
|
11
|
+
columnize
|
|
12
|
+
crack
|
|
13
|
+
curb
|
|
14
|
+
database_cleaner
|
|
15
|
+
diff-lcs
|
|
16
|
+
facets (= 2.8.4)
|
|
17
|
+
haml
|
|
18
|
+
httparty
|
|
19
|
+
json_pure (> 1.4.3)
|
|
20
|
+
launchy
|
|
21
|
+
linecache
|
|
22
|
+
mediashelf-loggable
|
|
23
|
+
mime-types
|
|
24
|
+
morphine
|
|
25
|
+
multipart-post
|
|
26
|
+
nokogiri
|
|
27
|
+
om (>= 1.2.3)
|
|
28
|
+
rack
|
|
29
|
+
rack-test
|
|
30
|
+
rails (~> 3.1)
|
|
31
|
+
rake
|
|
32
|
+
rcov
|
|
33
|
+
sanitize
|
|
34
|
+
solr-ruby
|
|
35
|
+
solrizer (>= 1.1.0)
|
|
36
|
+
term-ansicolor
|
|
37
|
+
trollop
|
|
38
|
+
xml-simple
|
|
39
|
+
yard
|
|
40
|
+
|
|
41
|
+
GEM
|
|
42
|
+
remote: http://rubygems.org/
|
|
43
|
+
specs:
|
|
44
|
+
RedCloth (4.2.3)
|
|
45
|
+
actionmailer (3.1.3)
|
|
46
|
+
actionpack (= 3.1.3)
|
|
47
|
+
mail (~> 2.3.0)
|
|
48
|
+
actionpack (3.1.3)
|
|
49
|
+
activemodel (= 3.1.3)
|
|
50
|
+
activesupport (= 3.1.3)
|
|
51
|
+
builder (~> 3.0.0)
|
|
52
|
+
erubis (~> 2.7.0)
|
|
53
|
+
i18n (~> 0.6)
|
|
54
|
+
rack (~> 1.3.5)
|
|
55
|
+
rack-cache (~> 1.1)
|
|
56
|
+
rack-mount (~> 0.8.2)
|
|
57
|
+
rack-test (~> 0.6.1)
|
|
58
|
+
sprockets (~> 2.0.3)
|
|
59
|
+
activemodel (3.1.3)
|
|
60
|
+
activesupport (= 3.1.3)
|
|
61
|
+
builder (~> 3.0.0)
|
|
62
|
+
i18n (~> 0.6)
|
|
63
|
+
activerecord (3.1.3)
|
|
64
|
+
activemodel (= 3.1.3)
|
|
65
|
+
activesupport (= 3.1.3)
|
|
66
|
+
arel (~> 2.2.1)
|
|
67
|
+
tzinfo (~> 0.3.29)
|
|
68
|
+
activeresource (3.1.3)
|
|
69
|
+
activemodel (= 3.1.3)
|
|
70
|
+
activesupport (= 3.1.3)
|
|
71
|
+
activesupport (3.1.3)
|
|
72
|
+
multi_json (~> 1.0)
|
|
73
|
+
addressable (2.2.8)
|
|
74
|
+
arel (2.2.3)
|
|
75
|
+
bcrypt-ruby (3.0.1)
|
|
76
|
+
blacklight (3.5.0)
|
|
77
|
+
compass-rails (~> 1.0.0)
|
|
78
|
+
compass-susy-plugin (>= 0.9.0)
|
|
79
|
+
kaminari
|
|
80
|
+
marc (>= 0.4.3, < 1.1)
|
|
81
|
+
nokogiri (~> 1.5)
|
|
82
|
+
rails (~> 3.1)
|
|
83
|
+
rsolr (~> 1.0.6)
|
|
84
|
+
rsolr-ext (~> 1.0.3)
|
|
85
|
+
sass-rails
|
|
86
|
+
unicode
|
|
87
|
+
block_helpers (0.3.3)
|
|
88
|
+
activesupport (>= 2.0)
|
|
89
|
+
builder (3.0.0)
|
|
90
|
+
cancan (1.6.8)
|
|
91
|
+
capybara (1.1.2)
|
|
92
|
+
mime-types (>= 1.16)
|
|
93
|
+
nokogiri (>= 1.3.3)
|
|
94
|
+
rack (>= 1.0.0)
|
|
95
|
+
rack-test (>= 0.5.4)
|
|
96
|
+
selenium-webdriver (~> 2.0)
|
|
97
|
+
xpath (~> 0.1.4)
|
|
98
|
+
childprocess (0.2.3)
|
|
99
|
+
ffi (~> 1.0.6)
|
|
100
|
+
chunky_png (1.2.5)
|
|
101
|
+
ckeditor_rails (3.6.3.1)
|
|
102
|
+
railties (~> 3.0)
|
|
103
|
+
thor (~> 0.14)
|
|
104
|
+
columnize (0.3.5)
|
|
105
|
+
compass (0.12.2)
|
|
106
|
+
chunky_png (~> 1.2)
|
|
107
|
+
fssm (>= 0.2.7)
|
|
108
|
+
sass (~> 3.1)
|
|
109
|
+
compass-rails (1.0.3)
|
|
110
|
+
compass (>= 0.12.2, < 0.14)
|
|
111
|
+
compass-susy-plugin (0.9)
|
|
112
|
+
compass (>= 0.11.1)
|
|
113
|
+
crack (0.3.1)
|
|
114
|
+
cucumber (1.1.3)
|
|
115
|
+
builder (>= 2.1.2)
|
|
116
|
+
diff-lcs (>= 1.1.2)
|
|
117
|
+
gherkin (~> 2.6.7)
|
|
118
|
+
json (>= 1.4.6)
|
|
119
|
+
term-ansicolor (>= 1.0.6)
|
|
120
|
+
cucumber-rails (1.2.1)
|
|
121
|
+
capybara (>= 1.1.2)
|
|
122
|
+
cucumber (>= 1.1.3)
|
|
123
|
+
nokogiri (>= 1.5.0)
|
|
124
|
+
curb (0.8.1)
|
|
125
|
+
daemons (1.1.8)
|
|
126
|
+
database_cleaner (0.8.0)
|
|
127
|
+
devise (1.5.2)
|
|
128
|
+
bcrypt-ruby (~> 3.0)
|
|
129
|
+
orm_adapter (~> 0.0.3)
|
|
130
|
+
warden (~> 1.1)
|
|
131
|
+
diff-lcs (1.1.3)
|
|
132
|
+
erubis (2.7.0)
|
|
133
|
+
facets (2.8.4)
|
|
134
|
+
factory_girl (2.3.2)
|
|
135
|
+
activesupport
|
|
136
|
+
ffi (1.0.11)
|
|
137
|
+
fssm (0.2.9)
|
|
138
|
+
gherkin (2.6.9)
|
|
139
|
+
json (>= 1.4.6)
|
|
140
|
+
guard (1.2.3)
|
|
141
|
+
listen (>= 0.4.2)
|
|
142
|
+
thor (>= 0.14.6)
|
|
143
|
+
guard-rspec (1.1.0)
|
|
144
|
+
guard (>= 1.1)
|
|
145
|
+
haml (3.1.6)
|
|
146
|
+
hike (1.2.1)
|
|
147
|
+
httparty (0.8.3)
|
|
148
|
+
multi_json (~> 1.0)
|
|
149
|
+
multi_xml
|
|
150
|
+
i18n (0.6.0)
|
|
151
|
+
jettywrapper (1.1.0)
|
|
152
|
+
activesupport (>= 3.0.0)
|
|
153
|
+
childprocess
|
|
154
|
+
i18n
|
|
155
|
+
logger
|
|
156
|
+
mediashelf-loggable
|
|
157
|
+
jquery-rails (1.0.19)
|
|
158
|
+
railties (~> 3.0)
|
|
159
|
+
thor (~> 0.14)
|
|
160
|
+
json (1.6.3)
|
|
161
|
+
json_pure (1.7.3)
|
|
162
|
+
kaminari (0.13.0)
|
|
163
|
+
actionpack (>= 3.0.0)
|
|
164
|
+
activesupport (>= 3.0.0)
|
|
165
|
+
railties (>= 3.0.0)
|
|
166
|
+
launchy (2.1.0)
|
|
167
|
+
addressable (~> 2.2.6)
|
|
168
|
+
linecache (0.46)
|
|
169
|
+
rbx-require-relative (> 0.0.4)
|
|
170
|
+
listen (0.4.7)
|
|
171
|
+
rb-fchange (~> 0.0.5)
|
|
172
|
+
rb-fsevent (~> 0.9.1)
|
|
173
|
+
rb-inotify (~> 0.8.8)
|
|
174
|
+
logger (1.2.8)
|
|
175
|
+
mail (2.3.3)
|
|
176
|
+
i18n (>= 0.4.0)
|
|
177
|
+
mime-types (~> 1.16)
|
|
178
|
+
treetop (~> 1.4.8)
|
|
179
|
+
marc (0.5.0)
|
|
180
|
+
mediashelf-loggable (0.4.9)
|
|
181
|
+
metaclass (0.0.1)
|
|
182
|
+
mime-types (1.17.2)
|
|
183
|
+
mocha (0.10.0)
|
|
184
|
+
metaclass (~> 0.0.1)
|
|
185
|
+
morphine (0.1.0)
|
|
186
|
+
multi_json (1.0.4)
|
|
187
|
+
multi_xml (0.5.1)
|
|
188
|
+
multipart-post (1.1.5)
|
|
189
|
+
nokogiri (1.5.0)
|
|
190
|
+
om (1.6.1)
|
|
191
|
+
mediashelf-loggable
|
|
192
|
+
nokogiri (>= 1.4.2)
|
|
193
|
+
orm_adapter (0.0.5)
|
|
194
|
+
polyglot (0.3.3)
|
|
195
|
+
rack (1.3.5)
|
|
196
|
+
rack-cache (1.1)
|
|
197
|
+
rack (>= 0.4)
|
|
198
|
+
rack-mount (0.8.3)
|
|
199
|
+
rack (>= 1.0.0)
|
|
200
|
+
rack-ssl (1.3.2)
|
|
201
|
+
rack
|
|
202
|
+
rack-test (0.6.1)
|
|
203
|
+
rack (>= 1.0)
|
|
204
|
+
rails (3.1.3)
|
|
205
|
+
actionmailer (= 3.1.3)
|
|
206
|
+
actionpack (= 3.1.3)
|
|
207
|
+
activerecord (= 3.1.3)
|
|
208
|
+
activeresource (= 3.1.3)
|
|
209
|
+
activesupport (= 3.1.3)
|
|
210
|
+
bundler (~> 1.0)
|
|
211
|
+
railties (= 3.1.3)
|
|
212
|
+
railties (3.1.3)
|
|
213
|
+
actionpack (= 3.1.3)
|
|
214
|
+
activesupport (= 3.1.3)
|
|
215
|
+
rack-ssl (~> 1.3.2)
|
|
216
|
+
rake (>= 0.8.7)
|
|
217
|
+
rdoc (~> 3.4)
|
|
218
|
+
thor (~> 0.14.6)
|
|
219
|
+
rake (0.9.2.2)
|
|
220
|
+
rb-fchange (0.0.5)
|
|
221
|
+
ffi
|
|
222
|
+
rb-fsevent (0.9.1)
|
|
223
|
+
rb-inotify (0.8.8)
|
|
224
|
+
ffi (>= 0.5.0)
|
|
225
|
+
rbx-require-relative (0.0.5)
|
|
226
|
+
rcov (1.0.0)
|
|
227
|
+
rdoc (3.11)
|
|
228
|
+
json (~> 1.4)
|
|
229
|
+
rsolr (1.0.8)
|
|
230
|
+
builder (>= 2.1.2)
|
|
231
|
+
rsolr-ext (1.0.3)
|
|
232
|
+
rsolr (>= 1.0.2)
|
|
233
|
+
rspec (2.7.0)
|
|
234
|
+
rspec-core (~> 2.7.0)
|
|
235
|
+
rspec-expectations (~> 2.7.0)
|
|
236
|
+
rspec-mocks (~> 2.7.0)
|
|
237
|
+
rspec-core (2.7.1)
|
|
238
|
+
rspec-expectations (2.7.0)
|
|
239
|
+
diff-lcs (~> 1.1.2)
|
|
240
|
+
rspec-given (1.5.0)
|
|
241
|
+
rspec (> 1.2.8)
|
|
242
|
+
rspec-mocks (2.7.0)
|
|
243
|
+
rspec-on-rails-matchers (1.0.0)
|
|
244
|
+
rspec-rails (2.7.0)
|
|
245
|
+
actionpack (~> 3.0)
|
|
246
|
+
activesupport (~> 3.0)
|
|
247
|
+
railties (~> 3.0)
|
|
248
|
+
rspec (~> 2.7.0)
|
|
249
|
+
ruby-debug (0.10.4)
|
|
250
|
+
columnize (>= 0.1)
|
|
251
|
+
ruby-debug-base (~> 0.10.4.0)
|
|
252
|
+
ruby-debug-base (0.10.4)
|
|
253
|
+
linecache (>= 0.3)
|
|
254
|
+
rubyzip (0.9.5)
|
|
255
|
+
sanitize (2.0.3)
|
|
256
|
+
nokogiri (>= 1.4.4, < 1.6)
|
|
257
|
+
sass (3.1.20)
|
|
258
|
+
sass-rails (3.1.6)
|
|
259
|
+
actionpack (~> 3.1.0)
|
|
260
|
+
railties (~> 3.1.0)
|
|
261
|
+
sass (>= 3.1.10)
|
|
262
|
+
tilt (~> 1.3.2)
|
|
263
|
+
selenium-webdriver (2.15.0)
|
|
264
|
+
childprocess (>= 0.2.1)
|
|
265
|
+
ffi (~> 1.0.9)
|
|
266
|
+
multi_json (~> 1.0.4)
|
|
267
|
+
rubyzip
|
|
268
|
+
solr-ruby (0.0.8)
|
|
269
|
+
solrizer (1.2.1)
|
|
270
|
+
daemons
|
|
271
|
+
mediashelf-loggable (~> 0.4.7)
|
|
272
|
+
nokogiri
|
|
273
|
+
om (>= 1.5.0)
|
|
274
|
+
stomp
|
|
275
|
+
xml-simple
|
|
276
|
+
sprockets (2.0.3)
|
|
277
|
+
hike (~> 1.2)
|
|
278
|
+
rack (~> 1.0)
|
|
279
|
+
tilt (~> 1.1, != 1.3.0)
|
|
280
|
+
sqlite3 (1.3.5)
|
|
281
|
+
stomp (1.2.4)
|
|
282
|
+
term-ansicolor (1.0.7)
|
|
283
|
+
thor (0.14.6)
|
|
284
|
+
tilt (1.3.3)
|
|
285
|
+
treetop (1.4.10)
|
|
286
|
+
polyglot
|
|
287
|
+
polyglot (>= 0.3.1)
|
|
288
|
+
trollop (1.16.2)
|
|
289
|
+
tzinfo (0.3.33)
|
|
290
|
+
unicode (0.4.2)
|
|
291
|
+
warden (1.1.0)
|
|
292
|
+
rack (>= 1.0)
|
|
293
|
+
xml-simple (1.1.1)
|
|
294
|
+
xpath (0.1.4)
|
|
295
|
+
nokogiri (~> 1.3)
|
|
296
|
+
yard (0.8.2.1)
|
|
297
|
+
|
|
298
|
+
PLATFORMS
|
|
299
|
+
ruby
|
|
300
|
+
|
|
301
|
+
DEPENDENCIES
|
|
302
|
+
atrium!
|
|
303
|
+
cucumber (>= 0.8.5)
|
|
304
|
+
cucumber-rails (>= 1.0.0)
|
|
305
|
+
devise
|
|
306
|
+
factory_girl
|
|
307
|
+
gherkin
|
|
308
|
+
guard
|
|
309
|
+
guard-rspec
|
|
310
|
+
jettywrapper (~> 1.1.0)
|
|
311
|
+
jquery-rails
|
|
312
|
+
mocha
|
|
313
|
+
rake
|
|
314
|
+
rspec (>= 2.0.0)
|
|
315
|
+
rspec-given
|
|
316
|
+
rspec-on-rails-matchers
|
|
317
|
+
rspec-rails (>= 2.0.0)
|
|
318
|
+
ruby-debug
|
|
319
|
+
ruby-debug-base
|
|
320
|
+
sqlite3
|