draftsman 0.5.1 → 0.6.0

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: 18529a182611eb7a54a2d4ad3c9660c5f8756160
4
- data.tar.gz: 2a6922255fc23dd50d362de6907b25f93680d270
3
+ metadata.gz: 54041224c0ef580764ae1570192ce7f81a93c44c
4
+ data.tar.gz: de68aa15f34f6ec56b6b6cbd087bc2bce726cf73
5
5
  SHA512:
6
- metadata.gz: 5dff6540ec5fd444399ec5491ae13821f0a2e3f38485ff22034730d2f7988dd380fd41288099df0a56da3afe4de62c84b3640bb50f24ab6bda7088abbb971229
7
- data.tar.gz: 5282edde2006086ee7cac30e284616d0f8912255a933f55e4b58b3c5edd0d237c8d61760a415a114568bb95ea61be1cd623324448d167c714f8af5a0e69b3bca
6
+ metadata.gz: 282c2be7d66bfef55acc7ac61f9c3109b9e9e36fee1329723067a695e98b591aa8bf531776af0578762329f9c158f5f4ca1430bb0c27ce192517eb909590afa1
7
+ data.tar.gz: f28d6437916d060b4dbef7285bef2f60483585a8c8e354b1303f0062850add28b1f70dc6f6ca348c5d6872ed2996287709442c6e630e98cbe6bf77fe1cd4bec0
data/.travis.yml ADDED
@@ -0,0 +1,12 @@
1
+ language: ruby
2
+ cache: bundler
3
+
4
+ sudo: false
5
+
6
+ rvm:
7
+ - 2.4.0-preview3
8
+ - 2.3.1
9
+ - 2.2.5
10
+
11
+ before_script:
12
+ - bundle exec rake -f spec/dummy/Rakefile db:schema:load
data/CHANGELOG.md CHANGED
@@ -1,5 +1,39 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.6.0 - November 16, 2015
4
+
5
+ ### Enhancements
6
+
7
+ - [@chrisdpeters](https://github.com/chrisdpeters)
8
+ [implemented](https://github.com/liveeditor/draftsman/commit/39e74ef34f34de83262761a383e94a7e7731d47f)
9
+ [#53](https://github.com/liveeditor/draftsman/issues/53) -
10
+ Add option to not stash drafted data separately
11
+ - [@chrisdpeters](https://github.com/chrisdpeters)
12
+ [implemented](https://github.com/liveeditor/draftsman/commit/340e632b9590ae3a07f5b567df3ca2b6d9a5b804)
13
+ [#31](https://github.com/liveeditor/draftsman/issues/51) -
14
+ Allow `whodunnit` column name to be configurable
15
+ - [@chrisdpeters](https://github.com/chrisdpeters)
16
+ [implemented](https://github.com/liveeditor/draftsman/commit/340e632b9590ae3a07f5b567df3ca2b6d9a5b804)
17
+ [#51](https://github.com/liveeditor/draftsman/issues/51) -
18
+ Performance: skip reification logic on create drafts
19
+ - [@chrisdpeters](https://github.com/chrisdpeters)
20
+ [implemented](https://github.com/liveeditor/draftsman/commit/eae59a6991d9aef18a9f9a811ccc7a8668cd351f)
21
+ [#47](https://github.com/liveeditor/draftsman/issues/47) -
22
+ Add ``#save_draft` method to classes initialized with ``#has_drafts`
23
+
24
+ ### Bug Fixes
25
+
26
+ - [@chrisdpeters](https://github.com/chrisdpeters)
27
+ [fixed](https://github.com/liveeditor/draftsman/commit/696caf78baff938ebdf98c2867f6c4d2610b4611)
28
+ [#49](https://github.com/liveeditor/draftsman/issues/49) -
29
+ irb: warn: can't alias context from irb_context
30
+
31
+ ### Deprecations/Breaking Changes
32
+
33
+ - Now only supports ActiveRecord 4+.
34
+ - `#draft_creation` and `#draft_update` are now deprecated and will be removed
35
+ in v1.0.0. Use `#save_draft` instead.
36
+
3
37
  ## 0.5.1 - August 20, 2016
4
38
 
5
39
  - [@chrisdpeters](https://github.com/chrisdpeters)