webflow 0.0.1
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 +6 -0
- data/.rvmrc +1 -0
- data/Gemfile +4 -0
- data/README +0 -0
- data/Rakefile +1 -0
- data/lib/plugins/controller_level_error_handler.rb +79 -0
- data/lib/plugins/flow_resume_validations.rb +48 -0
- data/lib/plugins/new_flow_validations.rb +52 -0
- data/lib/webflow.rb +18 -0
- data/lib/webflow/action_step.rb +114 -0
- data/lib/webflow/base.rb +723 -0
- data/lib/webflow/base_helper.rb +312 -0
- data/lib/webflow/event.rb +82 -0
- data/lib/webflow/exceptions.rb +80 -0
- data/lib/webflow/flow_step.rb +324 -0
- data/lib/webflow/plugin.rb +77 -0
- data/lib/webflow/random_generator.rb +48 -0
- data/lib/webflow/session_handler.rb +315 -0
- data/lib/webflow/state.rb +70 -0
- data/lib/webflow/version.rb +3 -0
- data/lib/webflow/view_step.rb +238 -0
- data/webflow.gemspec +24 -0
- metadata +69 -0
data/webflow.gemspec
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "webflow/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "webflow"
|
7
|
+
s.version = WebFlow::VERSION
|
8
|
+
s.authors = [ "Bryan Woodcox", "Corey Woodcox" ]
|
9
|
+
s.email = ["bryan.woodcox@gmail.com", "corey.woodcox@gmail.com"]
|
10
|
+
s.homepage = ""
|
11
|
+
s.summary = %q{Tool to build guided wizards in a Rails application}
|
12
|
+
s.description = %q{Tool to build guided wizards in a Rails application}
|
13
|
+
|
14
|
+
s.rubyforge_project = "webflow"
|
15
|
+
|
16
|
+
s.files = `git ls-files`.split("\n")
|
17
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
18
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
19
|
+
s.require_paths = ["lib"]
|
20
|
+
|
21
|
+
# specify any dependencies here; for example:
|
22
|
+
# s.add_development_dependency "rspec"
|
23
|
+
# s.add_runtime_dependency "rest-client"
|
24
|
+
end
|
metadata
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: webflow
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Bryan Woodcox
|
9
|
+
- Corey Woodcox
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2012-02-19 00:00:00.000000000Z
|
14
|
+
dependencies: []
|
15
|
+
description: Tool to build guided wizards in a Rails application
|
16
|
+
email:
|
17
|
+
- bryan.woodcox@gmail.com
|
18
|
+
- corey.woodcox@gmail.com
|
19
|
+
executables: []
|
20
|
+
extensions: []
|
21
|
+
extra_rdoc_files: []
|
22
|
+
files:
|
23
|
+
- .gitignore
|
24
|
+
- .rvmrc
|
25
|
+
- Gemfile
|
26
|
+
- README
|
27
|
+
- Rakefile
|
28
|
+
- lib/plugins/controller_level_error_handler.rb
|
29
|
+
- lib/plugins/flow_resume_validations.rb
|
30
|
+
- lib/plugins/new_flow_validations.rb
|
31
|
+
- lib/webflow.rb
|
32
|
+
- lib/webflow/action_step.rb
|
33
|
+
- lib/webflow/base.rb
|
34
|
+
- lib/webflow/base_helper.rb
|
35
|
+
- lib/webflow/event.rb
|
36
|
+
- lib/webflow/exceptions.rb
|
37
|
+
- lib/webflow/flow_step.rb
|
38
|
+
- lib/webflow/plugin.rb
|
39
|
+
- lib/webflow/random_generator.rb
|
40
|
+
- lib/webflow/session_handler.rb
|
41
|
+
- lib/webflow/state.rb
|
42
|
+
- lib/webflow/version.rb
|
43
|
+
- lib/webflow/view_step.rb
|
44
|
+
- webflow.gemspec
|
45
|
+
homepage: ''
|
46
|
+
licenses: []
|
47
|
+
post_install_message:
|
48
|
+
rdoc_options: []
|
49
|
+
require_paths:
|
50
|
+
- lib
|
51
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ! '>='
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
57
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
58
|
+
none: false
|
59
|
+
requirements:
|
60
|
+
- - ! '>='
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0'
|
63
|
+
requirements: []
|
64
|
+
rubyforge_project: webflow
|
65
|
+
rubygems_version: 1.8.15
|
66
|
+
signing_key:
|
67
|
+
specification_version: 3
|
68
|
+
summary: Tool to build guided wizards in a Rails application
|
69
|
+
test_files: []
|