simplyhired 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 14620c44a1832c2b8e67146a06521eddba963e27
4
+ data.tar.gz: 52217078a91fd6d30b818ab829bd0c31ad6d7976
5
+ SHA512:
6
+ metadata.gz: 50f560358a105bdb5856734dabad3ee42a348483e508230199b43f4621b0314b501f7bf6176822a565d873fbf941cb89f1b42e78ed5efa39a6d9964dcade0111
7
+ data.tar.gz: 92999ce30cef88eb6c108ebd819a4f03f5a7846bf0f0fcbe4ecd381e9a5750ef5e9edcaaea320ac389f08a51d241b787a1f9f4fff27f15141cf9095efc831e32
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in simplyhired.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 murty korada
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,53 @@
1
+ # Simplyhired
2
+
3
+ Wrapper for Simplyhired XML API.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'simplyhired'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install simplyhired
18
+
19
+ ## Usage
20
+
21
+ First you need to register with simplyhired as a publisher.
22
+
23
+ create a config file and define these parameters:
24
+
25
+ in config/initializers/simplyhired.rb
26
+
27
+ Simplyhired.configure do |config|
28
+ config.pshid = "your pshid here"
29
+ config.jbd = "your jbd here"
30
+ end
31
+
32
+ Get jobs:
33
+
34
+ sh = Simplyhired::Client.new(ip_address) # "192.168.1.1"
35
+ jobs = sh.search_jobs(["ruby", "ajax"], nil, "New York", 'NY', distance: 15, days: 30)
36
+
37
+ search_jobs parameters:
38
+
39
+ keywords(array), zipcode, city, state, options
40
+
41
+ available options:
42
+
43
+ distance: in miles
44
+ days: specify 0 for posted anytime
45
+ ws: number of jobs per page
46
+ page: page number
47
+ query_type: :OR | :AND | :PHRASE
48
+
49
+ 1. Fork it ( http://github.com/murtyk/simplyhired/fork )
50
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
51
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
52
+ 4. Push to the branch (`git push origin my-new-feature`)
53
+ 5. Create new Pull Request
@@ -0,0 +1,9 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new do |test|
5
+ test.libs << 'libs' << 'test'
6
+ test.ruby_opts << '-rubygems'
7
+ test.pattern = 'test/**/*_test.rb'
8
+ test.verbose = true
9
+ end
@@ -0,0 +1,8 @@
1
+ require "simplyhired/version"
2
+ require "simplyhired/configuration"
3
+ require "simplyhired/client"
4
+
5
+ module Simplyhired
6
+ # Your code goes here...
7
+ extend Configuration
8
+ end
@@ -0,0 +1,139 @@
1
+ require 'open-uri'
2
+ require "ox"
3
+ require 'simplyhired/job'
4
+ module Simplyhired
5
+ class Client
6
+ attr_reader :query_type, :location, :jobs, :current_page, :page_size, :error, :keywords, :zip, :city, :state, :distance, :days
7
+
8
+ def initialize(ip)
9
+ config_values = Simplyhired.config_values
10
+ @pshid = config_values[:pshid]
11
+ @jbd = config_values[:jbd]
12
+ @credentials = "?pshid=#{@pshid}&ssty=2&cflg=r&jbd=#{@jbd}&clip=#{ip}"
13
+ end
14
+
15
+ def search_jobs(kw, z, c, s, options = {})
16
+ unless @pshid
17
+ @error = 'define pshid in a configuration file'
18
+ return nil
19
+ end
20
+ unless @jbd
21
+ @error = 'define jbd in a configuration file'
22
+ return nil
23
+ end
24
+ @query_type = options[:query_type] || :OR
25
+ @zip = z
26
+ @city = c && c.split.join('+')
27
+ @state = s && s.split.join('+')
28
+ @page_size = options[:ws] || 25
29
+ @distance = options[:distance] || 10
30
+ @days = options[:days] || 0
31
+
32
+ @keywords = kw
33
+
34
+ @location = (@zip && !@zip.empty?) ? @zip : "#{@city},#{@state}"
35
+ @current_page = options[:page] || 1
36
+
37
+ @uri = ""
38
+ @jobs = nil
39
+ search @current_page
40
+ @jobs
41
+ end
42
+ def next
43
+ if @current_page * @page_size < @accessible_count.to_i
44
+ @current_page += 1
45
+ search @current_page
46
+ else
47
+ @jobs = nil
48
+ end
49
+ @jobs
50
+ end
51
+ def total_jobs_found
52
+ @accessible_count || 0
53
+ end
54
+
55
+
56
+ private
57
+
58
+ def search(p = 1)
59
+ sh_prefix = 'http://api.simplyhired.com/a/jobs-api/xml-v2/q-'
60
+
61
+ case @query_type
62
+ when :AND
63
+ kw = @keywords.join('+AND+')
64
+ when :PHRASE
65
+ kw = '"' + @keywords.join('+') + '"'
66
+ else
67
+ kw = @keywords.join('+')
68
+ end
69
+
70
+
71
+ qd = @days > 0 ? "/fdb-#{@days}" : ""
72
+
73
+ @uri = sh_prefix + kw + "/l-#{@location}" + "/mi-#{@distance}" + qd +"/ws-#{@page_size}" + "/pn-#{p}" + @credentials
74
+
75
+ @uri = URI.escape @uri
76
+
77
+ # puts @uri
78
+
79
+ handler = Handler.new
80
+ begin
81
+ io = open @uri
82
+ Ox.sax_parse(handler, io)
83
+ if handler.error
84
+ @jobs = nil
85
+ @error = handler.error
86
+ else
87
+ @jobs = handler.jobs
88
+ @total_count = handler.total
89
+ @accessible_count = handler.accessible_count.to_i
90
+ end
91
+ rescue Exception => e
92
+ @error = "SimlyHired Error - " + e.to_s
93
+ @jobs = nil
94
+ @total_count = 0
95
+ @accessible_count = 0
96
+ end
97
+ end
98
+
99
+ class Handler < Ox::Sax
100
+ JOB_ATTR = [:tr, :tv, :jt, :src, :cn, :e, :loc, :dp]
101
+ JOB_XML_ATTR_MAP = {jt: :title, src: :source, cn: :company, e: :excerpt, loc: :location, dp: :date_posted}
102
+
103
+ attr_reader :jobs, :total, :accessible_count, :error
104
+
105
+ def start_element(name)
106
+ @job = {} if name == :r
107
+ @jobs = Array.new if @jobs.nil?
108
+ @current_node = name
109
+ end
110
+
111
+ def value(val)
112
+ return unless JOB_ATTR.include?(@current_node)
113
+ if @current_node == :tr
114
+ @total = val.as_s
115
+ elsif @current_node == :tv
116
+ @accessible_count = val.as_s
117
+ else
118
+ @job[JOB_XML_ATTR_MAP[@current_node]] = val.as_s
119
+ end
120
+ end
121
+
122
+ def attr(name, val)
123
+ if @current_node == :error
124
+ @error = val if name == :type
125
+ return
126
+ end
127
+ return unless JOB_ATTR.include?(@current_node)
128
+ @job["#{JOB_XML_ATTR_MAP[@current_node]}:#{name}"] = val
129
+ end
130
+
131
+ def end_element(name)
132
+ return unless name == :r
133
+ j = Job.new @job
134
+ @jobs.push j
135
+ end
136
+ end
137
+
138
+ end
139
+ end
@@ -0,0 +1,27 @@
1
+ module Simplyhired
2
+ module Configuration
3
+ VALID_CONFIG_KEYS = [:pshid, :jbd]
4
+
5
+ # Build accessor methods for every config option
6
+ attr_accessor *VALID_CONFIG_KEYS
7
+
8
+ # Make sure we have the default values set when we get 'extended'
9
+ def self.extended(base)
10
+ base.reset
11
+ end
12
+
13
+ def reset
14
+ self.pshid = nil
15
+ self.jbd = nil
16
+ end
17
+
18
+ def configure
19
+ yield self
20
+ end
21
+
22
+ def config_values
23
+ Hash[ *VALID_CONFIG_KEYS.map { |key| [key, send(key)] }.flatten ]
24
+ end
25
+
26
+ end
27
+ end
@@ -0,0 +1,21 @@
1
+ module Simplyhired
2
+ class Job
3
+ attr_reader :title, :company, :date_posted, :excerpt, :location, :source, :details_url, :details
4
+ def initialize(jhash)
5
+ encoding_options = {
6
+ invalid: :replace, # Replace invalid byte sequences
7
+ undef: :replace, # Replace anything not defined in ASCII
8
+ replace: '', # Use a blank for those replacements
9
+ universal_newline: true # Always break lines with \n
10
+ }
11
+
12
+ @title = jhash[:title] && jhash[:title].encode(Encoding.find('ASCII'), encoding_options).gsub("&amp;", "&")
13
+ @excerpt = jhash[:excerpt]
14
+ @location = jhash[:location]
15
+ @company = jhash[:company] && jhash[:company].encode(Encoding.find('ASCII'), encoding_options).gsub("&amp;", "&")
16
+ @source = jhash[:source]
17
+ @details_url = jhash["source:url"]
18
+ @date_posted = jhash[:date_posted]
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,3 @@
1
+ module Simplyhired
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'simplyhired/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "simplyhired"
8
+ spec.version = Simplyhired::VERSION
9
+ spec.authors = ["murty korada"]
10
+ spec.email = [""]
11
+ spec.summary = %q{Wrapper for Simplyhired xml api.}
12
+ spec.description = %q{Wrapper for Simplyhired xml api.}
13
+ spec.homepage = "https://github.com/murtyk/simplyhired"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.5"
22
+ spec.add_development_dependency "rake", "~> 10.1"
23
+ spec.add_development_dependency "minitest", "~> 4.7"
24
+
25
+ spec.add_dependency "ox", "~> 2.0"
26
+
27
+ end
@@ -0,0 +1,4 @@
1
+ require 'simplyhired'
2
+ require 'minitest/spec'
3
+ require 'minitest/autorun'
4
+ require 'webmock/minitest'
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!DOCTYPE shrs SYSTEM "http://api.simplyhired.com/c/jobs-api/html/sr2.dtd">
3
+ <shrs>
4
+ <rq url="http://api.simplyhired.com/a/jobs-api/xml_v2/q-%22Rails+Ajax%22/l-New+York%2CNY/mi-10/fdb-30/pn-1/ws-25">
5
+ <t>"rails Ajax" Jobs - New York, NY</t>
6
+ <dt>2014-01-15T15:57:44Z</dt>
7
+ <si>0</si>
8
+ <rpd>25</rpd>
9
+ <tr>1</tr>
10
+ <tv>1</tv>
11
+ <em url=""/>
12
+ <h>
13
+ <kw pos="1"/>
14
+ </h>
15
+ </rq>
16
+ <rs>
17
+ <r>
18
+ <jt>Digital Platform Architect (Tech Director)</jt>
19
+ <cn url="">Star Solutions A Linium Company</cn>
20
+ <src url="http://api.simplyhired.com/a/job-details/view/jobkey-14828.job1408210/rid-hmnjbdsfffieuodhratangugdajiinvl/cjp-0/hits-1">BullhornReach.com</src>
21
+ <ty>organic</ty>
22
+ <loc cty="New York" st="NY" postal="" county="" region="" country="US">New York, NY</loc>
23
+ <ls>2014-01-04T03:13:53Z</ls>
24
+ <dp>2014-01-04T03:13:53Z</dp>
25
+ <e>Position Title: Digital – Platform Architect (Tech Director) Location: New York/Headquarters Job Code: 1292 About Capco Capco, a global business and technology consultancy dedicated solely to the financial services industry. Our...&gt;</e>
26
+ </r>
27
+ </rs>
28
+ <pjl>
29
+ </pjl>
30
+ </shrs>
@@ -0,0 +1,282 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!DOCTYPE shrs SYSTEM "http://api.simplyhired.com/c/jobs-api/html/sr2.dtd">
3
+ <shrs>
4
+ <rq url="http://api.simplyhired.com/a/jobs-api/xml_v2/q-Rails+Ajax/l-New+York%2CNY/mi-10/fdb-30/pn-1/ws-25">
5
+ <t>Rails Ajax Jobs - New York, NY</t>
6
+ <dt>2014-01-15T16:43:51Z</dt>
7
+ <si>0</si>
8
+ <rpd>25</rpd>
9
+ <tr>83</tr>
10
+ <tv>70</tv>
11
+ <em url=""/>
12
+ <h>
13
+ <kw pos="1"/>
14
+ </h>
15
+ </rq>
16
+ <rs>
17
+ <r>
18
+ <jt>Senior Web Developer (Ruby/Rails/Javascript)</jt>
19
+ <cn url="">Namtek</cn>
20
+ <src url="http://api.simplyhired.com/a/job-details/view/cparm-cF9pZD00OTgyMSZ6b25lPTYmaXA9JmNvdW50PTUwJnN0YW1wPTIwMTQtMDEtMTUgMDg6NDM6NTEmY291bnRyeT11cyZwdWJsaXNoZXJfY2hhbm5lbF9pZHM9JmFfaWQ9NDkyNDcmY19pZD0zMDE0MiZjcGM9MC4xNSZwb3M9MSZoYXNoPWQ1YzQ4M2RjMTFjYzZiODBkMDY1NjIwMzM5ZWYxZGRi%3B9795404f7f1c0852f1e17ccdc9997c94/jobkey-25070.5717646/rid-ggfwwrrhjgyubznraudgielukgozzhdw/pub_id-49821/cjp-0/hits-83">Dice</src>
21
+ <ty>sponsored</ty>
22
+ <loc cty="New York" st="NY" postal="10013" county="Manhattan" region="" country="US">New York, NY</loc>
23
+ <ls>2014-01-15T06:05:29Z</ls>
24
+ <dp>2014-01-14T01:06:41Z</dp>
25
+ <e>Oriented), jQuery, and AJAX Experience developing Ruby on Rails applications (or Pythondjango) Entrepreneurial spirit ... including HTML5, CSS3, Javascript (Object Oriented), jQuery, and AJAX, experience developing Ruby on Rails...&gt;</e>
26
+ </r>
27
+ <r>
28
+ <jt>Senior Software Engineer - Ruby on Rails</jt>
29
+ <cn url="">Secondmarket</cn>
30
+ <src url="http://api.simplyhired.com/a/job-details/view/cparm-cF9pZD00OTgyMSZ6b25lPTYmaXA9JmNvdW50PTUwJnN0YW1wPTIwMTQtMDEtMTUgMDg6NDM6NTEmY291bnRyeT11cyZwdWJsaXNoZXJfY2hhbm5lbF9pZHM9JmFfaWQ9MjA1MCZjX2lkPTI2OTE5JmNwYz0wLjE0JnBvcz0yJmhhc2g9OTgxNTE0MzI1MmFhMzhmMDdjM2FmYWE0NTg5MzVkMzE%3D%3B03aa7c59e0ee778f44f203a9c7e008cf/jobkey-5850.6877744/rid-ggfwwrrhjgyubznraudgielukgozzhdw/pub_id-49821/cjp-1/hits-83">TheLadders.com</src>
31
+ <ty>sponsored</ty>
32
+ <loc cty="New York" st="NY" postal="" county="" region="" country="US">New York, NY</loc>
33
+ <ls>2014-01-12T13:09:25Z</ls>
34
+ <dp>2014-01-06T05:07:41Z</dp>
35
+ <e>is looking for a highly motivated and talented Senior Rails Software Engineer to join our Technology Team in ... Experience building large web applications with Ruby on Rails. Extensively coded with MVC frameworks Strong knowledge of...&gt;</e>
36
+ </r>
37
+ <r>
38
+ <jt>Senior Software Engineer (Java Rails)</jt>
39
+ <cn url="">Capital Markets</cn>
40
+ <src url="http://api.simplyhired.com/a/job-details/view/cparm-cF9pZD00OTgyMSZ6b25lPTYmaXA9JmNvdW50PTUwJnN0YW1wPTIwMTQtMDEtMTUgMDg6NDM6NTEmY291bnRyeT11cyZwdWJsaXNoZXJfY2hhbm5lbF9pZHM9JmFfaWQ9MjAyOSZjX2lkPTI1NzE1JmNwYz0wLjEmcG9zPTMmaGFzaD02YTBjMTg4NTQ3OGE1ODQ1YzM2ZmI1MDY4NzA0MTI0Ng%3D%3D%3B6904ab943cccf62f63edafeb3f1cbcc0/jobkey-5296.200956967/rid-ggfwwrrhjgyubznraudgielukgozzhdw/pub_id-49821/cjp-2/hits-83">Job.com</src>
41
+ <ty>sponsored</ty>
42
+ <loc cty="New York" st="NY" postal="10003" county="Manhattan" region="" country="US">New York, NY</loc>
43
+ <ls>2014-01-12T14:05:46Z</ls>
44
+ <dp>2014-01-12T14:05:46Z</dp>
45
+ <e>server systems. 2 years coding experience with Ruby on Rails. 2 years coding experience with Java. Experience with ... Experience with Web related technologies like Javascript, HTML 4/5, AJAX, JSON, Node.js...&gt;</e>
46
+ </r>
47
+ <r>
48
+ <jt>Ruby on Rails Developer</jt>
49
+ <cn url="">Smart Ims</cn>
50
+ <src url="http://api.simplyhired.com/a/job-details/view/cparm-cF9pZD00OTgyMSZ6b25lPTYmaXA9JmNvdW50PTUwJnN0YW1wPTIwMTQtMDEtMTUgMDg6NDM6NTEmY291bnRyeT11cyZwdWJsaXNoZXJfY2hhbm5lbF9pZHM9JmFfaWQ9NDQ0NDcmY19pZD0yMjk2OCZjcGM9MC4wOCZwb3M9NCZoYXNoPWIzZjFjNWMxZjcxMDQ4ZjBkZDk3YzJjYWEwOGVkMWM5%3B10ad65be2a2e659d31265f58f2abf83b/jobkey-21273.5178194_smartims-1263509/rid-ggfwwrrhjgyubznraudgielukgozzhdw/pub_id-49821/cjp-3/hits-83">Bright.com</src>
51
+ <ty>sponsored</ty>
52
+ <loc cty="New York" st="NY" postal="" county="" region="" country="US">New York, NY</loc>
53
+ <ls>2014-01-15T04:36:28Z</ls>
54
+ <dp>2014-01-12T05:15:10Z</dp>
55
+ <e>Ruby On Rails New York City, NY Contract to hire DotNet Nuke exp is preferred. Looking for a pure Ruby on Rails ... in programming through the use of JavaScript, jQuery, AJAX and JSON; (4) experience in building web services using...&gt;</e>
56
+ </r>
57
+ <r>
58
+ <jt>Ruby on Rails / Can work remote for great start-up</jt>
59
+ <cn url="">Hirefighters</cn>
60
+ <src url="http://api.simplyhired.com/a/job-details/view/cparm-cF9pZD00OTgyMSZ6b25lPTYmaXA9JmNvdW50PTUwJnN0YW1wPTIwMTQtMDEtMTUgMDg6NDM6NTEmY291bnRyeT11cyZwdWJsaXNoZXJfY2hhbm5lbF9pZHM9JmFfaWQ9MjEzNSZjX2lkPTE4OTUyJmNwYz0wLjA3JnBvcz01Jmhhc2g9OTgwNWI1ODAwYmU4NTM4MzgwMTIzNzhjMGI5NWE0Y2Q%3D%3Ba4cb91b53907da0770f44e6f07a2ee55/jobkey-8686.661528100061100/rid-ggfwwrrhjgyubznraudgielukgozzhdw/pub_id-49821/cjp-4/hits-83">Get Rails Jobs</src>
61
+ <ty>sponsored</ty>
62
+ <loc cty="New York" st="NY" postal="10080" county="Manhattan" region="" country="US">New York, NY</loc>
63
+ <ls>2013-12-31T20:55:22Z</ls>
64
+ <dp>2013-12-31T20:55:22Z</dp>
65
+ <e>Ruby on Rails / Can work remote for great start-up Title: Ruby on Rails / Can work remote for great start-upLocation: Re ... Experience deploying and scaling commercial Ruby on Rails applications.? Experience creating and consuming...&gt;</e>
66
+ </r>
67
+ <r>
68
+ <jt>Senior Back-End Software Engineer (Java Rails)</jt>
69
+ <cn url="">Capital Markets</cn>
70
+ <src url="http://api.simplyhired.com/a/job-details/view/cparm-cF9pZD00OTgyMSZ6b25lPTYmaXA9JmNvdW50PTUwJnN0YW1wPTIwMTQtMDEtMTUgMDg6NDM6NTEmY291bnRyeT11cyZwdWJsaXNoZXJfY2hhbm5lbF9pZHM9JmFfaWQ9MjAyOSZjX2lkPTI1NzE1JmNwYz0wLjEmcG9zPTYmaGFzaD02YTBjMTg4NTQ3OGE1ODQ1YzM2ZmI1MDY4NzA0MTI0Ng%3D%3D%3B7c288dab5f861b98ffc64b43ba8372f0/jobkey-5296.200956969/rid-ggfwwrrhjgyubznraudgielukgozzhdw/pub_id-49821/cjp-5/hits-83">Job.com</src>
71
+ <ty>sponsored</ty>
72
+ <loc cty="New York" st="NY" postal="10003" county="Manhattan" region="" country="US">New York, NY</loc>
73
+ <ls>2014-01-12T14:05:46Z</ls>
74
+ <dp>2014-01-12T14:05:46Z</dp>
75
+ <e>server systems. 2+ years coding experience with Ruby on Rails. 2+ years coding experience with Java. Experience with ... Experience with Web related technologies like Javascript, HTML 4/5, AJAX, JSON, Node.js...&gt;</e>
76
+ </r>
77
+ <r>
78
+ <jt>Software Developer-Ruby on Rails (Contract or Full Time)</jt>
79
+ <cn url="">Bedrocket Media Ventures</cn>
80
+ <src url="http://api.simplyhired.com/a/job-details/view/cparm-cF9pZD00OTgyMSZ6b25lPTYmaXA9JmNvdW50PTUwJnN0YW1wPTIwMTQtMDEtMTUgMDg6NDM6NTEmY291bnRyeT11cyZwdWJsaXNoZXJfY2hhbm5lbF9pZHM9JmFfaWQ9NDQ0NDcmY19pZD0yMjk2OCZjcGM9MC4wOCZwb3M9NyZoYXNoPWIzZjFjNWMxZjcxMDQ4ZjBkZDk3YzJjYWEwOGVkMWM5%3Bbf18f701e995cabae5119cad9fcab2ef/jobkey-21273.3647060_bqqrgigqer4r9nigakhp3q/rid-ggfwwrrhjgyubznraudgielukgozzhdw/pub_id-49821/cjp-6/hits-83">Bright.com</src>
81
+ <ty>sponsored</ty>
82
+ <loc cty="New York" st="NY" postal="" county="" region="" country="US">New York, NY</loc>
83
+ <ls>2014-01-15T05:14:54Z</ls>
84
+ <dp>2014-01-09T06:17:31Z</dp>
85
+ <e>new model for media. You: An experienced Ruby on Rails developer with strong back end capabilities who’s eager to ... 4+ years experience developing Ruby on Rails applications Expertise with JavaScript, jQuery, Ajax and HTML/CSS,...&gt;</e>
86
+ </r>
87
+ <r>
88
+ <jt>Ruby on Rails Architect</jt>
89
+ <cn url="">Common Need</cn>
90
+ <src url="http://api.simplyhired.com/a/job-details/view/cparm-cF9pZD00OTgyMSZ6b25lPTYmaXA9JmNvdW50PTUwJnN0YW1wPTIwMTQtMDEtMTUgMDg6NDM6NTEmY291bnRyeT11cyZwdWJsaXNoZXJfY2hhbm5lbF9pZHM9JmFfaWQ9NDQ0NDcmY19pZD0yMjk2OCZjcGM9MC4wOCZwb3M9OCZoYXNoPWIzZjFjNWMxZjcxMDQ4ZjBkZDk3YzJjYWEwOGVkMWM5%3Beb9ed789fd5e4a83752dc87a4478f45c/jobkey-21273.23708217_caksvu-hkr3izsaawpp1hh/rid-ggfwwrrhjgyubznraudgielukgozzhdw/pub_id-49821/cjp-7/hits-83">Bright.com</src>
91
+ <ty>sponsored</ty>
92
+ <loc cty="Hoboken" st="NJ" postal="" county="Hudson County" region="" country="US">Hoboken, NJ</loc>
93
+ <ls>2014-01-15T04:59:10Z</ls>
94
+ <dp>2014-01-09T06:06:01Z</dp>
95
+ <e>Responsibilities - Work with designers to architect Ruby on Rails applications - Produce UML modeling documents that ... object-oriented business logic - Working knowledge of AJAX (XML, JSON) - Solid knowledge of at least one...&gt;</e>
96
+ </r>
97
+ <r>
98
+ <jt>Rails Developer - Mid or Senior Level</jt>
99
+ <cn url="">Aegistech</cn>
100
+ <src url="http://api.simplyhired.com/a/job-details/view/jobkey-15319.MH2275-1-25639/rid-ggfwwrrhjgyubznraudgielukgozzhdw/cjp-8/hits-83">Aegistech</src>
101
+ <ty>organic</ty>
102
+ <loc cty="New York" st="NY" postal="" county="" region="" country="US">New York, NY</loc>
103
+ <ls>2014-01-09T02:21:41Z</ls>
104
+ <dp>2014-01-09T02:21:41Z</dp>
105
+ <e>Understand OAuth2, and have opinions about best practices Rails engines, libraries and plugins within the context of ... Experience using HTML/CSS/Javascript/AJAX in a production environment ABOUT AEGISTECH Aegistech is an IT Staffing and Co...&gt;</e>
106
+ </r>
107
+ <r>
108
+ <jt>Front End Developer : SCSS/CSS, Javascript, jQuery, AJAX, HTML</jt>
109
+ <cn url="">Whiting Consulting</cn>
110
+ <src url="http://api.simplyhired.com/a/job-details/view/jobkey-5843.216876/rid-ggfwwrrhjgyubznraudgielukgozzhdw/cjp-9/hits-83">iitjobs.com</src>
111
+ <ty>organic</ty>
112
+ <loc cty="New York" st="NY" postal="" county="" region="" country="US">New York, NY</loc>
113
+ <ls>2014-01-08T10:06:28Z</ls>
114
+ <dp>2014-01-08T10:06:28Z</dp>
115
+ <e>development team. Requirements SCSS/CSS Javascript/jQuery/AJAX HAML HTML Understanding of Rails Environment Git ... Testing Rspec, Jasmine, Cucumber Ruby on Rails Backbone.js or other javascript framework...&gt;</e>
116
+ </r>
117
+ <r>
118
+ <jt>Ruby on Rails / EXT JS Developer</jt>
119
+ <cn url="">Randstad Technologies - New</cn>
120
+ <src url="http://api.simplyhired.com/a/job-details/view/jobkey-7695.6908172/rid-ggfwwrrhjgyubznraudgielukgozzhdw/cjp-10/hits-83">www.randstad.com</src>
121
+ <ty>organic</ty>
122
+ <loc cty="New York" st="NY" postal="10020" county="Manhattan" region="" country="US">New York, NY</loc>
123
+ <ls>2014-01-14T02:37:44Z</ls>
124
+ <dp>2014-01-14T02:37:44Z</dp>
125
+ <e>to join the team. The environment is ExtJS, Sass, Ruby on Rails, HAML, Postgres, Redis, Puppet and AWS. You will be ... Solid experience with JavaScript UI Development (HTML, AJAX, CSS, JavaScript) required. ExtJS required Experience...&gt;</e>
126
+ </r>
127
+ <r>
128
+ <jt>Ruby on Rails / EXT JS Developer</jt>
129
+ <cn url="">Randstad Technologies</cn>
130
+ <src url="http://api.simplyhired.com/a/job-details/view/jobkey-25070.5719599/rid-ggfwwrrhjgyubznraudgielukgozzhdw/cjp-11/hits-83">Dice</src>
131
+ <ty>organic</ty>
132
+ <loc cty="New York" st="NY" postal="10020" county="Manhattan" region="" country="US">New York, NY</loc>
133
+ <ls>2014-01-15T02:07:54Z</ls>
134
+ <dp>2014-01-14T01:06:16Z</dp>
135
+ <e>x0D Solid experience with JavaScript UI Development (HTML, AJAX, CSS, JavaScript) required. x0D ExtJS required x0D ... with producing prototypes x0D Working with a Ruby on Rails Backend is a plus. Randstad Technologies is an...&gt;</e>
136
+ </r>
137
+ <r>
138
+ <jt>Software Engineer in the Wine &amp; Spirits Industry (Rails)</jt>
139
+ <cn url="">Sevenfifty</cn>
140
+ <src url="http://api.simplyhired.com/a/job-details/view/jobkey-153f97639053ad893d5d56a665cd2fb9dc4c820/rid-ggfwwrrhjgyubznraudgielukgozzhdw/cjp-12/hits-83">Stack Overflow</src>
141
+ <ty>organic</ty>
142
+ <loc cty="New York" st="NY" postal="" county="" region="" country="US">New York, NY</loc>
143
+ <ls>2014-01-09T06:28:04Z</ls>
144
+ <dp>2014-01-09T06:28:04Z</dp>
145
+ <e>&amp; Spirits Industry (Rails)
146
+ SevenFifty New York, NY
147
+
148
+ ruby-on-rails solr postgresql javascript data
149
+
150
+ Job ... (Rails preferred), databases/SQL, HTML/CSS/JS, AJAX, dynamic programming languages (Ruby strongly preferred)
151
+ -...&gt;</e>
152
+ </r>
153
+ <r>
154
+ <jt>RAILS, RAILS, RAILS in New York City</jt>
155
+ <cn url=""/>
156
+ <src url="http://api.simplyhired.com/a/job-details/view/jobkey-16370.31064544/rid-ggfwwrrhjgyubznraudgielukgozzhdw/cjp-13/hits-83">eBay Classifieds</src>
157
+ <ty>organic</ty>
158
+ <loc cty="New York" st="NY" postal="10017" county="Manhattan" region="" country="US">New York, NY</loc>
159
+ <ls>2013-12-24T11:22:21Z</ls>
160
+ <dp>2013-12-24T11:22:21Z</dp>
161
+ <e>in Manhattan. Required Skills 3-5 years of Ruby on Rails Development Extensive experience with open source code ... of Javascript and other front end technologies (HTML, CSS, AJAX, etc) Experience working in an Agile...&gt;</e>
162
+ </r>
163
+ <r>
164
+ <jt>Senior Ruby on Rails Developer – One of the Best Places To Work</jt>
165
+ <cn url="">Fild</cn>
166
+ <src url="http://api.simplyhired.com/a/job-details/view/jobkey-14520.5480890/rid-ggfwwrrhjgyubznraudgielukgozzhdw/cjp-14/hits-83">Recruitics</src>
167
+ <ty>organic</ty>
168
+ <loc cty="New York" st="NY" postal="" county="" region="" country="US">New York, NY</loc>
169
+ <ls>2013-12-24T05:06:16Z</ls>
170
+ <dp>2013-12-24T05:06:16Z</dp>
171
+ <e>Rails Proficiency in HTML 5, Javascript, CSS and AJAX Familiarity with TDD, pairing and A/B Testing Proven ability to ... equity So if you’re a Senior Ruby on Rails Engineer that wants to build technology that delight a rapidly...&gt;</e>
172
+ </r>
173
+ <r>
174
+ <jt>Lead Ruby on Rails Developer</jt>
175
+ <cn url="">Cybercoders</cn>
176
+ <src url="http://api.simplyhired.com/a/job-details/view/jobkey-8395.SP-rordevsf01_1/rid-ggfwwrrhjgyubznraudgielukgozzhdw/cjp-15/hits-83">CyberCoders</src>
177
+ <ty>organic</ty>
178
+ <loc cty="New York" st="NY" postal="10001" county="Manhattan" region="" country="US">New York, NY</loc>
179
+ <ls>2014-01-08T20:36:04Z</ls>
180
+ <dp>2013-12-19T08:31:23Z</dp>
181
+ <e>Lead Ruby on Rails Engineer - Entertainment Startup Ruby on Rails Engineer - ROR Developer - Entertainment Startup Are ... What You Need for this Position - 3+ years of experience as a Ruby on Rails Developer / Programmer - Ability to work on...&gt;</e>
182
+ </r>
183
+ <r>
184
+ <jt>Senior Ruby on Rails Developer</jt>
185
+ <cn url="">Workbridge Associates</cn>
186
+ <src url="http://api.simplyhired.com/a/job-details/view/jobkey-b369fff06fd1a59b338c2eca8e2cac8544a048/rid-ggfwwrrhjgyubznraudgielukgozzhdw/cjp-16/hits-83">Workbridge Associates</src>
187
+ <ty>organic</ty>
188
+ <loc cty="New York" st="NY" postal="" county="" region="" country="US">New York, NY</loc>
189
+ <ls>2013-12-17T21:04:10Z</ls>
190
+ <dp>2013-12-17T21:04:10Z</dp>
191
+ <e>in Manhattan.
192
+
193
+ Required Skills
194
+
195
+ * 3-5 years of Ruby on Rails Development
196
+ * Extensive experience with open source ... of Javascript and other front end technologies (HTML, CSS, AJAX, etc)
197
+ * Experience working in an Agile...&gt;</e>
198
+ </r>
199
+ <r>
200
+ <jt>Ruby On Rails Developer in New York City</jt>
201
+ <cn url=""/>
202
+ <src url="http://api.simplyhired.com/a/job-details/view/jobkey-16370.31038175/rid-ggfwwrrhjgyubznraudgielukgozzhdw/cjp-17/hits-83">eBay Classifieds</src>
203
+ <ty>organic</ty>
204
+ <loc cty="New York" st="NY" postal="10017" county="Manhattan" region="" country="US">New York, NY</loc>
205
+ <ls>2013-12-21T11:19:54Z</ls>
206
+ <dp>2013-12-21T11:19:54Z</dp>
207
+ <e>in Manhattan. Required Skills 3-5 years of Ruby on Rails Development Extensive experience with open source code ... of Javascript and other front end technologies (HTML, CSS, AJAX, etc) Experience working in an Agile...&gt;</e>
208
+ </r>
209
+ <r>
210
+ <jt>Ruby on Rails Developer</jt>
211
+ <cn url="">Cybercoders</cn>
212
+ <src url="http://api.simplyhired.com/a/job-details/view/jobkey-8395.SS2-1134949_1/rid-ggfwwrrhjgyubznraudgielukgozzhdw/cjp-18/hits-83">CyberCoders</src>
213
+ <ty>organic</ty>
214
+ <loc cty="New York" st="NY" postal="10017" county="Manhattan" region="" country="US">New York, NY</loc>
215
+ <ls>2014-01-12T05:58:30Z</ls>
216
+ <dp>2014-01-09T20:29:48Z</dp>
217
+ <e>Ruby on Rails Developer - Ruby on Rails, web development, HTML5 Ruby on Rails Developer - Ruby on Rails, web ... lead a long and healthy life. So, if you are a Ruby on Rails Developer with 3+ years of rails experience, please...&gt;</e>
218
+ </r>
219
+ <r>
220
+ <jt>Senior Ruby on Rails Developer – One of America’s Hottest Brands!</jt>
221
+ <cn url="">Fild</cn>
222
+ <src url="http://api.simplyhired.com/a/job-details/view/jobkey-14520.5417400/rid-ggfwwrrhjgyubznraudgielukgozzhdw/cjp-19/hits-83">Recruitics</src>
223
+ <ty>organic</ty>
224
+ <loc cty="New York" st="NY" postal="" county="" region="" country="US">New York, NY</loc>
225
+ <ls>2013-12-17T23:08:54Z</ls>
226
+ <dp>2013-12-17T23:08:54Z</dp>
227
+ <e>Rails Proficiency in HTML 5, Javascript, CSS and AJAX Familiarity with TDD, pairing and A/B Testing Proven ability to ... equity So if you’re a Senior Ruby on Rails Engineer that wants to build technology that delight a rapidly...&gt;</e>
228
+ </r>
229
+ <r>
230
+ <jt>Digital Platform Architect (Tech Director)</jt>
231
+ <cn url="">Star Solutions A Linium Company</cn>
232
+ <src url="http://api.simplyhired.com/a/job-details/view/jobkey-14828.job1408210/rid-ggfwwrrhjgyubznraudgielukgozzhdw/cjp-20/hits-83">BullhornReach.com</src>
233
+ <ty>organic</ty>
234
+ <loc cty="New York" st="NY" postal="" county="" region="" country="US">New York, NY</loc>
235
+ <ls>2014-01-04T03:13:53Z</ls>
236
+ <dp>2014-01-04T03:13:53Z</dp>
237
+ <e>and PHP, Perl, SQL, Flash/Flex, Ruby-on-Rails, AJAX etc.) and the ability to propose alternative solutions and cost-benefit analysis based on these technologies Expert-level knowledge in Web 2.0 technologies, widget development, rapid...&gt;</e>
238
+ </r>
239
+ <r>
240
+ <jt>EXT JS Developer</jt>
241
+ <cn url="">Davon Wright Recruiting &amp; Staffing</cn>
242
+ <src url="http://api.simplyhired.com/a/job-details/view/jobkey-20771.31610/rid-ggfwwrrhjgyubznraudgielukgozzhdw/cjp-21/hits-83">DAVON Wright Recruiting &amp; Staffing</src>
243
+ <ty>organic</ty>
244
+ <loc cty="New York" st="NY" postal="" county="" region="" country="US">New York, NY</loc>
245
+ <ls>2014-01-10T20:09:25Z</ls>
246
+ <dp>2014-01-10T20:09:25Z</dp>
247
+ <e>with REST and JSONa?¾Working with a Ruby on Rails Backend is a plus.a?¾The ability to clearly communicate ideas ... with Javascript UI Development (HTML, AJAX, CSS, JavaScript) required.a?¾The ability to quickly and...&gt;</e>
248
+ </r>
249
+ <r>
250
+ <jt>EXT JS Developer</jt>
251
+ <cn url="">Concepts In Staffing</cn>
252
+ <src url="http://api.simplyhired.com/a/job-details/view/jobkey-12630.Job-2212/rid-ggfwwrrhjgyubznraudgielukgozzhdw/cjp-22/hits-83">Concepts in Staffing</src>
253
+ <ty>organic</ty>
254
+ <loc cty="New York" st="NY" postal="" county="" region="" country="US">New York, NY</loc>
255
+ <ls>2014-01-10T07:24:48Z</ls>
256
+ <dp>2014-01-10T07:24:48Z</dp>
257
+ <e>Solid experience with Javascript UI Development (HTML, AJAX, CSS, JavaScript) required. ExtJS required Experience ... frameworks and produce prototypes Working with a Ruby on Rails Backend is a plus. Ability to clearly communicate...&gt;</e>
258
+ </r>
259
+ <r>
260
+ <jt>EXT JS Developer</jt>
261
+ <cn url="">Davon Wright</cn>
262
+ <src url="http://api.simplyhired.com/a/job-details/view/jobkey-27565.8a0367c65e851dc34a890b42d28c74ef/rid-ggfwwrrhjgyubznraudgielukgozzhdw/cjp-23/hits-83">DAVON Wright</src>
263
+ <ty>organic</ty>
264
+ <loc cty="New York" st="NY" postal="" county="" region="" country="US">New York, NY</loc>
265
+ <ls>2014-01-09T20:05:52Z</ls>
266
+ <dp>2014-01-09T20:05:52Z</dp>
267
+ <e>Experience with REST and JSON Working with a Ruby on Rails Backend is a plus. The ability to clearly communicate ... Solid experience with Javascript UI Development (HTML, AJAX, CSS, JavaScript) required. The ability to quickly and...&gt;</e>
268
+ </r>
269
+ <r>
270
+ <jt>UI Engineers</jt>
271
+ <cn url="">Meetup</cn>
272
+ <src url="http://api.simplyhired.com/a/job-details/view/jobkey-6503.o7jeYfwm/rid-ggfwwrrhjgyubznraudgielukgozzhdw/cjp-24/hits-83">Meetup</src>
273
+ <ty>organic</ty>
274
+ <loc cty="New York" st="NY" postal="10012" county="Manhattan" region="" country="US">New York, NY</loc>
275
+ <ls>2013-12-19T17:00:27Z</ls>
276
+ <dp>2013-12-19T17:00:27Z</dp>
277
+ <e>Solid knowledge of cross browser HTML, CSS, JavaScript and AJAX. Experience with Mustache and Sass a plus. Experience ... (we use jQuery), a server-side web framework (JSP, PHP, Rails, .NET, etc), and a version control system (we use...&gt;</e>
278
+ </r>
279
+ </rs>
280
+ <pjl>
281
+ </pjl>
282
+ </shrs>