activiti_konektor 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/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/activiti_konektor.gemspec +26 -0
- data/lib/activiti_konektor.rb +2 -0
- data/lib/activiti_konektor/konektor.rb +197 -0
- data/lib/activiti_konektor/version.rb +3 -0
- data/przyklady/TestowyDiagram.bar +0 -0
- data/przyklady/diagram.rb +10 -0
- data/przyklady/loguj.rb +8 -0
- data/przyklady/start.rb +8 -0
- data/przyklady/wgraj.rb +8 -0
- data/przyklady/zadania.rb +10 -0
- data/spec/lib/activiti_konektor/konektor_spec.rb +25 -0
- data/spec/spec_helper.rb +17 -0
- metadata +144 -0
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Kamil Biduś
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# ActivitiKonektor
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'activiti_konektor'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install activiti_konektor
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'activiti_konektor/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "activiti_konektor"
|
8
|
+
spec.version = ActivitiKonektor::VERSION
|
9
|
+
spec.authors = ["Kamil Biduś"]
|
10
|
+
spec.email = ["kamil.bidus@skokjaw.pl"]
|
11
|
+
spec.description = %q{Very simple client for Activiti Rest}
|
12
|
+
spec.summary = %q{Very simple client for Activiti Rest}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_runtime_dependency "rest-client"
|
22
|
+
spec.add_runtime_dependency "json"
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
24
|
+
spec.add_development_dependency "rake"
|
25
|
+
spec.add_development_dependency "guard-rspec"
|
26
|
+
end
|
@@ -0,0 +1,197 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'rest-client'
|
4
|
+
require 'json'
|
5
|
+
require 'uri'
|
6
|
+
|
7
|
+
module Activiti
|
8
|
+
class WyjatekKonektor < Exception; end
|
9
|
+
class Konektor
|
10
|
+
|
11
|
+
def initialize identyfikator_uzytkownika, haslo, url = "http://localhost:3030/activiti-rest/service/"
|
12
|
+
@identyfikator_uzytkownika = identyfikator_uzytkownika.to_s
|
13
|
+
@haslo = haslo.to_s
|
14
|
+
@url = url
|
15
|
+
end
|
16
|
+
|
17
|
+
def wgraj_proces plik_procesu
|
18
|
+
begin
|
19
|
+
raise "Nie istenie taki plik #{plik_procesu}" unless File.exists? plik_procesu
|
20
|
+
plik = File.new( plik_procesu )
|
21
|
+
przygotowany_adres = przygotuj_adres "deployment"
|
22
|
+
wlasciwy_url = ustaw_uzytkownika_dla_url przygotowany_adres
|
23
|
+
RestClient.post wlasciwy_url, :upload => { :file => plik }
|
24
|
+
rescue Exception => ex
|
25
|
+
raise "Nie udało sie wgrać pliku procesu, powod #{ex.message}"
|
26
|
+
end
|
27
|
+
end
|
28
|
+
def podaj_uzytkownika uzytkownik_id = @identyfikator_uzytkownika
|
29
|
+
begin
|
30
|
+
adres = przygotuj_adres "user/#{uzytkownik_id}"
|
31
|
+
json_get adres
|
32
|
+
rescue Exception => ex
|
33
|
+
raise "Nie udało sie porbać uzytkownika o id: #{uzytkownik_id}, upewnij się ze taki użtykownik istnieje"
|
34
|
+
end
|
35
|
+
end
|
36
|
+
def podaj_grupy_uzytkownika
|
37
|
+
adres = przygotuj_adres "user/#{@identyfikator_uzytkownika}/groups"
|
38
|
+
json_get adres
|
39
|
+
end
|
40
|
+
|
41
|
+
def podaj_definicje_procesow
|
42
|
+
begin
|
43
|
+
adres = przygotuj_adres "process-definitions"
|
44
|
+
json_get adres
|
45
|
+
rescue Exception => ex
|
46
|
+
raise "Nie udało sie pobrać definicji procesów, powod: #{ex.message}"
|
47
|
+
end
|
48
|
+
end
|
49
|
+
def podaj_instancje_procesow
|
50
|
+
begin
|
51
|
+
adres = przygotuj_adres "process-instances"
|
52
|
+
json_get adres
|
53
|
+
rescue Exception => ex
|
54
|
+
raise "Nie udało sie pobrać instancji procesów, powod: #{ex.message}"
|
55
|
+
end
|
56
|
+
end
|
57
|
+
def loguj
|
58
|
+
begin
|
59
|
+
adres = przygotuj_adres "login"
|
60
|
+
dane = { :userId => @identyfikator_uzytkownika, :password => "" }
|
61
|
+
json_post adres, dane
|
62
|
+
rescue Exception => ex
|
63
|
+
raise "Nie udało sie zalogować, upewnij sie że użytkownik o id #{@identyfikator_uzytkownika} istenieje"
|
64
|
+
end
|
65
|
+
end
|
66
|
+
def startuj_proces proc_def_key, zmienne = {}
|
67
|
+
begin
|
68
|
+
adres = przygotuj_adres 'process-instance'
|
69
|
+
dane = { "processDefinitionKey" => proc_def_key }
|
70
|
+
dane.merge! zmienne
|
71
|
+
json_post adres, dane
|
72
|
+
rescue Exception => ex
|
73
|
+
raise "Nie udało sięwystartować procesu o kluczy #{proc_def_key}, przez użtykownika #{@identyfikator_uzytkownika} - sprawdz logi Activti Rest"
|
74
|
+
end
|
75
|
+
end
|
76
|
+
def podaj_zadania_przypisane
|
77
|
+
begin
|
78
|
+
adres = przygotuj_adres "tasks?&assignee=#{@identyfikator_uzytkownika}"
|
79
|
+
puts adres
|
80
|
+
json_get adres
|
81
|
+
rescue Exception => ex
|
82
|
+
raise "Nie udało sie pobrać zadań przypisanych do użtykownika #{@identyfikator_uzytkownika} - sprawdz logi Activiti Rest, powodw: #{ex.message}"
|
83
|
+
end
|
84
|
+
end
|
85
|
+
def podaj_zadania_do_podjecia
|
86
|
+
begin
|
87
|
+
adres = przygotuj_adres "tasks?&candidate=#{@identyfikator_uzytkownika}"
|
88
|
+
puts adres
|
89
|
+
json_get adres
|
90
|
+
rescue Exception => ex
|
91
|
+
raise "Nie udało sie pobrać zadań do podjęcia dla użtykownika #{@identyfikator_uzytkownika} - sprawdz logi Activiti Rest, powodw: #{ex.message}"
|
92
|
+
end
|
93
|
+
end
|
94
|
+
def podaj_zadania_podsumowanie
|
95
|
+
begin
|
96
|
+
adres = przygotuj_adres "tasks-summary?user=#{@identyfikator_uzytkownika}"
|
97
|
+
json_get adres
|
98
|
+
rescue Exception => ex
|
99
|
+
raise "Nie udało sie pobrać podsumowania zadan dla uyztkownika #{@identyfikator_uzytkownika} - sprawdz logi Activiti Rest"
|
100
|
+
end
|
101
|
+
end
|
102
|
+
def podaj_zadanie zadanie_id
|
103
|
+
begin
|
104
|
+
przygotowany_adres = przygotuj_adres "task/#{@zadanie_id}"
|
105
|
+
json_get adres
|
106
|
+
rescue Exception => ex
|
107
|
+
raise "Nie udało sie pobrać zadania o identyfikatorze #{@zadanie_id} - sprawdz logi Activiti Rest"
|
108
|
+
end
|
109
|
+
end
|
110
|
+
def zwroc_zadanie_do_puli zadanie_id
|
111
|
+
begin
|
112
|
+
adres = przygotuj_adres "task/#{zadanie_id}/unclaim"
|
113
|
+
json_put adres
|
114
|
+
rescue Exception => ex
|
115
|
+
raise "Nie udało sie zwrócic zadania do puli zadana do podjęcia - sprawdz logi Activiti Rest"
|
116
|
+
end
|
117
|
+
end
|
118
|
+
def podejmij_zadanie zadanie_id
|
119
|
+
begin
|
120
|
+
adres = przygotuj_adres "task/#{zadanie_id}/claim"
|
121
|
+
json_put adres
|
122
|
+
rescue Exception => ex
|
123
|
+
raise "Nie udało się podjąc zadania o id #{zadanie_id} dla uzytkownika od identifikatorze #{@identyfikator_uzytkownika} - sprawdz logi Activiti Rest"
|
124
|
+
end
|
125
|
+
end
|
126
|
+
def przypisz_zadanie zadanie_id, komu
|
127
|
+
begin
|
128
|
+
adres = przygotuj_adres "task/#{zadanie_id}/assign"
|
129
|
+
dane = { :userId => komu }
|
130
|
+
json_put adres, dane
|
131
|
+
rescue Exception => ex
|
132
|
+
raise "Nie udało się przypisać zadania o id #{zadanie_id} dla uzytkownika od identifikatorze #{komu} - sprawdz logi Activiti Rest"
|
133
|
+
end
|
134
|
+
end
|
135
|
+
def wykonaj_zadanie zadanie_id, zmienne = {}
|
136
|
+
begin
|
137
|
+
adres = przygotuj_adres "task/#{zadanie_id}/complete"
|
138
|
+
json_post adres, zmienne
|
139
|
+
rescue Exception => ex
|
140
|
+
raise "Nie udało się wykonać zadania o id #{zadanie_id}, dla zmiennych #{zmienne} - sprawdz logi Activiti Rest"
|
141
|
+
end
|
142
|
+
end
|
143
|
+
def podaj_diagram_instacji id_procesu
|
144
|
+
begin
|
145
|
+
adres = przygotuj_adres "process-instance/#{id_procesu}/diagram"
|
146
|
+
get_post adres
|
147
|
+
rescue Exception => ex
|
148
|
+
raise "Nie udało się pobrać diagramu dla instancji #{id_procesu}, powod: #{ex.message} - sprawdz logi Activiti Rest"
|
149
|
+
end
|
150
|
+
end
|
151
|
+
|
152
|
+
def podaj_diagram_definicji id_definicji
|
153
|
+
begin
|
154
|
+
adres = przygotuj_adres "process-definition/#{id_definicji}/diagram"
|
155
|
+
json_get adres
|
156
|
+
rescue Exception => ex
|
157
|
+
raise "Nie udało się pobrać diagramu dla definicji procesu, powod: #{ex.message} - sprawdz logi Activiti Rest"
|
158
|
+
end
|
159
|
+
end
|
160
|
+
|
161
|
+
private
|
162
|
+
def json_get url
|
163
|
+
begin
|
164
|
+
RestClient.get url
|
165
|
+
rescue Exception => ex
|
166
|
+
raise WyjatekKonektor.new( "Nie udało się wykonać rządania JSON-GET dla #{url}, powod: #{ex.message}" )
|
167
|
+
end
|
168
|
+
end
|
169
|
+
def post url, zmienne
|
170
|
+
end
|
171
|
+
def json_put url, zmienne = {}
|
172
|
+
begin
|
173
|
+
RestClient.post url, zmienne.to_json, { :content_type => :json }
|
174
|
+
rescue Exception => ex
|
175
|
+
raise WyjatekKonektor.new( "Nie udało się wykonać rządania JSON-PUT dla #{url}, z zmiennymi: #{zmienne}, powod: #{ex.message}" )
|
176
|
+
end
|
177
|
+
end
|
178
|
+
def json_post url, zmienne = {}
|
179
|
+
begin
|
180
|
+
RestClient.post url, zmienne.to_json, { :content_type => :json }
|
181
|
+
rescue Exception => ex
|
182
|
+
raise WyjatekKonektor.new( "Nie udało się wykonać rządania JSON-POST dla #{url}, z zmiennymi: #{zmienne}, powod: #{ex.message}" )
|
183
|
+
end
|
184
|
+
end
|
185
|
+
def ustaw_uzytkownika uri
|
186
|
+
uri.user = @identyfikator_uzytkownika
|
187
|
+
uri.password = @haslo
|
188
|
+
return uri
|
189
|
+
end
|
190
|
+
def przygotuj_adres koncowka
|
191
|
+
url = @url + koncowka
|
192
|
+
uri = URI.parse( url )
|
193
|
+
uri = ustaw_uzytkownika uri
|
194
|
+
uri.to_s
|
195
|
+
end
|
196
|
+
end
|
197
|
+
end
|
Binary file
|
@@ -0,0 +1,10 @@
|
|
1
|
+
|
2
|
+
require './lib/activiti_konektor/konektor'
|
3
|
+
diagram_id = "testowyProces:10:309"
|
4
|
+
konektor = Activiti::Konektor.new(663, :haslo)
|
5
|
+
begin
|
6
|
+
puts konektor.podaj_definicje_procesow
|
7
|
+
puts konektor.podaj_diagram_definicji diagram_id
|
8
|
+
rescue Exception => ex
|
9
|
+
puts ex
|
10
|
+
end
|
data/przyklady/loguj.rb
ADDED
data/przyklady/start.rb
ADDED
data/przyklady/wgraj.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
|
2
|
+
require './lib/activiti_konektor/konektor'
|
3
|
+
konektor = Activiti::Konektor.new( 663, :haslo )
|
4
|
+
begin
|
5
|
+
puts konektor.podaj_zadania_do_podjecia
|
6
|
+
puts konektor.podaj_zadania_przypisane
|
7
|
+
puts konektor.podaj_zadania_podsumowanie
|
8
|
+
rescue Exception => ex
|
9
|
+
puts ex
|
10
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require 'activiti_konektor/konektor'
|
2
|
+
module Activiti
|
3
|
+
describe Konektor do
|
4
|
+
describe "#wgraj_proces" do
|
5
|
+
it "wgrywa proces do silinika" do
|
6
|
+
subject.wgraj_proces
|
7
|
+
end
|
8
|
+
it "wgrywa bar'a do silinika"
|
9
|
+
describe "rzuca wyjatkiem" do
|
10
|
+
it "gdy nie znajdzie pliku procesow"
|
11
|
+
it "gdy serwer zwroci bledna odpowiedz na rzadanie"
|
12
|
+
end
|
13
|
+
end
|
14
|
+
it "#podaj_uzytkownika"
|
15
|
+
it "#podaj_grupy_uzytkownika"
|
16
|
+
it "#podaj_definicje_procesow"
|
17
|
+
it "#podaj_instancje_procesow"
|
18
|
+
it "#loguj"
|
19
|
+
it "#podaj_zadania_przypisane"
|
20
|
+
it "#podaj_zadania_do_podjecia"
|
21
|
+
it "#podaj_zadania_podsumowanie"
|
22
|
+
it "#startuj_proces"
|
23
|
+
it "#wykonaj_zadanie"
|
24
|
+
end
|
25
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# This file was generated by the `rspec --init` command. Conventionally, all
|
2
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
3
|
+
# Require this file using `require "spec_helper"` to ensure that it is only
|
4
|
+
# loaded once.
|
5
|
+
#
|
6
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
7
|
+
RSpec.configure do |config|
|
8
|
+
config.treat_symbols_as_metadata_keys_with_true_values = true
|
9
|
+
config.run_all_when_everything_filtered = true
|
10
|
+
config.filter_run :focus
|
11
|
+
|
12
|
+
# Run specs in random order to surface order dependencies. If you find an
|
13
|
+
# order dependency and want to debug it, you can fix the order by providing
|
14
|
+
# the seed, which is printed after each run.
|
15
|
+
# --seed 1234
|
16
|
+
config.order = 'random'
|
17
|
+
end
|
metadata
ADDED
@@ -0,0 +1,144 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: activiti_konektor
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Kamil Biduś
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-04-04 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rest-client
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: json
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :runtime
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: bundler
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ~>
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '1.3'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.3'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: rake
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ! '>='
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
type: :development
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ! '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: guard-rspec
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ! '>='
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
86
|
+
type: :development
|
87
|
+
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ! '>='
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
description: Very simple client for Activiti Rest
|
95
|
+
email:
|
96
|
+
- kamil.bidus@skokjaw.pl
|
97
|
+
executables: []
|
98
|
+
extensions: []
|
99
|
+
extra_rdoc_files: []
|
100
|
+
files:
|
101
|
+
- Gemfile
|
102
|
+
- LICENSE.txt
|
103
|
+
- README.md
|
104
|
+
- Rakefile
|
105
|
+
- activiti_konektor.gemspec
|
106
|
+
- lib/activiti_konektor.rb
|
107
|
+
- lib/activiti_konektor/konektor.rb
|
108
|
+
- lib/activiti_konektor/version.rb
|
109
|
+
- przyklady/TestowyDiagram.bar
|
110
|
+
- przyklady/diagram.rb
|
111
|
+
- przyklady/loguj.rb
|
112
|
+
- przyklady/start.rb
|
113
|
+
- przyklady/wgraj.rb
|
114
|
+
- przyklady/zadania.rb
|
115
|
+
- spec/lib/activiti_konektor/konektor_spec.rb
|
116
|
+
- spec/spec_helper.rb
|
117
|
+
homepage: ''
|
118
|
+
licenses:
|
119
|
+
- MIT
|
120
|
+
post_install_message:
|
121
|
+
rdoc_options: []
|
122
|
+
require_paths:
|
123
|
+
- lib
|
124
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
125
|
+
none: false
|
126
|
+
requirements:
|
127
|
+
- - ! '>='
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: '0'
|
130
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
131
|
+
none: false
|
132
|
+
requirements:
|
133
|
+
- - ! '>='
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
version: '0'
|
136
|
+
requirements: []
|
137
|
+
rubyforge_project:
|
138
|
+
rubygems_version: 1.8.24
|
139
|
+
signing_key:
|
140
|
+
specification_version: 3
|
141
|
+
summary: Very simple client for Activiti Rest
|
142
|
+
test_files:
|
143
|
+
- spec/lib/activiti_konektor/konektor_spec.rb
|
144
|
+
- spec/spec_helper.rb
|