active_record_calculator 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -48,7 +48,7 @@ module ActiveRecordCalculator
48
48
  end
49
49
 
50
50
  def select
51
- s = ["SELECT\n"]
51
+ s = "SELECT\n"
52
52
  s += @columns.join(', ') + "\n"
53
53
  s += @operations.collect {|op| op.build_select(@klass)}.join(",\n")
54
54
  end
@@ -1,3 +1,3 @@
1
1
  module ActiveRecordCalculator
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_record_calculator
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 3
10
- version: 0.0.3
9
+ - 4
10
+ version: 0.0.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Grady Griffin