economy 0.0.1 → 4.0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +27 -14
- data/lib/economy/configuration.rb +1 -1
- data/lib/economy/railtie.rb +1 -1
- data/lib/economy/version.rb +1 -1
- data/lib/economy.rb +0 -1
- data/lib/generators/economy/{install_generator.rb → install/install_generator.rb} +1 -1
- data/lib/generators/economy/{templates → install/templates}/initializer.rb +1 -1
- data/lib/generators/economy/{templates → install/templates}/migration.rb +0 -0
- data/lib/tasks/economy.rake +1 -0
- data/test/dummy/config/database.yml +2 -2
- data/test/dummy/config/initializers/economy.rb +2 -2
- data/test/dummy/public/404.html +57 -63
- data/test/dummy/public/422.html +57 -63
- data/test/dummy/public/500.html +56 -62
- data/test/generator_test.rb +1 -1
- data/test/{rates_test.rb → rate_test.rb} +1 -1
- metadata +7 -13
- data/test/dummy/db/schema.rb +0 -45
- data/test/dummy/log/development.log +0 -172
- data/test/dummy/log/test.log +0 -8574
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: abfda4805b987b0209c210090c47546f9516ac62
|
4
|
+
data.tar.gz: ebf38ddd7fa00e8bd6ef642fa05dedd65509b2f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 69541c4bc20b5d70a424783b1dedca6de07cc6bd9a5cd6f695d5f79214d4fc2cc5eeda9ddaa0090166854848a62d509b84b704a5d45f0c83ae4a000d8bd66d8b
|
7
|
+
data.tar.gz: e04787510e5df9885afd1638cbe273fde30679c90dde3089849fcf7dc9b6ac70935b45df2334461aac83efe654bb621e1e8f1d6111fa2e83c863aedb04053828
|
data/README.md
CHANGED
@@ -9,13 +9,13 @@ High performance multicurrency money for rails.
|
|
9
9
|
|
10
10
|
## Why
|
11
11
|
|
12
|
-
I did this gem to
|
12
|
+
I did this gem to:
|
13
13
|
|
14
14
|
- Keep rates cached in redis for optimal performance and sync between instances.
|
15
|
-
-
|
16
|
-
- Be able to make sql queries without the need to convert integers
|
15
|
+
- Have an out of the box working rates service.
|
16
|
+
- Be able to make sql queries without the need to convert integers into decimals.
|
17
17
|
- Share a common currency column for multiple money fields if a need it.
|
18
|
-
- Avoid the need to format
|
18
|
+
- Avoid the need to manually format the string representation in views.
|
19
19
|
|
20
20
|
## Install
|
21
21
|
|
@@ -31,34 +31,49 @@ $ bundle
|
|
31
31
|
|
32
32
|
To install Redis you can use homebrew:
|
33
33
|
```
|
34
|
-
brew install redis
|
34
|
+
$ brew install redis
|
35
35
|
```
|
36
36
|
|
37
37
|
## Configuration
|
38
38
|
|
39
39
|
Generate the configuration file:
|
40
40
|
```
|
41
|
-
rails g economy:install
|
41
|
+
$ bundle exec rails g economy:install
|
42
42
|
```
|
43
43
|
|
44
|
-
|
44
|
+
Set the global settings:
|
45
45
|
```ruby
|
46
46
|
Economy.configure do |config|
|
47
47
|
|
48
48
|
config.rates = :yahoo
|
49
49
|
config.default_currency = 'USD'
|
50
50
|
|
51
|
-
config.
|
51
|
+
config.register_currency(
|
52
52
|
iso_code: 'USD',
|
53
53
|
iso_number: 840,
|
54
54
|
symbol: 'U$S',
|
55
55
|
decimals: 2
|
56
56
|
)
|
57
|
+
config.register_currency(
|
58
|
+
iso_code: 'UYU',
|
59
|
+
iso_number: 858,
|
60
|
+
symbol: '$U',
|
61
|
+
decimals: 2
|
62
|
+
)
|
57
63
|
|
58
64
|
end
|
59
65
|
```
|
60
66
|
|
61
|
-
|
67
|
+
Add a redis_url to your environment configuration:
|
68
|
+
```ruby
|
69
|
+
Rails.application.configure do
|
70
|
+
config.redis_url = 'redis://localhost:6379/0'
|
71
|
+
end
|
72
|
+
```
|
73
|
+
|
74
|
+
## Usage
|
75
|
+
|
76
|
+
### Definitions
|
62
77
|
|
63
78
|
Add the money columns to your tables:
|
64
79
|
```ruby
|
@@ -73,13 +88,11 @@ end
|
|
73
88
|
Define the money field in your models:
|
74
89
|
```ruby
|
75
90
|
class Product < ActiveRecord::Base
|
76
|
-
|
77
91
|
monetize :price
|
78
|
-
|
79
92
|
end
|
80
93
|
```
|
81
94
|
|
82
|
-
|
95
|
+
### Attributes
|
83
96
|
|
84
97
|
If you want to assign values, everything continuos working the same:
|
85
98
|
```ruby
|
@@ -106,11 +119,11 @@ The formatting method is to_s, it uses active support, so there is no need to ca
|
|
106
119
|
<%= product.price %>
|
107
120
|
```
|
108
121
|
|
109
|
-
|
122
|
+
### Rates
|
110
123
|
|
111
124
|
You can use rake task:
|
112
125
|
```
|
113
|
-
bundle exec rake economy:update_rates
|
126
|
+
$ bundle exec rake economy:update_rates
|
114
127
|
```
|
115
128
|
|
116
129
|
Or the plain method:
|
data/lib/economy/railtie.rb
CHANGED
data/lib/economy/version.rb
CHANGED
data/lib/economy.rb
CHANGED
File without changes
|
data/lib/tasks/economy.rake
CHANGED
@@ -3,13 +3,13 @@ Economy.configure do |config|
|
|
3
3
|
config.rates = :yahoo
|
4
4
|
config.default_currency = 'USD'
|
5
5
|
|
6
|
-
config.
|
6
|
+
config.register_currency(
|
7
7
|
iso_code: 'USD',
|
8
8
|
iso_number: 840,
|
9
9
|
symbol: 'U$S',
|
10
10
|
decimals: 2
|
11
11
|
)
|
12
|
-
config.
|
12
|
+
config.register_currency(
|
13
13
|
iso_code: 'UYU',
|
14
14
|
iso_number: 858,
|
15
15
|
symbol: '$U',
|
data/test/dummy/public/404.html
CHANGED
@@ -1,67 +1,61 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
2
|
<html>
|
3
|
-
<head>
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
<div class="dialog">
|
60
|
-
<div>
|
61
|
-
<h1>The page you were looking for doesn't exist.</h1>
|
62
|
-
<p>You may have mistyped the address or the page may have moved.</p>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
div.dialog {
|
15
|
+
width: 95%;
|
16
|
+
max-width: 33em;
|
17
|
+
margin: 4em auto 0;
|
18
|
+
}
|
19
|
+
div.dialog > div {
|
20
|
+
border: 1px solid #CCC;
|
21
|
+
border-right-color: #999;
|
22
|
+
border-left-color: #999;
|
23
|
+
border-bottom-color: #BBB;
|
24
|
+
border-top: #B00100 solid 4px;
|
25
|
+
border-top-left-radius: 9px;
|
26
|
+
border-top-right-radius: 9px;
|
27
|
+
background-color: white;
|
28
|
+
padding: 7px 12% 0;
|
29
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
30
|
+
}
|
31
|
+
h1 {
|
32
|
+
font-size: 100%;
|
33
|
+
color: #730E15;
|
34
|
+
line-height: 1.5em;
|
35
|
+
}
|
36
|
+
div.dialog > p {
|
37
|
+
margin: 0 0 1em;
|
38
|
+
padding: 1em;
|
39
|
+
background-color: #F7F7F7;
|
40
|
+
border: 1px solid #CCC;
|
41
|
+
border-right-color: #999;
|
42
|
+
border-left-color: #999;
|
43
|
+
border-bottom-color: #999;
|
44
|
+
border-bottom-left-radius: 4px;
|
45
|
+
border-bottom-right-radius: 4px;
|
46
|
+
border-top-color: #DADADA;
|
47
|
+
color: #666;
|
48
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
49
|
+
}
|
50
|
+
</style>
|
51
|
+
</head>
|
52
|
+
<body>
|
53
|
+
<div class="dialog">
|
54
|
+
<div>
|
55
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
56
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
57
|
+
</div>
|
58
|
+
<p>If you are the application owner check the logs for more information.</p>
|
63
59
|
</div>
|
64
|
-
|
65
|
-
</div>
|
66
|
-
</body>
|
60
|
+
</body>
|
67
61
|
</html>
|
data/test/dummy/public/422.html
CHANGED
@@ -1,67 +1,61 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
2
|
<html>
|
3
|
-
<head>
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
<div class="dialog">
|
60
|
-
<div>
|
61
|
-
<h1>The change you wanted was rejected.</h1>
|
62
|
-
<p>Maybe you tried to change something you didn't have access to.</p>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
div.dialog {
|
15
|
+
width: 95%;
|
16
|
+
max-width: 33em;
|
17
|
+
margin: 4em auto 0;
|
18
|
+
}
|
19
|
+
div.dialog > div {
|
20
|
+
border: 1px solid #CCC;
|
21
|
+
border-right-color: #999;
|
22
|
+
border-left-color: #999;
|
23
|
+
border-bottom-color: #BBB;
|
24
|
+
border-top: #B00100 solid 4px;
|
25
|
+
border-top-left-radius: 9px;
|
26
|
+
border-top-right-radius: 9px;
|
27
|
+
background-color: white;
|
28
|
+
padding: 7px 12% 0;
|
29
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
30
|
+
}
|
31
|
+
h1 {
|
32
|
+
font-size: 100%;
|
33
|
+
color: #730E15;
|
34
|
+
line-height: 1.5em;
|
35
|
+
}
|
36
|
+
div.dialog > p {
|
37
|
+
margin: 0 0 1em;
|
38
|
+
padding: 1em;
|
39
|
+
background-color: #F7F7F7;
|
40
|
+
border: 1px solid #CCC;
|
41
|
+
border-right-color: #999;
|
42
|
+
border-left-color: #999;
|
43
|
+
border-bottom-color: #999;
|
44
|
+
border-bottom-left-radius: 4px;
|
45
|
+
border-bottom-right-radius: 4px;
|
46
|
+
border-top-color: #DADADA;
|
47
|
+
color: #666;
|
48
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
49
|
+
}
|
50
|
+
</style>
|
51
|
+
</head>
|
52
|
+
<body>
|
53
|
+
<div class="dialog">
|
54
|
+
<div>
|
55
|
+
<h1>The change you wanted was rejected.</h1>
|
56
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
57
|
+
</div>
|
58
|
+
<p>If you are the application owner check the logs for more information.</p>
|
63
59
|
</div>
|
64
|
-
|
65
|
-
</div>
|
66
|
-
</body>
|
60
|
+
</body>
|
67
61
|
</html>
|
data/test/dummy/public/500.html
CHANGED
@@ -1,66 +1,60 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
2
|
<html>
|
3
|
-
<head>
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
<
|
58
|
-
<!-- This file lives in public/500.html -->
|
59
|
-
<div class="dialog">
|
60
|
-
<div>
|
61
|
-
<h1>We're sorry, but something went wrong.</h1>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
div.dialog {
|
15
|
+
width: 95%;
|
16
|
+
max-width: 33em;
|
17
|
+
margin: 4em auto 0;
|
18
|
+
}
|
19
|
+
div.dialog > div {
|
20
|
+
border: 1px solid #CCC;
|
21
|
+
border-right-color: #999;
|
22
|
+
border-left-color: #999;
|
23
|
+
border-bottom-color: #BBB;
|
24
|
+
border-top: #B00100 solid 4px;
|
25
|
+
border-top-left-radius: 9px;
|
26
|
+
border-top-right-radius: 9px;
|
27
|
+
background-color: white;
|
28
|
+
padding: 7px 12% 0;
|
29
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
30
|
+
}
|
31
|
+
h1 {
|
32
|
+
font-size: 100%;
|
33
|
+
color: #730E15;
|
34
|
+
line-height: 1.5em;
|
35
|
+
}
|
36
|
+
div.dialog > p {
|
37
|
+
margin: 0 0 1em;
|
38
|
+
padding: 1em;
|
39
|
+
background-color: #F7F7F7;
|
40
|
+
border: 1px solid #CCC;
|
41
|
+
border-right-color: #999;
|
42
|
+
border-left-color: #999;
|
43
|
+
border-bottom-color: #999;
|
44
|
+
border-bottom-left-radius: 4px;
|
45
|
+
border-bottom-right-radius: 4px;
|
46
|
+
border-top-color: #DADADA;
|
47
|
+
color: #666;
|
48
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
49
|
+
}
|
50
|
+
</style>
|
51
|
+
</head>
|
52
|
+
<body>
|
53
|
+
<div class="dialog">
|
54
|
+
<div>
|
55
|
+
<h1>We're sorry, but something went wrong.</h1>
|
56
|
+
</div>
|
57
|
+
<p>If you are the application owner check the logs for more information.</p>
|
62
58
|
</div>
|
63
|
-
|
64
|
-
</div>
|
65
|
-
</body>
|
59
|
+
</body>
|
66
60
|
</html>
|
data/test/generator_test.rb
CHANGED