summaryrefslogtreecommitdiff
path: root/DEVELOP.md
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-10-11 10:43:57 +0200
committerAzul <azul@leap.se>2012-10-11 10:43:57 +0200
commitbd17dee3ae5650e8ff1c7700fa0e83adf386b91b (patch)
tree22227bec19c16e32edc55e6ccff82c2a1b70b1a6 /DEVELOP.md
parentadd8d015c87a00626b739080bd75c7e7aeb9c1df (diff)
tried to make the documentation more clear
Diffstat (limited to 'DEVELOP.md')
-rw-r--r--DEVELOP.md49
1 files changed, 15 insertions, 34 deletions
diff --git a/DEVELOP.md b/DEVELOP.md
index a483fb7..9548774 100644
--- a/DEVELOP.md
+++ b/DEVELOP.md
@@ -25,20 +25,28 @@ rails plugin new ENGINE_NAME -O --full
See http://guides.rubyonrails.org/engines.html for more general info about engines.
-### Require Leap Web Core ###
+### Require Leap Web Core and dependencies ###
-You need to add leap_web_core to your .gemspec:
+Leap Web Core provides a common set of dependencies for the engines with CouchRest Model etc.
+It also comes with an optional set of UI gems like haml, sass, coffeescript, uglifier, bootstrap-sass, jquery and simple_form.
+
+In order to use the core dependencies you need to add leap_web_core to your .gemspec:
```ruby
+# make sure LeapWeb::VERSION is available
+require File.expand_path('../../lib/leap_web/version.rb', __FILE__)
+# ...
Gem::Specification.new do |s|
# ...
s.add_dependency "rails"
- s.add_dependency "leap_web_core", "~> 0.0.1"
+ s.add_dependency "leap_web_core", LeapWeb::Version
end
```
You also need to require it before you define your engine in lib/my_engine/engine.rb:
```ruby
require "leap_web_core"
+# uncomment if you want the ui gems:
+# require "leap_web_core/ui_dependencies"
module MyEngine
class Engine < ::Rails::Engine
@@ -47,41 +55,14 @@ module MyEngine
end
```
-### Require UI Gems ###
-
-Leap Web Core provides a basic set of UI gems that should be used accross the engines. These include haml, sass, coffeescript, uglifier, bootstrap-sass, jquery and simple_form.
-
-Do you want to add views, javascript and the like to your engine? Then you should use the common gems. In order to do so you need to add them to your gemspec:
+Some development and UI dependencies can not be loaded via leap_web_core. To make them available add the following lines to your engines Gemfile
```ruby
- require "my_engine/version"
- require "leap_web_core/dependencies"
-
- # ...
-
- Gem::Specification.new do |s|
- # ...
- s.add_dependency "rails"
- s.add_dependency "leap_web_core", "~> 0.0.1"
-
- LeapWebCore::Dependencies.add_ui_gems_to_spec(s)
- end
+ eval(File.read(File.dirname(__FILE__) + '/../common_dependencies.rb'))
+ # uncomment if you want the ui gems:
+ # eval(File.read(File.dirname(__FILE__) + '/../ui_dependencies.rb'))
```
-You also need to require them before you define your engine in lib/my_engine/engine.rb:
-
-```ruby
-require "leap_web_core"
-LeapWebCore::Dependencies.require_ui_gems
-
-module MyEngine
- class Engine < ::Rails::Engine
- # ...
- end
-end
-```
-
-
## Creating Models ##
You can use the normal rails generators to create models. Since you required the leap_web_core gem you will be using CouchRest::Model. So your models inherit from CouchRest::Model::Base.