cucoo 0.0.7 → 0.0.8

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: bb82dbc8f1556118844337c4f52609a94b65d1f1
4
- data.tar.gz: 04ccfbe5038913241162768b1fd132deb2ab66c7
3
+ metadata.gz: 96dce690868e4db908eda8732fdfa5d00f135e36
4
+ data.tar.gz: e2b9418ae4aabf348efad63355750e5a2873e251
5
5
  SHA512:
6
- metadata.gz: f3281c3d67e0530057ef4ea0a195cb260e531d264ac358ef3d573836658afa729169b79936653331d804180b5aba88b4b22f75d8b43b82f0544e684174b14db7
7
- data.tar.gz: 4f16bb4ed141821e1740cc6b1a981fe7a22dc0cbf82ceaac36612bfa707a48f7c5969deffd37e79e15be7d07be9e5026e64768aa41299eb13f686db03978893a
6
+ metadata.gz: c8a6c289f80087b51ddc4af68de2ef4acc9485e526c5bd335e9538a503cdd57ed050b0871e9d0a26e0372e8c9e220afb3f1cca26e96a95a7f21e2170662ccd75
7
+ data.tar.gz: 0dcfda16bfab4724ca86da4403d36c73c0e42b6b170fd54d83cab98e0eb0d64aed475bb9c6814f6d78a72a8cd440dd628c092873e2746460be3557ffdc1b0a72
@@ -1 +1 @@
1
- ruby-2.1.3
1
+ ruby-2.4.1
@@ -1,6 +1,5 @@
1
1
  language: ruby
2
2
  rvm:
3
- - ruby-2.0.0
4
- - ruby-2.1.1
5
- - ruby-2.1.3
6
- - ruby-2.2.0
3
+ - ruby-2.2.0
4
+ - ruby-2.3.0
5
+ - ruby-2.4.1
@@ -28,4 +28,5 @@ Gem::Specification.new do |spec|
28
28
  spec.add_dependency 'selenium-webdriver'
29
29
  spec.add_development_dependency 'bundler', '~> 1.7'
30
30
  spec.add_development_dependency 'rake', '~> 10.0'
31
+ spec.add_development_dependency 'puma'
31
32
  end
@@ -1,7 +1,6 @@
1
1
  require File.expand_path('../boot', __FILE__)
2
2
 
3
3
  require 'action_controller/railtie'
4
- require 'sprockets/railtie'
5
4
 
6
5
  # Bundler.require(*Rails.groups)
7
6
 
@@ -25,16 +25,16 @@ Rails.application.configure do
25
25
  # Debug mode disables concatenation and preprocessing of assets.
26
26
  # This option may cause significant delays in view rendering with a large
27
27
  # number of complex assets.
28
- config.assets.debug = true
28
+ # config.assets.debug = true
29
29
 
30
30
  # Asset digests allow you to set far-future HTTP expiration dates on all assets,
31
31
  # yet still be able to expire them through the digest params.
32
- config.assets.digest = true
32
+ # config.assets.digest = true
33
33
 
34
34
  # Adds additional error checking when serving assets at runtime.
35
35
  # Checks for improperly declared sprockets dependencies.
36
36
  # Raises helpful error messages.
37
- config.assets.raise_runtime_errors = true
37
+ # config.assets.raise_runtime_errors = true
38
38
 
39
39
  # Raises error for missing translations
40
40
  # config.action_view.raise_on_missing_translations = true
@@ -1,3 +1,3 @@
1
1
  module Cucoo
2
- VERSION = '0.0.7'
2
+ VERSION = '0.0.8'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cucoo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - RC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-12 00:00:00.000000000 Z
11
+ date: 2018-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -150,6 +150,20 @@ dependencies:
150
150
  - - "~>"
151
151
  - !ruby/object:Gem::Version
152
152
  version: '10.0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: puma
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
153
167
  description: This gem offers a DSL on top of webmock, cucumber and json_spec to make
154
168
  testing APIs on rails easier
155
169
  email:
@@ -193,7 +207,6 @@ files:
193
207
  - dummy/config/environments/development.rb
194
208
  - dummy/config/environments/production.rb
195
209
  - dummy/config/environments/test.rb
196
- - dummy/config/initializers/assets.rb
197
210
  - dummy/config/initializers/backtrace_silencers.rb
198
211
  - dummy/config/initializers/cookies_serializer.rb
199
212
  - dummy/config/initializers/filter_parameter_logging.rb
@@ -238,7 +251,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
238
251
  version: '0'
239
252
  requirements: []
240
253
  rubyforge_project:
241
- rubygems_version: 2.4.6
254
+ rubygems_version: 2.6.14
242
255
  signing_key:
243
256
  specification_version: 4
244
257
  summary: Cucumber steps and assertions for testing your APIs
@@ -1,11 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Version of your assets, change this if you want to expire all your assets.
4
- Rails.application.config.assets.version = '1.0'
5
-
6
- # Add additional assets to the asset load path
7
- # Rails.application.config.assets.paths << Emoji.images_path
8
-
9
- # Precompile additional assets.
10
- # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
- # Rails.application.config.assets.precompile += %w( search.js )