autoexpreso 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/Changelog.md +19 -0
- data/Gemfile.lock +1 -1
- data/README.md +12 -7
- data/autoexpreso.gemspec +4 -4
- data/lib/autoexpreso/cli.rb +2 -3
- data/lib/autoexpreso/version.rb +1 -1
- metadata +9 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bb1c8bf9bb7537af5c4f8c74e409478154330062
|
4
|
+
data.tar.gz: ac65f699ae871469d6ad9596af50ab10c063a846
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b384bed968fc3d7181ffd7c83775a643aaea55e4d84714c148899397a85e644be5d4d4fc62736d5e7d86b0bc69af0d6259c2d0cf160982fcf709b1991c442282
|
7
|
+
data.tar.gz: b4d3cce16de6cc86ea834e6ac790e493a1bd835f81d365a31b6c0764b61e5b6780ac2c8533a6486ff0668ae6a954ed80abe7f397b20d2a63097518bb79c110af
|
data/.ruby-gemset
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
autoexpreso
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby-2.0.0-p247
|
data/Changelog.md
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# AutoExpreso Changelog
|
2
|
+
|
3
|
+
## 0.0.2
|
4
|
+
|
5
|
+
Released Aug 9, 2013 ([0.0.2](https://github.com/riveralabs/autoexpreso-cli/tree/v0.0.2)).
|
6
|
+
|
7
|
+
* Fix issue with command-line application not showing help when called without arguments.
|
8
|
+
* Update documentation in README.
|
9
|
+
* Add Changelog.
|
10
|
+
* Bump release version.
|
11
|
+
* Update gemspec's author email, homepage, description and summary.
|
12
|
+
* Add BadgeFury and CodeClimate badges to README.
|
13
|
+
* Update Travis-CI badge in README.
|
14
|
+
|
15
|
+
## 0.0.1
|
16
|
+
|
17
|
+
Released Aug 8, 2013 ([0.0.1](https://github.com/riveralabs/autoexpreso-cli/tree/v0.0.1)).
|
18
|
+
|
19
|
+
* Initial Release.
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
## Autoexpreso [![Build Status](https://travis-ci.org/
|
1
|
+
## Autoexpreso [![Build Status](https://travis-ci.org/riveralabs/autoexpreso-cli.png?branch=master)](https://travis-ci.org/riveralabs/autoexpreso-cli) [![Gem Version](https://badge.fury.io/rb/autoexpreso.png)](http://badge.fury.io/rb/autoexpreso) [![Code Climate](https://codeclimate.com/github/riveralabs/autoexpreso-cli.png)](https://codeclimate.com/github/riveralabs/autoexpreso-cli)
|
2
2
|
A Ruby Gem and Command-Line App for getting your account status from autoexpreso.com
|
3
3
|
|
4
4
|
### Features
|
@@ -20,12 +20,16 @@ ae = AutoExpreso::Client.new
|
|
20
20
|
ae.login('username', 'password')
|
21
21
|
```
|
22
22
|
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
23
|
+
In your terminal:
|
24
|
+
|
25
|
+
$ autoexpreso --login
|
26
|
+
Username: tavin_pumarejo
|
27
|
+
Password: **************
|
28
|
+
|
29
|
+
### Command-Line Options
|
30
|
+
|
31
|
+
* -l, --login - Log into AutoExpreso
|
32
|
+
* -h, --help - show help message
|
29
33
|
|
30
34
|
|
31
35
|
## Authors
|
@@ -37,6 +41,7 @@ Password: **************
|
|
37
41
|
* Persistence
|
38
42
|
* Examples for integrating with Ruby On Rails / Sinatra
|
39
43
|
* JSON Formatter
|
44
|
+
* Better test coverage
|
40
45
|
|
41
46
|
## Contributing
|
42
47
|
|
data/autoexpreso.gemspec
CHANGED
@@ -7,10 +7,10 @@ Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = 'autoexpreso'
|
8
8
|
spec.version = AutoExpreso::VERSION
|
9
9
|
spec.authors = ['Axel Rivera','Jonah Ruiz']
|
10
|
-
spec.email = ['jonah@pixelhipsters.com']
|
11
|
-
spec.description = %q{
|
12
|
-
spec.summary = %q{
|
13
|
-
spec.homepage = 'https://www.github.com/
|
10
|
+
spec.email = ['axel@riveralabs.com','jonah@pixelhipsters.com']
|
11
|
+
spec.description = %q{Scrape autoexpreso.com for your account status}
|
12
|
+
spec.summary = %q{Scrape autoexpreso.com for your account status and last transactions.}
|
13
|
+
spec.homepage = 'https://www.github.com/riveralabs/autoexpreso-cli'
|
14
14
|
spec.license = 'MIT'
|
15
15
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
data/lib/autoexpreso/cli.rb
CHANGED
@@ -2,7 +2,6 @@ require 'optparse'
|
|
2
2
|
require 'highline/import'
|
3
3
|
|
4
4
|
module AutoExpreso
|
5
|
-
# @author Jonah Ruiz <jonah@pixelhipsters.com>
|
6
5
|
# A Simple class for the executable version of the gem
|
7
6
|
class CLI
|
8
7
|
|
@@ -24,7 +23,7 @@ Options:
|
|
24
23
|
MSG
|
25
24
|
opts.set_program_name 'AutoExpreso'
|
26
25
|
opts.on_head('-l', '--login', 'Log into AutoExpreso') do
|
27
|
-
@login =
|
26
|
+
@login = true
|
28
27
|
end
|
29
28
|
|
30
29
|
opts.on_tail('-v', '--version', 'display the version of AutoExpreso and exit') do
|
@@ -44,7 +43,7 @@ MSG
|
|
44
43
|
opts = OptionParser.new(&method(:set_options))
|
45
44
|
opts.parse!(@args)
|
46
45
|
return login if @login
|
47
|
-
opts.help
|
46
|
+
puts opts.help
|
48
47
|
end
|
49
48
|
|
50
49
|
def login
|
data/lib/autoexpreso/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autoexpreso
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Axel Rivera
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-08-
|
12
|
+
date: 2013-08-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: awesome_print
|
@@ -95,8 +95,9 @@ dependencies:
|
|
95
95
|
- - ~>
|
96
96
|
- !ruby/object:Gem::Version
|
97
97
|
version: 2.14.0
|
98
|
-
description:
|
98
|
+
description: Scrape autoexpreso.com for your account status
|
99
99
|
email:
|
100
|
+
- axel@riveralabs.com
|
100
101
|
- jonah@pixelhipsters.com
|
101
102
|
executables:
|
102
103
|
- autoexpreso
|
@@ -105,7 +106,10 @@ extra_rdoc_files: []
|
|
105
106
|
files:
|
106
107
|
- .gitignore
|
107
108
|
- .rspec
|
109
|
+
- .ruby-gemset
|
110
|
+
- .ruby-version
|
108
111
|
- .travis.yml
|
112
|
+
- Changelog.md
|
109
113
|
- Gemfile
|
110
114
|
- Gemfile.lock
|
111
115
|
- LICENSE
|
@@ -121,7 +125,7 @@ files:
|
|
121
125
|
- spec/autoexpreso_spec.rb
|
122
126
|
- spec/data_utils_spec.rb
|
123
127
|
- spec/spec_helper.rb
|
124
|
-
homepage: https://www.github.com/
|
128
|
+
homepage: https://www.github.com/riveralabs/autoexpreso-cli
|
125
129
|
licenses:
|
126
130
|
- MIT
|
127
131
|
metadata: {}
|
@@ -144,9 +148,8 @@ rubyforge_project:
|
|
144
148
|
rubygems_version: 2.0.3
|
145
149
|
signing_key:
|
146
150
|
specification_version: 4
|
147
|
-
summary:
|
151
|
+
summary: Scrape autoexpreso.com for your account status and last transactions.
|
148
152
|
test_files:
|
149
153
|
- spec/autoexpreso_spec.rb
|
150
154
|
- spec/data_utils_spec.rb
|
151
155
|
- spec/spec_helper.rb
|
152
|
-
has_rdoc:
|