ccls-common_lib 4.0.2 → 4.1.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 +4 -4
- data/lib/common_lib/active_support_extension/pending.rb +7 -0
- data/lib/common_lib/railtie.rb +6 -6
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 676abb3bcf88a41401e2081c9bab7434e8697041
|
|
4
|
+
data.tar.gz: c787c42895a2c2878c800e51604d732d72a5eb98
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e3838affcc230e4f5a0d01d72088fb6b7249b52f3ab8134ea6651a3a85647cc47ca235831401765b936b40687b12744b6b947daec7176ae42d409914c5d340b
|
|
7
|
+
data.tar.gz: 88d0f99729f9bc9d1312d7b2cfa5ce52abbcbbe88ad535112424688616305dde147136374ac3780011095e87baee8a96336166027c09635782bee01b93aa20d8
|
|
@@ -114,3 +114,10 @@ module ActiveSupport
|
|
|
114
114
|
end # module Pending
|
|
115
115
|
end # module Testing
|
|
116
116
|
end # module ActiveSupport
|
|
117
|
+
|
|
118
|
+
#
|
|
119
|
+
# As of Rails 4.1, pending is gone. No biggy as I wasn't using that version.
|
|
120
|
+
# But this change caused my file to not be included.
|
|
121
|
+
# I'd rather use built in code, but I don't like "skip"'s style.
|
|
122
|
+
#
|
|
123
|
+
ActiveSupport::TestCase.send(:include, ActiveSupport::Testing::Pending)
|
data/lib/common_lib/railtie.rb
CHANGED
|
@@ -18,7 +18,7 @@ module CommonLib
|
|
|
18
18
|
# end
|
|
19
19
|
# end
|
|
20
20
|
|
|
21
|
-
rake_tasks {
|
|
21
|
+
# rake_tasks {
|
|
22
22
|
#
|
|
23
23
|
# Use caution. This would load the files in the app's lib/tasks/
|
|
24
24
|
# Not sure if that was in addition to the gem, or instead of, but
|
|
@@ -27,11 +27,11 @@ module CommonLib
|
|
|
27
27
|
# load "tasks/common_lib.rake"
|
|
28
28
|
# load "tasks/csv.rake"
|
|
29
29
|
# load "tasks/database.rake"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
Dir["#{File.dirname(__FILE__)}/../tasks/**/*.rake"].sort.each { |ext| load ext }
|
|
33
|
-
|
|
34
|
-
}
|
|
30
|
+
#
|
|
31
|
+
#
|
|
32
|
+
# Dir["#{File.dirname(__FILE__)}/../tasks/**/*.rake"].sort.each { |ext| load ext }
|
|
33
|
+
#
|
|
34
|
+
# }
|
|
35
35
|
end
|
|
36
36
|
|
|
37
37
|
# class Railtie
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ccls-common_lib
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0
|
|
4
|
+
version: 4.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- George 'Jake' Wendt
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-04-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: CCLS Common Lib gem
|
|
14
14
|
email: github@jakewendt.com
|