Skip to content

Commit 0ef5262

Browse files
authored
Merge pull request #17 from luckyLukac/main
Version 0.1.1
2 parents 9d2db7a + 2ff02be commit 0ef5262

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
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.1.0)
4+
ast-tdl (0.1.1)
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.1.0'
5+
spec.version = '0.1.1'
66
spec.license = 'MIT'
77
spec.authors = %w[firefly-cpp luckyLukac]
88

examples/run_example.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# frozen_string_literal: true
22

3-
# require 'ast-tdl'
4-
require_relative '../lib/ast-tdl'
3+
require 'ast-tdl'
54

65
# Training description in AST-TDL domain specific language.
76
training = Ast.build('My first training') do

examples/save_training_to_file.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
speed_heart_rate :"180"
2727
recovery_heart_rate :"90"
2828
repetitions :"10"
29+
type :fixed
2930
end
3031
end
3132

test/test_ast_tdl.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def self.training
4040
# Version test.
4141
def test_version
4242
spec = Gem::Specification.load('ast-tdl.gemspec')
43-
assert_equal spec.version, '0.1.0'
43+
assert_equal spec.version, '0.1.1'
4444
end
4545

4646
##

0 commit comments

Comments
 (0)