isic 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +2 -1
- data/CHANGELOG.md +13 -0
- data/README.md +12 -1
- data/lib/isic/search.rb +3 -3
- data/lib/isic/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e87b6d4574501cfe81a6a12092a9f6175ad7a00b
|
|
4
|
+
data.tar.gz: dd50b535ff7aa07d421c844556b0e60a4db24de1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c6204f11997436a85608b36a98dc7983b8ef4f503d81ce154c718c1210e9c19470b895de6bb1a61cc21189376d11348b779422fc8d3046fbd5b76301f662e1a
|
|
7
|
+
data.tar.gz: 44c26c6fb2fb09399f0663b0495bf8dec286a454a883e0de24e29df6fe6837f05a23576c66e9534a4b6683f7976ccbc0ae50815c29cc4b2f7b6082d40c9c9fb2
|
data/.gitignore
CHANGED
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
## [1.0.5] - 2015-05-21
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- This CHANGELOG.md file
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
- Improve README.md
|
|
10
|
+
- Change .rvmrc for .ruby-version and .ruby-gemset in .gitignore
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- [Fix files path ](https://github.com/javiervidal/isic/pull/1)
|
data/README.md
CHANGED
|
@@ -118,6 +118,17 @@ Descriptions are returned in English by default, but Spanish and French are supp
|
|
|
118
118
|
{:code=>"089", :description=>"Activités extractives, n.c.a."}
|
|
119
119
|
]
|
|
120
120
|
```
|
|
121
|
+
## How to Launch the Console
|
|
122
|
+
|
|
123
|
+
$ rake console
|
|
124
|
+
|
|
125
|
+
## How to Run the Test Suite
|
|
126
|
+
|
|
127
|
+
$ rspec
|
|
128
|
+
|
|
129
|
+
## Changelog
|
|
130
|
+
|
|
131
|
+
[Changelog](https://github.com/javiervidal/isic/blob/master/CHANGELOG.md)
|
|
121
132
|
|
|
122
133
|
## Contributing
|
|
123
134
|
|
|
@@ -129,7 +140,7 @@ Descriptions are returned in English by default, but Spanish and French are supp
|
|
|
129
140
|
|
|
130
141
|
## Code Status
|
|
131
142
|
|
|
132
|
-
[](https://rubygems.org/gems/mic)
|
|
133
144
|
[](https://travis-ci.org/javiervidal/isic)
|
|
134
145
|
[](https://coveralls.io/r/javiervidal/isic?branch=master)
|
|
135
146
|
[](https://codeclimate.com/github/javiervidal/isic)
|
data/lib/isic/search.rb
CHANGED
|
@@ -2,9 +2,9 @@ class Isic
|
|
|
2
2
|
class Search
|
|
3
3
|
|
|
4
4
|
FILES = {
|
|
5
|
-
en: 'files/ISIC_Rev_4_english_structure.txt',
|
|
6
|
-
es: 'files/ISIC_Rev_4_spanish_structure.txt',
|
|
7
|
-
fr: 'files/ISIC_Rev_4_french_structure.txt'
|
|
5
|
+
en: File.join(File.dirname(File.expand_path(__FILE__)), '../../files/ISIC_Rev_4_english_structure.txt'),
|
|
6
|
+
es: File.join(File.dirname(File.expand_path(__FILE__)), '../../files/ISIC_Rev_4_spanish_structure.txt'),
|
|
7
|
+
fr: File.join(File.dirname(File.expand_path(__FILE__)), '../../files/ISIC_Rev_4_french_structure.txt')
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
ENCODINGS = {
|
data/lib/isic/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: isic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Javier Vidal
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-05-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -107,6 +107,7 @@ files:
|
|
|
107
107
|
- ".gitignore"
|
|
108
108
|
- ".rspec"
|
|
109
109
|
- ".travis.yml"
|
|
110
|
+
- CHANGELOG.md
|
|
110
111
|
- Gemfile
|
|
111
112
|
- LICENSE.txt
|
|
112
113
|
- README.md
|
|
@@ -143,7 +144,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
143
144
|
version: '0'
|
|
144
145
|
requirements: []
|
|
145
146
|
rubyforge_project:
|
|
146
|
-
rubygems_version: 2.
|
|
147
|
+
rubygems_version: 2.4.6
|
|
147
148
|
signing_key:
|
|
148
149
|
specification_version: 4
|
|
149
150
|
summary: International Standard Industrial Classification
|