simonmenke-active_merchant_ogone 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -31,6 +31,7 @@ begin
31
31
  gemspec.email = "github@defv.be"
32
32
  gemspec.homepage = "http://github.com/DefV/active_merchant_ogone/tree/master"
33
33
  gemspec.authors = ["Jan De Poorter", "Simon Menke"]
34
+ gemspec.add_dependency 'activemerchant', '>= 0'
34
35
  end
35
36
  rescue LoadError
36
37
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
- :patch: 0
2
+ :patch: 1
3
3
  :major: 0
4
4
  :minor: 1
@@ -0,0 +1,57 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{active_merchant_ogone}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Jan De Poorter", "Simon Menke"]
12
+ s.date = %q{2009-09-01}
13
+ s.description = %q{A plugin for Ogone support in ActiveRecord. }
14
+ s.email = %q{github@defv.be}
15
+ s.extra_rdoc_files = [
16
+ "README.rdoc"
17
+ ]
18
+ s.files = [
19
+ "MIT-LICENSE",
20
+ "README.rdoc",
21
+ "Rakefile",
22
+ "VERSION.yml",
23
+ "active_merchant_ogone.gemspec",
24
+ "init.rb",
25
+ "lib/active_merchant_ogone.rb",
26
+ "lib/active_merchant_ogone/helper.rb",
27
+ "lib/active_merchant_ogone/notification.rb",
28
+ "test/active_merchant_ogone/helper_test.rb",
29
+ "test/active_merchant_ogone/notification_test.rb",
30
+ "test/active_merchant_ogone_test.rb",
31
+ "test/test_helper.rb"
32
+ ]
33
+ s.homepage = %q{http://github.com/DefV/active_merchant_ogone/tree/master}
34
+ s.rdoc_options = ["--charset=UTF-8"]
35
+ s.require_paths = ["lib"]
36
+ s.rubygems_version = %q{1.3.5}
37
+ s.summary = %q{A plugin for Ogone support in ActiveRecord.}
38
+ s.test_files = [
39
+ "test/active_merchant_ogone/helper_test.rb",
40
+ "test/active_merchant_ogone/notification_test.rb",
41
+ "test/active_merchant_ogone_test.rb",
42
+ "test/test_helper.rb"
43
+ ]
44
+
45
+ if s.respond_to? :specification_version then
46
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
47
+ s.specification_version = 3
48
+
49
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
50
+ s.add_runtime_dependency(%q<activemerchant>, [">= 0"])
51
+ else
52
+ s.add_dependency(%q<activemerchant>, [">= 0"])
53
+ end
54
+ else
55
+ s.add_dependency(%q<activemerchant>, [">= 0"])
56
+ end
57
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simonmenke-active_merchant_ogone
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan De Poorter
@@ -12,8 +12,17 @@ cert_chain: []
12
12
 
13
13
  date: 2009-09-01 00:00:00 -07:00
14
14
  default_executable:
15
- dependencies: []
16
-
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: activemerchant
18
+ type: :runtime
19
+ version_requirement:
20
+ version_requirements: !ruby/object:Gem::Requirement
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: "0"
25
+ version:
17
26
  description: A plugin for Ogone support in ActiveRecord.
18
27
  email: github@defv.be
19
28
  executables: []
@@ -27,6 +36,7 @@ files:
27
36
  - README.rdoc
28
37
  - Rakefile
29
38
  - VERSION.yml
39
+ - active_merchant_ogone.gemspec
30
40
  - init.rb
31
41
  - lib/active_merchant_ogone.rb
32
42
  - lib/active_merchant_ogone/helper.rb