active_exchange 0.5.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -12,10 +12,11 @@ I personally wouldn't use this if my model was, say an F/X trader on a big time
12
12
 
13
13
  == Usage
14
14
 
15
- * add gem 'active_exchange' to your GEMFILE (Rails 3)
16
- * For now: Copy the rake file and migration into your app's (for rake) lib/task directory and (for migration file)db/migrate -- Will fix later hopefully.
15
+ * add code below to your GEMFILE (Rails 3)
16
+ gem 'active_exchange'
17
+ * For now: Copy the db/migrate file-- Will fix later hopefully.
17
18
  * Run "rake db:migrate" to migrate the migration files.
18
- * Run the rake task : "sudo rake active_exchange:daily_seed" to get yesterday's closing Exchange Rate data (When doing today's it's hit and miss).
19
+ * Run the rake task : "rake active_exchange:daily_seed" to get yesterday's closing Exchange Rate data (When doing today's it's hit and miss).
19
20
 
20
21
  You can now integrate the data into your app as you see fit.
21
22
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.0
1
+ 0.6.0
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{active_exchange}
8
- s.version = "0.5.0"
8
+ s.version = "0.6.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["pjammer"]
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
27
27
  "db/migrate/20091021192708_create_exchange_rates.rb",
28
28
  "lib/active_exchange.rb",
29
29
  "lib/active_exchange/active_exchange.rb",
30
- "tasks/daily_exchange_rates.rake",
30
+ "lib/tasks/daily_exchange_rates.rake",
31
31
  "test/helper.rb",
32
32
  "test/test_active_exchange.rb"
33
33
  ]
@@ -3,6 +3,6 @@ require 'rails'
3
3
 
4
4
  module ActiveExchange
5
5
  class Engine < Rails::Engine
6
- # engine_name :active_exchange
6
+
7
7
  end
8
8
  end
File without changes
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_exchange
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 7
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 5
8
+ - 6
9
9
  - 0
10
- version: 0.5.0
10
+ version: 0.6.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - pjammer
@@ -39,7 +39,7 @@ files:
39
39
  - db/migrate/20091021192708_create_exchange_rates.rb
40
40
  - lib/active_exchange.rb
41
41
  - lib/active_exchange/active_exchange.rb
42
- - tasks/daily_exchange_rates.rake
42
+ - lib/tasks/daily_exchange_rates.rake
43
43
  - test/helper.rb
44
44
  - test/test_active_exchange.rb
45
45
  has_rdoc: true