rtml 2.0.2 → 2.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -19,6 +19,7 @@ $hoe = Hoe.spec 'rtml' do
19
19
  self.extra_dev_deps = [['rspec','>= 1.3.0'], ['rspec-rails','>= 1.3.2'], ['webrat', '>= 0.7.0']]
20
20
  self.version = Rtml::VERSION::STRING
21
21
  self.readme_file = "README.rdoc"
22
+ self.summary = "RubyTML (or just RTML) is a Ruby framework for communicating with Ingenico's Incendo-based payment devices."
22
23
  end
23
24
 
24
25
  require 'newgem/tasks'
@@ -2,7 +2,7 @@ module Rtml
2
2
  module VERSION
3
3
  MAJOR = 2
4
4
  MINOR = 0
5
- TINY = 2
5
+ TINY = 3
6
6
 
7
7
  STRING = (defined?(PRE) ? [MAJOR, MINOR, TINY, PRE] : [MAJOR, MINOR, TINY]).join('.')
8
8
  end
@@ -51,8 +51,8 @@ namespace :rtml do
51
51
  if $root_dir
52
52
  t.ruby_opts << ['-r', File.join(Rtml.root, 'lib/rtml/init')]
53
53
  end
54
- if File.file?(File.join(RAILS_ROOT, "spec/spec_helper"))
55
- t.ruby_opts << ['-r', File.join(RAILS_ROOT, "spec/spec_helper")]
54
+ if File.file?(File.join(RAILS_ROOT, "spec/spec_helper.rb"))
55
+ t.ruby_opts << ['-r', File.join(RAILS_ROOT, "spec/spec_helper.rb")]
56
56
  end
57
57
  t.spec_files = FileList[File.join(Rtml.root, "spec/**/*_spec.rb")]
58
58
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 2
7
7
  - 0
8
- - 2
9
- version: 2.0.2
8
+ - 3
9
+ version: 2.0.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Colin MacKenzie IV
@@ -417,7 +417,7 @@ rubyforge_project: rtml
417
417
  rubygems_version: 1.3.6
418
418
  signing_key:
419
419
  specification_version: 3
420
- summary: RubyTML (or just RTML) is a Ruby framework for communicating with Ingenico's Incendo-based payment devices
420
+ summary: RubyTML (or just RTML) is a Ruby framework for communicating with Ingenico's Incendo-based payment devices.
421
421
  test_files:
422
422
  - test/test_rtml_action_generator.rb
423
423
  - test/test_widget_generator.rb