Skip to content
This repository was archived by the owner on May 4, 2024. It is now read-only.

Commit 609a31c

Browse files
Bump version to v0.4.0
1 parent 4e13a03 commit 609a31c

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.rubocop.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ Metrics/PerceivedComplexity:
5151
Rails:
5252
Enabled: true
5353

54+
Rails/EnvironmentVariableAccess:
55+
Enabled: false
56+
5457
Rails/Output:
5558
Exclude:
5659
- db/seeds/**/*

db/seeds/development/03_tasks.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ def relate(from, type, to)
2020
# Project
2121
project = create(project.graph, :idea, "Graph project management", "Use graphs to visualize and represent tasks, features and resources.")
2222

23-
deploy = create(project.graph, :task, "Deploy app", "Deploy application using a Continuous Deployment mechanism.")
23+
# deploy = create(project.graph, :task, "Deploy app", "Deploy application using a Continuous Deployment mechanism.")
2424

25-
relate(deploy, :child_of, project)
25+
# relate(deploy, :child_of, project)
2626

2727
# Tasks
2828
manage_tasks = create(project.graph, :epic, "Task management", "Task management involves creating, modifying and deleting tasks")

lib/code_red/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module CodeRed
44
module Version
55
MAJOR = 0
6-
MINOR = 3
6+
MINOR = 4
77
PATCH = 0
88
PRE = nil
99

0 commit comments

Comments
 (0)