autoexpreso 0.0.1 → 0.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 36722af20e1bf636532c16cd946c92e1f2bb8512
4
- data.tar.gz: 516854d6d32b9f3175555f928b804c89d56cf457
3
+ metadata.gz: bb1c8bf9bb7537af5c4f8c74e409478154330062
4
+ data.tar.gz: ac65f699ae871469d6ad9596af50ab10c063a846
5
5
  SHA512:
6
- metadata.gz: 2e3006a7cc105bd579ce460c609ae80758f21738a32b194add28ca6af620424bce9da9ff61a872a489e2d472af238a2ba0a44f8ce3183b3b1eb56b35640366f9
7
- data.tar.gz: 3ca4dba551003d2f4b71553a8c1d2bd580ba15927052892693ce09bc18f5737df6496d878520c03627b0247fd3cffe52bf632cc8ae7ecb262430bdc50e0428ea
6
+ metadata.gz: b384bed968fc3d7181ffd7c83775a643aaea55e4d84714c148899397a85e644be5d4d4fc62736d5e7d86b0bc69af0d6259c2d0cf160982fcf709b1991c442282
7
+ data.tar.gz: b4d3cce16de6cc86ea834e6ac790e493a1bd835f81d365a31b6c0764b61e5b6780ac2c8533a6486ff0668ae6a954ed80abe7f397b20d2a63097518bb79c110af
@@ -0,0 +1 @@
1
+ autoexpreso
@@ -0,0 +1 @@
1
+ ruby-2.0.0-p247
@@ -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.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- autoexpreso (0.0.1)
4
+ autoexpreso (0.0.2)
5
5
  awesome_print (~> 1.1.0)
6
6
  highline (~> 1.6.19)
7
7
  mechanize (~> 2.7.1)
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## Autoexpreso [![Build Status](https://travis-ci.org/jonahoffline/autoexpreso-cli.png?branch=convert_to_gem)](https://travis-ci.org/jonahoffline/autoexpreso-cli)
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
- Commandline-Application:
24
- ```
25
- console
26
- autoexpreso --login
27
- Username: tavin_pumarejo
28
- Password: **************
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
 
@@ -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{Scrapes autoexpreso.com}
12
- spec.summary = %q{Scrapes autoexpreso.com for your account status}
13
- spec.homepage = 'https://www.github.com/jonahoffline/autoexpreso-cli'
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($/)
@@ -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 = :true
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
@@ -1,3 +1,3 @@
1
1
  module AutoExpreso
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
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.1
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-08 00:00:00.000000000 Z
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: Scrapes autoexpreso.com
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/jonahoffline/autoexpreso-cli
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: Scrapes autoexpreso.com for your account status
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: