bpmachine 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -1,2 +1,2 @@
1
- source :rubygems
1
+ source "https://rubygems.org"
2
2
  gemspec
@@ -1,27 +1,35 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bpmachine (1.0.3)
5
- activesupport (~> 3.2.0)
4
+ bpmachine (1.1.0)
5
+ activesupport (>= 3.2.0)
6
6
  i18n (~> 0.6.0)
7
7
 
8
8
  GEM
9
- remote: http://rubygems.org/
9
+ remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (3.2.3)
12
- i18n (~> 0.6)
13
- multi_json (~> 1.0)
14
- diff-lcs (1.1.2)
15
- i18n (0.6.0)
16
- multi_json (1.3.2)
17
- rspec (2.5.0)
18
- rspec-core (~> 2.5.0)
19
- rspec-expectations (~> 2.5.0)
20
- rspec-mocks (~> 2.5.0)
21
- rspec-core (2.5.1)
22
- rspec-expectations (2.5.0)
23
- diff-lcs (~> 1.1.2)
24
- rspec-mocks (2.5.0)
11
+ activesupport (4.0.0)
12
+ i18n (~> 0.6, >= 0.6.4)
13
+ minitest (~> 4.2)
14
+ multi_json (~> 1.3)
15
+ thread_safe (~> 0.1)
16
+ tzinfo (~> 0.3.37)
17
+ atomic (1.1.9)
18
+ diff-lcs (1.2.4)
19
+ i18n (0.6.4)
20
+ minitest (4.7.5)
21
+ multi_json (1.7.7)
22
+ rspec (2.13.0)
23
+ rspec-core (~> 2.13.0)
24
+ rspec-expectations (~> 2.13.0)
25
+ rspec-mocks (~> 2.13.0)
26
+ rspec-core (2.13.1)
27
+ rspec-expectations (2.13.0)
28
+ diff-lcs (>= 1.1.3, < 2.0)
29
+ rspec-mocks (2.13.1)
30
+ thread_safe (0.1.0)
31
+ atomic
32
+ tzinfo (0.3.37)
25
33
 
26
34
  PLATFORMS
27
35
  ruby
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2009 fabiokung
1
+ Copyright (c) 2012 Locaweb
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -0,0 +1,18 @@
1
+ bpmachine
2
+ =========
3
+
4
+ bpmachine is a ruby gem to descript process specifications.
5
+ This gem was made to deal with a big pipeline, acting as a state machine
6
+ for the application to control each status of whole process.
7
+
8
+
9
+ Contributors
10
+ ------------
11
+
12
+ * Fabio Kung
13
+
14
+
15
+ Copyright
16
+ ---------
17
+
18
+ Copyright (c) 2012 Locaweb. See LICENSE for details.
@@ -16,6 +16,6 @@ Gem::Specification.new do |s|
16
16
  s.require_paths = ["lib"]
17
17
 
18
18
  s.add_dependency "i18n", "~> 0.6.0"
19
- s.add_dependency "activesupport", "~> 3.2.0"
19
+ s.add_dependency "activesupport", ">= 3.2.0"
20
20
  s.add_development_dependency "rspec"
21
21
  end
@@ -2,7 +2,7 @@ module BPMachine
2
2
  module Version
3
3
  MAJOR = 1
4
4
  MINOR = 1
5
- PATCH = 0
5
+ PATCH = 1
6
6
  STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bpmachine
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-04-25 00:00:00.000000000 Z
12
+ date: 2013-06-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: i18n
16
- requirement: &10268920 !ruby/object:Gem::Requirement
16
+ requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,21 +21,31 @@ dependencies:
21
21
  version: 0.6.0
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *10268920
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 0.6.0
25
30
  - !ruby/object:Gem::Dependency
26
31
  name: activesupport
27
- requirement: &10268140 !ruby/object:Gem::Requirement
32
+ requirement: !ruby/object:Gem::Requirement
28
33
  none: false
29
34
  requirements:
30
- - - ~>
35
+ - - ! '>='
31
36
  - !ruby/object:Gem::Version
32
37
  version: 3.2.0
33
38
  type: :runtime
34
39
  prerelease: false
35
- version_requirements: *10268140
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: 3.2.0
36
46
  - !ruby/object:Gem::Dependency
37
47
  name: rspec
38
- requirement: &10267500 !ruby/object:Gem::Requirement
48
+ requirement: !ruby/object:Gem::Requirement
39
49
  none: false
40
50
  requirements:
41
51
  - - ! '>='
@@ -43,7 +53,12 @@ dependencies:
43
53
  version: '0'
44
54
  type: :development
45
55
  prerelease: false
46
- version_requirements: *10267500
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
47
62
  description: Includes a DSL for business process specification. The process state
48
63
  is persistent, which allows it to be be resumed if an error occurs.
49
64
  email:
@@ -52,20 +67,20 @@ executables: []
52
67
  extensions: []
53
68
  extra_rdoc_files: []
54
69
  files:
55
- - ./Gemfile.lock
56
70
  - ./bpmachine.gemspec
57
- - ./README.rdoc
58
- - ./LICENSE
59
- - ./spec/support/machine.rb
60
- - ./spec/support/uninstall_steps.rb
61
- - ./spec/support/wrong_steps.rb
62
71
  - ./spec/spec_helper.rb
72
+ - ./spec/support/wrong_steps.rb
73
+ - ./spec/support/uninstall_steps.rb
74
+ - ./spec/support/machine.rb
63
75
  - ./spec/bpmachine_spec.rb
64
- - ./Gemfile
76
+ - ./Gemfile.lock
65
77
  - ./Rakefile
78
+ - ./Gemfile
79
+ - ./README.markdown
80
+ - ./LICENSE
66
81
  - ./lib/bpmachine.rb
67
- - ./lib/bpmachine/process_specification.rb
68
82
  - ./lib/bpmachine/version.rb
83
+ - ./lib/bpmachine/process_specification.rb
69
84
  homepage: http://github.com/locaweb/bpmachine
70
85
  licenses: []
71
86
  post_install_message:
@@ -86,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
101
  version: '0'
87
102
  requirements: []
88
103
  rubyforge_project:
89
- rubygems_version: 1.8.16
104
+ rubygems_version: 1.8.23
90
105
  signing_key:
91
106
  specification_version: 3
92
107
  summary: Includes a DSL for business process specification. The process state is persistent,
@@ -1,18 +0,0 @@
1
- = bpmachine
2
-
3
- Description goes here.
4
-
5
- == Note on Patches/Pull Requests
6
-
7
- * Fork the project.
8
- * Make your feature addition or bug fix.
9
- * Add tests for it. This is important so I don't break it in a
10
- future version unintentionally.
11
- * Commit, do not mess with rakefile, version, or history.
12
- (if you want to have your own version, that is fine but
13
- bump version in a commit by itself I can ignore when I pull)
14
- * Send me a pull request. Bonus points for topic branches.
15
-
16
- == Copyright
17
-
18
- Copyright (c) 2009 fabiokung. See LICENSE for details.