efatura 0.2.0
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 +7 -0
- data/.gitignore +9 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +95 -0
- data/Rakefile +2 -0
- data/bin/console +11 -0
- data/bin/setup +8 -0
- data/efatura.gemspec +32 -0
- data/lib/efatura.rb +32 -0
- data/lib/efatura/client.rb +79 -0
- data/lib/efatura/configuration.rb +11 -0
- data/lib/efatura/version.rb +3 -0
- metadata +127 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 53e8a8605e0ccc4c7ed733b9a29655791400c6e9d3b218afeb42c97e55dc5a66
|
4
|
+
data.tar.gz: ee8ec12924530c73625d8387492675e0ccf619a48442c75ea028ffb144d7346c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 82df9166df5bf58e8f6ebc42856d647c4eb8680fbee5049de49659f13c561808493497dc2ea272f3ace16e313949e89a9e7261af22e350bb118ebccec31e44de
|
7
|
+
data.tar.gz: e24c003fc7b7e9489f05a7d83bef26dac7e1549704ad69d75c2c5271741fb0255c675c92a926f39402450e119d984ff579b250452ee9fb86a9b1c1c7fe228d1e
|
data/.gitignore
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at filipe.l.custodio@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2019 filipe custodio
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
# Efatura Gem
|
2
|
+
|
3
|
+
Efatura is a portuguese finance/tax website that you can visit at https://faturas.portaldasfinancas.gov.pt/
|
4
|
+
|
5
|
+
Currently Efatura doesn't provide a basic REST Api for GET Requests in order to retrieve your personal invoice information during a certain period.
|
6
|
+
|
7
|
+
So this is where Efatura Gem comes in.
|
8
|
+
|
9
|
+
Efatura website data is populated via AJAX Requests. This gem uses mechanize in order to login to efatura from the backend and intercept the jsons that are being used by AJAX.
|
10
|
+
|
11
|
+
This gem is 100% Open sourced and no sensitive information is saved whatsoever so you can use it without any concern.
|
12
|
+
|
13
|
+
Feel feel to contribute to it or report any bugs.
|
14
|
+
|
15
|
+
## Installation
|
16
|
+
|
17
|
+
Add this line to your application's Gemfile:
|
18
|
+
|
19
|
+
```ruby
|
20
|
+
gem 'efatura'
|
21
|
+
```
|
22
|
+
|
23
|
+
And then execute:
|
24
|
+
|
25
|
+
$ bundle
|
26
|
+
|
27
|
+
Or install it yourself as:
|
28
|
+
|
29
|
+
$ gem install efatura
|
30
|
+
|
31
|
+
## How to use - Step by Step
|
32
|
+
|
33
|
+
1- Configuration
|
34
|
+
|
35
|
+
Start by configurating the Gem.
|
36
|
+
|
37
|
+
For that you should do:
|
38
|
+
|
39
|
+
Efatura.configuration.nif = 'your nif'
|
40
|
+
Efatura.configuration.password = 'your password'
|
41
|
+
|
42
|
+
Be sure that you set both configurations as strings.
|
43
|
+
|
44
|
+
You can check if the values are set by doing:
|
45
|
+
|
46
|
+
Efatura.configuration
|
47
|
+
|
48
|
+
This should return an object of Efatura with nif and password set
|
49
|
+
|
50
|
+
Also this gem comes with reset options for configuration. If you wish to reset the nif and password you should do:
|
51
|
+
|
52
|
+
Efatura.reset
|
53
|
+
|
54
|
+
And that's it. if you type:
|
55
|
+
|
56
|
+
Efatura.configuration => you'll see that nif and password are set as nil again.
|
57
|
+
|
58
|
+
|
59
|
+
2- Fetching the invoices
|
60
|
+
|
61
|
+
After doing the configuration you are now able to retrieve the invoices between 2 date periods.
|
62
|
+
|
63
|
+
In order to do this type:
|
64
|
+
|
65
|
+
Efatura.invoices(from_date, to_date)
|
66
|
+
|
67
|
+
Make sure that you pass both arguments as strings and also with the correct date format. YEAR-MONTH-DATE example: '2017-01-01'
|
68
|
+
|
69
|
+
If you type the wrong format or wrong date you won't be able to retrieve any information. Also since we are sending a request to an efatura backend there's some validations that we can't avoid. So far i've detected that in order for the gem to retrieve the invoices both dates should be in the same YEAR!
|
70
|
+
|
71
|
+
This is very important as it will not work if you send
|
72
|
+
|
73
|
+
Efatura.invoices('2017-01-02', '2018-12-02')
|
74
|
+
|
75
|
+
|
76
|
+
And that's pretty much it. Hope you enjoy!
|
77
|
+
|
78
|
+
|
79
|
+
## Development
|
80
|
+
|
81
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
82
|
+
|
83
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
84
|
+
|
85
|
+
## Contributing
|
86
|
+
|
87
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/fcustodio90/efatura. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
88
|
+
|
89
|
+
## License
|
90
|
+
|
91
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
92
|
+
|
93
|
+
## Code of Conduct
|
94
|
+
|
95
|
+
Everyone interacting in the Efatura project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/fcustodio90/efatura/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'bundler/setup'
|
4
|
+
require 'efatura'
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
require "pry"
|
11
|
+
Pry.start
|
data/bin/setup
ADDED
data/efatura.gemspec
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'efatura/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'efatura'
|
8
|
+
spec.version = Efatura::VERSION
|
9
|
+
spec.authors = ['filipe custodio']
|
10
|
+
spec.email = ['filipe.l.custodio@gmail.com']
|
11
|
+
|
12
|
+
spec.summary = %q{Scraper for efatura PT website}
|
13
|
+
spec.description = %q{efatura gem uses mechanize in order to login from the backend to efatura website to retrieve invoice information}
|
14
|
+
spec.homepage = "https://github.com/fcustodio90/efatura"
|
15
|
+
spec.license = 'MIT'
|
16
|
+
|
17
|
+
# Specify which files should be added to the gem when it is released.
|
18
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
19
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
20
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
21
|
+
end
|
22
|
+
spec.bindir = 'exe'
|
23
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
|
+
spec.require_paths = ['lib']
|
25
|
+
|
26
|
+
spec.add_dependency 'mechanize'
|
27
|
+
spec.add_dependency 'rest-client'
|
28
|
+
|
29
|
+
spec.add_development_dependency 'bundler', '~> 2.0'
|
30
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
31
|
+
spec.add_development_dependency 'pry-byebug'
|
32
|
+
end
|
data/lib/efatura.rb
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
require 'efatura/version'
|
2
|
+
require 'efatura/configuration'
|
3
|
+
require 'efatura/client'
|
4
|
+
|
5
|
+
module Efatura
|
6
|
+
require 'mechanize'
|
7
|
+
require 'rest-client'
|
8
|
+
require 'date'
|
9
|
+
require 'json'
|
10
|
+
# EFATURA SCRAPER GEM. IT USES MECHANIZE TO SIMULATE A LOGIN TO EFATURA WEBSITE
|
11
|
+
# IT THEN REDIRECTS TO CONSUMIDOR PAGE IN ORDER TO FETCH THE NECESSARY COOKIES
|
12
|
+
# TO BUILD A REST-CLIENT REQUEST WITH COOKIES AS HEADERS
|
13
|
+
# EFATURA WEBSITE IS POPULATED WITH AJAX REQUESTS
|
14
|
+
# SO THE GOAL IS FETCH THE SAME JSONS THEY USE TO FEED DATA TO THE WEBSITE
|
15
|
+
|
16
|
+
def self.configuration
|
17
|
+
@configuration ||= Configuration.new
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.reset
|
21
|
+
@configuration = Configuration.new
|
22
|
+
end
|
23
|
+
|
24
|
+
def self.configure
|
25
|
+
yield(configuration)
|
26
|
+
end
|
27
|
+
|
28
|
+
def self.invoices(from_date, to_date)
|
29
|
+
client = Client.new(from_date, to_date)
|
30
|
+
Client.new(from_date, to_date).invoices if client.date_valid?(from_date, to_date)
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,79 @@
|
|
1
|
+
module Efatura
|
2
|
+
class Client
|
3
|
+
attr_accessor :from_date, :to_date
|
4
|
+
attr_accessor :cookies
|
5
|
+
|
6
|
+
LOGIN_URL = 'https://www.acesso.gov.pt/jsp/loginRedirectForm.jsp?path=painelAdquirente.action&partID=EFPF'
|
7
|
+
CONSUMIDOR_URL = 'https://faturas.portaldasfinancas.gov.pt/painelAdquirente.action'
|
8
|
+
FATURAS_URL = 'https://faturas.portaldasfinancas.gov.pt/json/obterDocumentosAdquirente.action'
|
9
|
+
|
10
|
+
def initialize(from_date, to_date)
|
11
|
+
@from_date = from_date
|
12
|
+
@to_date = to_date
|
13
|
+
end
|
14
|
+
|
15
|
+
def invoices
|
16
|
+
login
|
17
|
+
response = RestClient::Request.execute(
|
18
|
+
method: :get,
|
19
|
+
url: FATURAS_URL,
|
20
|
+
cookies: cookies,
|
21
|
+
headers: {
|
22
|
+
params: {
|
23
|
+
'dataInicioFilter' => from_date,
|
24
|
+
'dataFimFilter' => to_date,
|
25
|
+
'ambitoAquisicaoFilter' => 'TODOS'
|
26
|
+
}
|
27
|
+
}
|
28
|
+
)
|
29
|
+
JSON.parse(response)
|
30
|
+
end
|
31
|
+
|
32
|
+
def date_valid?(from_date, to_date)
|
33
|
+
# FOR A DATE TO BE VALID IT NEEDS TO PASS THE THREE CONDITIONS
|
34
|
+
date_format_valid?(from_date) && date_format_valid?(to_date) && date_same_year?(from_date, to_date)
|
35
|
+
end
|
36
|
+
|
37
|
+
def date_format_valid?(date)
|
38
|
+
# RECEIVE A DATE INSTANCE VARIABLE AND VERIFIES THE CORRECT FORMAT
|
39
|
+
format = '%Y-%m-%d'
|
40
|
+
DateTime.strptime(date, format)
|
41
|
+
true
|
42
|
+
rescue ArgumentError
|
43
|
+
false
|
44
|
+
end
|
45
|
+
|
46
|
+
def date_same_year?(from_date, to_date)
|
47
|
+
Date.parse(from_date).year == Date.parse(to_date).year
|
48
|
+
end
|
49
|
+
|
50
|
+
private
|
51
|
+
|
52
|
+
def login
|
53
|
+
# SET AN EMPTY HASH TO FEED LATER WITH AGENT COOKIE JAR
|
54
|
+
@cookies = {}
|
55
|
+
# INITIATE A NEW MECHANIZE INSTANCE
|
56
|
+
agent = Mechanize.new
|
57
|
+
# FETCH THE LOGIN URL AND ITERATES THRO LOGIN_PAGE IN ORDER TO TARGET HTML COMPONENTS
|
58
|
+
agent.get(LOGIN_URL) do |login_page|
|
59
|
+
# FETCHES THE LOGIN FORM FROM THE LOGIN PAGE
|
60
|
+
login_form = login_page.form_with(name: 'loginForm')
|
61
|
+
# SETS THE LOGIN USERNAME AKA NIF / NUMERO CONTRIBUINTE
|
62
|
+
login_form.username = Efatura.configuration.nif
|
63
|
+
# SETS THE LOGIN PASSWORD
|
64
|
+
login_form.password = Efatura.configuration.password
|
65
|
+
# SUBMITS THE FORM / LOGIN
|
66
|
+
agent.submit(login_form)
|
67
|
+
# AFTER A SUCCESSFUL LOGIN FETCH THE CONSUMIDOR PAGE IN ORDER TO RETRIEVE COOKIES
|
68
|
+
consumidor_page = agent.get(CONSUMIDOR_URL)
|
69
|
+
# ASSIGN THE CONSUMIDOR FORM TO A VARIABLE
|
70
|
+
consumidor_form = consumidor_page.form_with(name: 'form')
|
71
|
+
# SUBMIT THE FORM
|
72
|
+
agent.submit(consumidor_form)
|
73
|
+
# MAPS THE COOKIE_JAR FROM AGENT OBJECT AND FEEDS IT TO THE COOKIES HASH
|
74
|
+
# THAT WAS INITIALIZED WITH AN EMPTY HASH
|
75
|
+
@cookies = Hash[agent.cookie_jar.store.map { |i| i.cookie_value.split('=') }]
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
metadata
ADDED
@@ -0,0 +1,127 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: efatura
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- filipe custodio
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-01-05 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: mechanize
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rest-client
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '10.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '10.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: pry-byebug
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description: efatura gem uses mechanize in order to login from the backend to efatura
|
84
|
+
website to retrieve invoice information
|
85
|
+
email:
|
86
|
+
- filipe.l.custodio@gmail.com
|
87
|
+
executables: []
|
88
|
+
extensions: []
|
89
|
+
extra_rdoc_files: []
|
90
|
+
files:
|
91
|
+
- ".gitignore"
|
92
|
+
- CODE_OF_CONDUCT.md
|
93
|
+
- Gemfile
|
94
|
+
- LICENSE.txt
|
95
|
+
- README.md
|
96
|
+
- Rakefile
|
97
|
+
- bin/console
|
98
|
+
- bin/setup
|
99
|
+
- efatura.gemspec
|
100
|
+
- lib/efatura.rb
|
101
|
+
- lib/efatura/client.rb
|
102
|
+
- lib/efatura/configuration.rb
|
103
|
+
- lib/efatura/version.rb
|
104
|
+
homepage: https://github.com/fcustodio90/efatura
|
105
|
+
licenses:
|
106
|
+
- MIT
|
107
|
+
metadata: {}
|
108
|
+
post_install_message:
|
109
|
+
rdoc_options: []
|
110
|
+
require_paths:
|
111
|
+
- lib
|
112
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0'
|
117
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
118
|
+
requirements:
|
119
|
+
- - ">="
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '0'
|
122
|
+
requirements: []
|
123
|
+
rubygems_version: 3.0.2
|
124
|
+
signing_key:
|
125
|
+
specification_version: 4
|
126
|
+
summary: Scraper for efatura PT website
|
127
|
+
test_files: []
|