Basic collection setup. Includes:
- Add ancestry gem for tree structure of collections. - Add some collection seeds. - Collection API via Grape gem. - Collection Store/Actions - Collection Tree View - Add Navigation component - Basic Bootstrap Layout - UIStore/UIActions for Collection Selection
... | ... | @@ -28,6 +28,14 @@ gem 'browserify-rails' |
# react specific gems | ||
gem 'react-rails', '~> 1.1.0' | ||
# for collection tree structure | ||
gem 'ancestry' | ||
# API | ||
gem 'grape' | ||
gem 'hashie-forbidden_attributes' | ||
gem 'grape-active_model_serializers' | ||
group :development, :test do | ||
# Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
gem 'byebug' | ||
... | ... |
app/api/api.rb
0 → 100644
app/models/collection.rb
0 → 100644
Please register or sign in to comment