Skip to content

Commit

Permalink
Merge branch 'v2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
beefo committed Jun 14, 2016
2 parents 98eee59 + 5d8e0dd commit 689941f
Show file tree
Hide file tree
Showing 26 changed files with 3,039 additions and 4,164 deletions.
6 changes: 6 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"presets": [
"es2015"
],
"plugins": ["transform-object-assign"]
}
3 changes: 3 additions & 0 deletions .bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory": "bower_components"
}
25 changes: 25 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true


[*]

# change these settings to your own preference
indent_style = space
indent_size = 2

# we recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[{package,bower}.json]
indent_style = space
indent_size = 2
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules
dist
.tmp
.sass-cache
bower_components
test/bower_components
3 changes: 3 additions & 0 deletions .yo-rc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"generator-mocha": {}
}
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,23 @@
# addin-fuel-transaction-import
Addin to read fuel card transactions from a file and import to MyGeotab database
An add-in to read fuel card transactions from a file and import to MyGeotab database

### Installation
Add the configuration below to the to the system setting -> add-ins section of the MyGeotab database
```
{
"name": "Fuel Transaction Import (by Geotab)",
"supportEmail": "support@geotab.com",
"version": "2.0.0",
"items": [{
"icon": "https://4f3465123da62bdd31d958f0ad36d9b3485a550d.googledrive.com/host/0B2gIwKD5rJDcUGZLRy12X0J5dG8/images/icon.png",
"path": "EngineMaintenanceLink/",
"menuName": {
"en": "Fuel Transaction Import"
},
"url": "https://4f3465123da62bdd31d958f0ad36d9b3485a550d.googledrive.com/host/0B2gIwKD5rJDcUGZLRy12X0J5dG8/importFuelTransactions.html"
}]
}
```

### Contributing
If there's a fuel card provider file you would like to add a parser for, please do! We welcome pull requests.
Loading

0 comments on commit 689941f

Please sign in to comment.