findjobs 0.1.1 → 0.1.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: 2cf1aa1e22ad5b62a6b2034e118ffacf8f54f9c5
4
- data.tar.gz: c9ff066dc615f8c045baed43d69a280b47a95553
3
+ metadata.gz: 5765e68f14c96b60d331ba1b81c02f2cfe7b6708
4
+ data.tar.gz: 7e1cfa91b890a208a063e09a8dbef35dcb793325
5
5
  SHA512:
6
- metadata.gz: 2fda03f90f791d38416451b916a6abfb68544c02c740ef0b1d8f23d64754ef05b42d7624a6109711d55415ef7299a5b06894878e1b1d1930e4167f919f931f8c
7
- data.tar.gz: 0e6b570dfdf382b35369f2852dd00795078302934372875839d9400d3014a1bb559af339d4e0c661ab334f6c617f8e9be77de5b7ccc18f50c63b58ea45d94f40
6
+ metadata.gz: ae9a9b7c6d3e9a2e7823b9201af29352af166c4a6a38cf2c10fbe0b4913fa403c5d61a08f901c4ff922340ba923a1a7fa3f4c88a8e4d90188ebefa0482b61d5b
7
+ data.tar.gz: 6fa322a1a5a0f4418996fbb9502f6920f047c81e2585f7ea3f3653e4aef73e396a4841394eda767cb9a440aadb57a9bdf2ec7a64abe39d047c8b3fb86cc0acbf
data/README.md CHANGED
@@ -4,9 +4,9 @@
4
4
  [![Code Climate](https://codeclimate.com/github/atipugin/findjobs/badges/gpa.svg)](https://codeclimate.com/github/atipugin/findjobs)
5
5
  [![Gem Version](https://badge.fury.io/rb/findjobs.svg)](http://badge.fury.io/rb/findjobs)
6
6
 
7
- Simple CLI tool to help you find your next job. Based on RSS feeds of variuos job boards (GitHub, StackOverflow etc).
7
+ Simple CLI tool to help you find your next job. Based on RSS feeds of various job boards (GitHub, StackOverflow etc).
8
8
 
9
- ![](https://dl.dropboxusercontent.com/u/5813290/github/findjobs/preview.gif)
9
+ ![](https://dl.dropboxusercontent.com/u/5813290/github/findjobs/example.gif)
10
10
 
11
11
  List of currently supported sources:
12
12
  - [GitHub](https://jobs.github.com/)
@@ -32,4 +32,6 @@ Gem::Specification.new do |spec|
32
32
  spec.add_dependency 'feedjira', '~> 2.0.0'
33
33
  spec.add_dependency 'virtus', '~> 1.0.5'
34
34
  spec.add_dependency 'colorize', '~> 0.7.7'
35
+ spec.add_dependency 'celluloid', '~> 0.17.1.2'
36
+ spec.add_dependency 'celluloid-pmap', '~> 0.2.1'
35
37
  end
@@ -3,6 +3,8 @@ require 'commander'
3
3
  require 'feedjira'
4
4
  require 'virtus'
5
5
  require 'colorize'
6
+ require 'celluloid/current'
7
+ require 'celluloid/pmap'
6
8
 
7
9
  require 'findjobs/version'
8
10
  require 'findjobs/job'
@@ -20,7 +20,6 @@ module Findjobs
20
20
  .by_date
21
21
 
22
22
  if results.any?
23
- enable_paging
24
23
  results.each { |d, j| print_date(d, j) }
25
24
  else
26
25
  say %(No "#{args[0]}" jobs found.)
@@ -22,7 +22,7 @@ module Findjobs
22
22
 
23
23
  def find
24
24
  Findjobs::Providers::AVAILABLE_PROVIDERS
25
- .map { |k| k.new(term, options[:location]).search }
25
+ .pmap { |k| k.new(term, options[:location]).search }
26
26
  .flatten
27
27
  .select { |j| j.date <= Date.today }
28
28
  end
@@ -1,3 +1,3 @@
1
1
  module Findjobs
2
- VERSION = '0.1.1'
2
+ VERSION = '0.1.2'
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.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Tipugin
@@ -206,6 +206,34 @@ dependencies:
206
206
  - - "~>"
207
207
  - !ruby/object:Gem::Version
208
208
  version: 0.7.7
209
+ - !ruby/object:Gem::Dependency
210
+ name: celluloid
211
+ requirement: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - "~>"
214
+ - !ruby/object:Gem::Version
215
+ version: 0.17.1.2
216
+ type: :runtime
217
+ prerelease: false
218
+ version_requirements: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - "~>"
221
+ - !ruby/object:Gem::Version
222
+ version: 0.17.1.2
223
+ - !ruby/object:Gem::Dependency
224
+ name: celluloid-pmap
225
+ requirement: !ruby/object:Gem::Requirement
226
+ requirements:
227
+ - - "~>"
228
+ - !ruby/object:Gem::Version
229
+ version: 0.2.1
230
+ type: :runtime
231
+ prerelease: false
232
+ version_requirements: !ruby/object:Gem::Requirement
233
+ requirements:
234
+ - - "~>"
235
+ - !ruby/object:Gem::Version
236
+ version: 0.2.1
209
237
  description:
210
238
  email:
211
239
  - atipugin@gmail.com