order_as_specified 1.0 → 1.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.
- checksums.yaml +4 -4
- data/.travis.yml +6 -1
- data/CHANGELOG.md +10 -0
- data/Gemfile +2 -0
- data/lib/order_as_specified/version.rb +1 -1
- data/spec/config/test_setup_migration.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c3348c26ab12edd7c9a4066c710b0cc914974946
|
4
|
+
data.tar.gz: 10b274073cfa67a6237afe207f3df7ae7141fddf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a8cb8f25341c51ede2a157a997c41bafe0f4c1ba2174e727f7c9f4b35ffb39f86c5d229cd614a25967eda34e731ae9704c2f372f12d77a9bda5a2261b67ea45
|
7
|
+
data.tar.gz: 92fce24b220e4a658da7eb7c6be5520f532935806793f2d145b190e4db7b85190d7b39bc14f4c6782e79b708ff1433c616623d760a56cd7d46f78438dd8c7a1e
|
data/.travis.yml
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
language: ruby
|
2
2
|
rvm:
|
3
|
-
- 2.2.
|
3
|
+
- 2.2.5
|
4
|
+
- 2.3.1
|
4
5
|
before_script:
|
5
6
|
- psql -c 'create database order_as_specified_test;' -U postgres
|
6
7
|
script: bundle exec rspec
|
@@ -8,6 +9,10 @@ addons:
|
|
8
9
|
postgresql: "9.3"
|
9
10
|
code_climate:
|
10
11
|
repo_token: 781c439d68cbb928316deaec1c7136f98423e1db87238f99cbc95183de94df9e
|
12
|
+
env:
|
13
|
+
matrix:
|
14
|
+
- AR_VERSION="~> 4.2.0"
|
15
|
+
- AR_VERSION="~> 5.0.0"
|
11
16
|
notifications:
|
12
17
|
email: false
|
13
18
|
hipchat:
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
# 1.0
|
2
|
+
|
3
|
+
We've hit our first major release! This release contains **no** breaking changes. The changes:
|
4
|
+
|
5
|
+
- Added `:distinct_on` option. [[#3](https://github.com/panorama-ed/order_as_specified/issues/3)]
|
6
|
+
- Improved error message for `nil` arguments. [[#8](https://github.com/panorama-ed/order_as_specified/pull/8)]
|
7
|
+
|
8
|
+
# 0.1.0
|
9
|
+
|
10
|
+
The initial release! All basic functionality is in here.
|
data/Gemfile
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: order_as_specified
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '1.
|
4
|
+
version: '1.1'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacob Evelyn
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-07-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -148,6 +148,7 @@ files:
|
|
148
148
|
- .overcommit.yml
|
149
149
|
- .rubocop.yml
|
150
150
|
- .travis.yml
|
151
|
+
- CHANGELOG.md
|
151
152
|
- Gemfile
|
152
153
|
- LICENSE.txt
|
153
154
|
- README.md
|