ltdtemplate 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Gemfile +3 -0
  2. data/HISTORY.txt +4 -1
  3. data/ltdtemplate.gemspec +2 -2
  4. metadata +3 -2
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem "sarah", "~> 0.0.2"
data/HISTORY.txt CHANGED
@@ -1,4 +1,7 @@
1
- 2013-07-10 Version 0.1.0
1
+ 2013-07-12 Version 0.1.1
2
+ Added Gemfile
3
+
4
+ 2013-07-12 Version 0.1.0
2
5
  Fixed class names in unit tests.
3
6
  String.* now handles multipliers <= 0.
4
7
  Added number.abs (absolute value) method.
data/ltdtemplate.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "ltdtemplate"
3
- s.version = "0.1.0"
3
+ s.version = "0.1.1"
4
4
  s.date = "2013-07-12"
5
5
  s.authors = ["Brian Katzung"]
6
6
  s.email = ["briank@kappacs.com"]
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.license = "MIT"
11
11
 
12
12
  s.files = Dir.glob("lib/**/*") +
13
- %w{ltdtemplate.gemspec HISTORY.txt TEMPLATE_MANUAL.html}
13
+ %w{ltdtemplate.gemspec Gemfile HISTORY.txt TEMPLATE_MANUAL.html}
14
14
  s.test_files = Dir.glob("test/**/[0-9]*.rb")
15
15
  s.require_path = 'lib'
16
16
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Brian Katzung
@@ -43,6 +43,7 @@ files:
43
43
  - lib/ltdtemplate/code/variable.rb
44
44
  - lib/ltdtemplate.rb
45
45
  - ltdtemplate.gemspec
46
+ - Gemfile
46
47
  - HISTORY.txt
47
48
  - TEMPLATE_MANUAL.html
48
49
  - test/00class.rb