apify 0.3.0 → 0.3.1

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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.0
1
+ 0.3.1
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{apify}
8
- s.version = "0.3.0"
8
+ s.version = "0.3.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Henning Koch"]
@@ -1,3 +1,7 @@
1
+ require 'json'
2
+ require 'jsonschema'
3
+ require 'restclient'
4
+
1
5
  require 'apify/errors'
2
6
  require 'apify/action'
3
7
  require 'apify/exchange'
@@ -7,16 +7,8 @@ ENV['RAILS_ENV'] ||= 'in_memory'
7
7
  require "#{File.dirname(__FILE__)}/app_root/config/environment"
8
8
  require "#{File.dirname(__FILE__)}/../lib/apify"
9
9
 
10
- require 'rubygems'
11
-
12
- gem 'jsonschema', '=2.0.0'
13
- gem 'webmock', '=1.3.4'
14
- gem 'rest-client', '=1.5.1'
15
-
16
10
  require 'spec/rails'
17
- require 'jsonschema'
18
11
  require 'webmock/rspec'
19
- require 'restclient'
20
12
 
21
13
  # Undo changes to RAILS_ENV
22
14
  silence_warnings {RAILS_ENV = ENV['RAILS_ENV']}
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 0
9
- version: 0.3.0
8
+ - 1
9
+ version: 0.3.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Henning Koch