Skip to content

Commit

Permalink
Version 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Rukomoynikov committed Jul 16, 2022
1 parent 9ac4d1f commit 3a8780d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@
# rspec failure tracking
.rspec_status
.idea
.byebug_history
.byebug_history
*.gem
8 changes: 3 additions & 5 deletions processable.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,13 @@ Gem::Specification.new do |spec|
spec.authors = ["Max Rukomoynikov"]
spec.email = ["[email protected]"]

spec.summary = "Write a short summary, because RubyGems requires one."
spec.description = "Write a longer description or delete this line."
spec.homepage = "http://habr.com"
spec.summary = "Ruby gem to help you organize any process into series of steps"
spec.homepage = "https://github.com/Rukomoynikov/processable"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "http://habr.com"
spec.metadata["changelog_uri"] = "http://habr.com"
spec.metadata["source_code_uri"] = "https://github.com/Rukomoynikov/processable"

spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
Expand Down
5 changes: 3 additions & 2 deletions processable.idea
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ end
class LocationsUploaderStep < Processable::Step
end

# Order of steps as it's been configured
# Order of steps as it's been defined
# In the result you will get either result of the last step
# Print every step (option to disable)
# How to validate?
# Stop if something went wrong
# Steps cannot use the same name
# Steps cannot use the same name (validate it)
# Using a class instead of block and move all logic there (maybe process of processes)

0 comments on commit 3a8780d

Please sign in to comment.