Skip to content

Commit 41a8e40

Browse files
authored
Merge pull request #12 from luckyLukac/main
Version 0.0.4
2 parents 9b438e4 + fedacab commit 41a8e40

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
ast-tdl (0.0.3)
4+
ast-tdl (0.0.4)
55

66
GEM
77
remote: https://rubygems.org/

ast-tdl.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gem::Specification.new do |spec|
44
spec.name = 'ast-tdl'
5-
spec.version = '0.0.3'
5+
spec.version = '0.0.4'
66
spec.license = 'MIT'
77
spec.authors = %w[firefly-cpp luckyLukac]
88

examples/run_example_with_more_intervals.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require 'ast-tdl'
44

55
# Training description in AST-TDL domain specific language.
6-
training = Ast.build :Monday do
6+
training = Ast.build(:Monday) do
77
session('Short swimming session today') do
88
sport :swim
99
info :"Very easy training"

test/test_ast_tdl.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def self.training
3939
# Version test.
4040
def test_version
4141
spec = Gem::Specification.load('ast-tdl.gemspec')
42-
assert_equal spec.version, '0.0.3'
42+
assert_equal spec.version, '0.0.4'
4343
end
4444

4545
##

0 commit comments

Comments
 (0)