-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gem, dependencies, specific libs and code, references, etc
- Loading branch information
Showing
13 changed files
with
11 additions
and
259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,14 +10,13 @@ Gem::Specification.new do |s| | |
s.authors = ['Danny Fullerton'] | ||
s.email = ['[email protected]'] | ||
s.homepage = 'https://github.com/northox/active-trail' | ||
s.summary = %q{Ruote-kit for Rails missing part.} | ||
s.description = %q{Represent complete Ruote's workflow using standard rails facilities, e.g. render, partials, etc.} | ||
s.summary = %q{What ActiveRecord is to database but for Flor workflow engine.} | ||
s.description = %q{Represent complete Flor workflows using standard rails facilities, e.g. render, partials, etc.} | ||
|
||
s.files = Dir["{app,config,lib}/**/*"] + %w(LICENSE Rakefile README.md) | ||
s.test_files = Dir["test/**/*"] | ||
|
||
s.add_runtime_dependency 'rails', '>= 4.1.0' | ||
s.add_runtime_dependency 'ruote', '>= 2.3.0' | ||
s.add_runtime_dependency 'protected_attributes', '>= 1.0.7' # TODO switch to strong_parameters | ||
s.add_runtime_dependency 'active_attr' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
module ActiveTrail | ||
class Concurrence < BranchExpression | ||
def spacer_template | ||
'ruote_trail/concurrence_spacer' | ||
'active-trail/concurrence_spacer' | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
#!/usr/bin/env ruby | ||
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application. | ||
|
||
ENGINE_ROOT = File.expand_path('../..', __FILE__) | ||
ENGINE_PATH = File.expand_path('../../lib/ruote/active_trail/engine', __FILE__) | ||
|
||
require 'rails/all' | ||
require 'rails/engine/commands' |