activeupdate 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/activeupdate.rb +2 -2
  3. metadata +2 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 12be84f7fe34db02cfefc508d0f9878548e62dbf
4
- data.tar.gz: 11ce00996b963e365797df1ba0af6cb0c4ac672f
3
+ metadata.gz: 664c376d3b8eb47fa19439eaa1cdc7e4cf013b69
4
+ data.tar.gz: 67ca186986966f8901550a47b483c6c98fa85125
5
5
  SHA512:
6
- metadata.gz: 398b69c0a128312639e62a025af9e91423591d01c2b1bf6d5d9551b5700d748453698721c0fdd3f57c2b1fc3a250585e7d9311c532a63a878751355655d9eb82
7
- data.tar.gz: edd12172fc6a76a7abbf4e9be88857606b5588d4a35ec05af9448c31140b07c19b8b77e83acbbe1c8f08535205becde6910df3dfd4fd4c173cb4e42e816d733e
6
+ metadata.gz: ea2715913a11547c73113cf881b0a49033d4ea3f65600a7ace6bef48f6fb033a5ab8dfc56e1fbc2016a66bfb649a8dae799544040f9f89e5959876bbe990781a
7
+ data.tar.gz: a37e9851d29caadf781f43cce91e1cc457becc3b8fd37801be6125d798f88badd80f62ca14f8ff5e935a4a9492d883095001a0a0bfc3d7bf886f36fc63087d77
@@ -5,8 +5,8 @@ module ActiveRecordExtension
5
5
 
6
6
  # Updates an object (or multiple objects) and saves it to the database. The resulting object is returned whether the object was saved successfully to the database or not.
7
7
  #
8
- # @param ids [Array], an array of ids
9
- # @param attributes [Array], an array of attribute hashes
8
+ # @param ids [Array] an array of ids
9
+ # @param attributes [Array] an array of attribute hashes
10
10
  # @return [Object] the object.
11
11
  def update!(ids, attributes)
12
12
  update_manager = Arel::UpdateManager.new
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeupdate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew H. Carpenter
@@ -40,6 +40,5 @@ rubyforge_project:
40
40
  rubygems_version: 2.5.1
41
41
  signing_key:
42
42
  specification_version: 4
43
- summary: activerecord extension to facilitate updating multiple records (leveraging
44
- case statements)
43
+ summary: activerecord extension to facilitate updating multiple records
45
44
  test_files: []