findjobs 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d4476f5125af8474b17b4081f82478078ac0511d
4
- data.tar.gz: 8488cce964c0824c718036001fc4e56dc3585a51
3
+ metadata.gz: 2cf1aa1e22ad5b62a6b2034e118ffacf8f54f9c5
4
+ data.tar.gz: c9ff066dc615f8c045baed43d69a280b47a95553
5
5
  SHA512:
6
- metadata.gz: 9676d9847dce7d8a8681915f8aa55160117890784a8cfc3f7fd241a4c34d633f17457f7c33f6ad33a98739592a53146f10d6375752c32aa0abe0f090be8a987d
7
- data.tar.gz: 8e09939b3d4272ebf099b05fa1677692a0eef7f61f88f6a6c6ad58a2f558c3019e5517b739e7e8dd018af62f5866c6b745fb5b89cdc2d5611b7b24c244dc2beb
6
+ metadata.gz: 2fda03f90f791d38416451b916a6abfb68544c02c740ef0b1d8f23d64754ef05b42d7624a6109711d55415ef7299a5b06894878e1b1d1930e4167f919f931f8c
7
+ data.tar.gz: 0e6b570dfdf382b35369f2852dd00795078302934372875839d9400d3014a1bb559af339d4e0c661ab334f6c617f8e9be77de5b7ccc18f50c63b58ea45d94f40
data/.travis.yml CHANGED
@@ -1,3 +1,5 @@
1
1
  language: ruby
2
2
  rvm:
3
3
  - 2.2.1
4
+ before_install:
5
+ - gem install bundler
data/README.md CHANGED
@@ -1,22 +1,23 @@
1
- # Findjobs
1
+ # findjobs
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/findjobs`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ [![Build Status](https://travis-ci.org/atipugin/findjobs.svg)](https://travis-ci.org/atipugin/findjobs)
4
+ [![Code Climate](https://codeclimate.com/github/atipugin/findjobs/badges/gpa.svg)](https://codeclimate.com/github/atipugin/findjobs)
5
+ [![Gem Version](https://badge.fury.io/rb/findjobs.svg)](http://badge.fury.io/rb/findjobs)
4
6
 
5
- TODO: Delete this and the text above, and describe your gem
7
+ Simple CLI tool to help you find your next job. Based on RSS feeds of variuos job boards (GitHub, StackOverflow etc).
6
8
 
7
- ## Installation
8
-
9
- Add this line to your application's Gemfile:
9
+ ![](https://dl.dropboxusercontent.com/u/5813290/github/findjobs/preview.gif)
10
10
 
11
- ```ruby
12
- gem 'findjobs'
13
- ```
11
+ List of currently supported sources:
12
+ - [GitHub](https://jobs.github.com/)
13
+ - [StackOverflow](https://careers.stackoverflow.com/)
14
+ - [Authentic Jobs](https://authenticjobs.com/)
14
15
 
15
- And then execute:
16
+ Want more? [Let me know!](https://github.com/atipugin/findjobs/issues/new)
16
17
 
17
- $ bundle
18
+ ## Installation
18
19
 
19
- Or install it yourself as:
20
+ Just add water (i.e. install the gem):
20
21
 
21
22
  $ gem install findjobs
22
23
 
@@ -24,15 +25,9 @@ Or install it yourself as:
24
25
 
25
26
  TODO: Write usage instructions here
26
27
 
27
- ## Development
28
-
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
30
-
31
- 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` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
-
33
28
  ## Contributing
34
29
 
35
- 1. Fork it ( https://github.com/[my-github-username]/findjobs/fork )
30
+ 1. Fork it ( https://github.com/atipugin/findjobs/fork )
36
31
  2. Create your feature branch (`git checkout -b my-new-feature`)
37
32
  3. Commit your changes (`git commit -am 'Add some feature'`)
38
33
  4. Push to the branch (`git push origin my-new-feature`)
data/lib/findjobs/cli.rb CHANGED
@@ -49,7 +49,7 @@ module Findjobs
49
49
  case date
50
50
  when Date.today then 'Today'
51
51
  when Date.today - 1 then 'Yesterday'
52
- else date.strftime('%b %m, %Y')
52
+ else date.strftime('%b %d, %Y')
53
53
  end
54
54
  end
55
55
  end
@@ -1,3 +1,3 @@
1
1
  module Findjobs
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: findjobs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Tipugin