sunstone 5.0.0.7 → 5.0.0.8

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: caeaa80314792c82f2e0fbc506e52afb8b23f75a
4
- data.tar.gz: 6c6481b757af022340c833dfad3d53efc7888dca
3
+ metadata.gz: e625be1b21ec0433b462e4e6c3d625763d7b9cd0
4
+ data.tar.gz: f4899f01b57055453a433b693e35e946cdd63d54
5
5
  SHA512:
6
- metadata.gz: 7f63a567c9aec02338d7f9e0ee591003b88113529369d7d04f486443a40eeeda77c53957fb296e319164a30e90a48235350d440f35937371a2e7b8e983472256
7
- data.tar.gz: 51521a7362b2ee8ce43c1ab9e2d23777b7f6e4032c08037ba8dbb98891eaabc37172135a21bd1bdf9d3e86590775461a7f06fd6ee39f43f25db9db9616a9f58f
6
+ metadata.gz: 732274fec9d832b6acec66c3d926922078487f969d5b9886b46d5785fc63d965d1c369209f9783319744b63a20a1a0b1dbe8f535659b3a6dc0726a68c1ce3aa0
7
+ data.tar.gz: c96b7fc36364bb188ff6a3d0c0c1f24075fa8bff1bfe749cb658c48187476c7c7e1f2a003dddc4be9a67605d10c4d4d18637f73c577b3108f9827977de146261
@@ -1,5 +1,12 @@
1
1
  language: ruby
2
- rvm: 2.3.1
2
+
3
+ rvm:
4
+ - 2.3.1
5
+
6
+ env:
7
+ - RAILS_VERSION=v5.0.0
8
+ - RAILS_VERSION=v5.0.0.1
9
+ - RAILS_VERSION=v5.0.1.rc2
3
10
 
4
11
  cache:
5
12
  bundler: true
@@ -16,9 +23,8 @@ install:
16
23
  - git clone https://github.com/rails/rails.git ~/build/rails
17
24
 
18
25
  before_script:
19
- - export RAILS_VERSION=`cat sunstone.gemspec | grep activerecord | grep -ow "[0-9\.]\{1,\}"`
20
26
  - pushd ~/build/rails
21
- - git checkout v$RAILS_VERSION
27
+ - git checkout $RAILS_VERSION
22
28
  - sed -i "/require 'support\/connection'/a \$LOAD_PATH.unshift\(File.expand_path\('~\/build\/malomalo\/sunstone\/lib'\)\)\nrequire 'sunstone'" ~/build/rails/activerecord/test/cases/helper.rb
23
29
  - cat ~/build/rails/Gemfile
24
30
  - "sed -i \"/group :db do/a gem 'sunstone', path: File.expand_path\\('~\\/build\\/malomalo\\/sunstone'\\)\" ~/build/rails/Gemfile"
@@ -602,7 +602,7 @@ module Arel
602
602
 
603
603
  def visit_Arel_Nodes_LessThan o, collector
604
604
  key = visit(o.left, collector)
605
- value = { :lte => visit(o.right, collector) }
605
+ value = { :lt => visit(o.right, collector) }
606
606
  if key.is_a?(Hash)
607
607
  if o.left.is_a?(Arel::Attributes::Cast)
608
608
  merge_to_bottom_hash(key, value)
@@ -1,3 +1,3 @@
1
1
  module Sunstone
2
- VERSION = '5.0.0.7'
2
+ VERSION = '5.0.0.8'
3
3
  end
@@ -34,5 +34,5 @@ Gem::Specification.new do |s|
34
34
  s.add_runtime_dependency 'msgpack'
35
35
  s.add_runtime_dependency 'cookie_store'
36
36
  s.add_runtime_dependency 'arel', '~> 7.0'
37
- s.add_runtime_dependency 'activerecord', '~> 5.0'
38
- end
37
+ s.add_runtime_dependency 'activerecord', '~> 5.0.0'
38
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sunstone
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0.7
4
+ version: 5.0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jon Bracy
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-17 00:00:00.000000000 Z
11
+ date: 2016-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -254,14 +254,14 @@ dependencies:
254
254
  requirements:
255
255
  - - "~>"
256
256
  - !ruby/object:Gem::Version
257
- version: '5.0'
257
+ version: 5.0.0
258
258
  type: :runtime
259
259
  prerelease: false
260
260
  version_requirements: !ruby/object:Gem::Requirement
261
261
  requirements:
262
262
  - - "~>"
263
263
  - !ruby/object:Gem::Version
264
- version: '5.0'
264
+ version: 5.0.0
265
265
  description: A library for interacting with REST APIs. Similar to ActiveResource
266
266
  email:
267
267
  - jonbracy@gmail.com