border-patrol 0.1.14.1 → 0.1.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 723ba08ae26ae1a513d33bd49a179f7e184a23d7
4
- data.tar.gz: aa49896916a9c83fda43e192f85734b25a883c51
3
+ metadata.gz: 71d8f2752d1198fb89132d3c9c7d142da4d00dd5
4
+ data.tar.gz: 5c7ef035bfe123bccfd9b5e5f527bd8bc07ce34a
5
5
  SHA512:
6
- metadata.gz: 5954d6cc661ce21662e9d5a6cd4d9b7a9baa79188eafb0c321934d7f5102eb32eab99637e7f7cf612058e03b97433d1281d1ff9a553bf56990e78eec47b28ab4
7
- data.tar.gz: fed9f6bf25cb5b6f680b737ed37ec5ff3da60b4a55678e4dcc8141fa840760fb7ad6cdea98ee9dc82cc1921265f2af64a0399ece82b0ff7d1a4ddc0a8056f8ca
6
+ metadata.gz: 1a181444e4a4937d4bc003a9b13eb334c127a3fb966aad766269450740796818eed3557b0e2273d74760adee325bee4db80ad13c852350cd59b91860d956a5d1
7
+ data.tar.gz: e29fb7fb59bcd4cb042f224393587754008bca9f2414eed7271a64d326b4ee84518e224bd130cb212c3a21a6d0c93a08c57b637a85808e0e98d9b1807af3bf88
data/.gitignore CHANGED
@@ -1,18 +1,3 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- coverage
6
- InstalledFiles
7
- lib/bundler/man
1
+ Gemfile.lock
8
2
  pkg
9
- rdoc
10
- spec/reports
11
- test/tmp
12
- test/version_tmp
13
3
  tmp
14
-
15
- # YARD artifacts
16
- .yardoc
17
- _yardoc
18
- doc/
data/lib/border-patrol.rb CHANGED
@@ -32,11 +32,13 @@ module BorderPatrol
32
32
  private
33
33
 
34
34
  def pending_migrations
35
- Rails.logger.quietly do
36
- if ActiveRecord::Migrator.respond_to?(:open)
37
- ActiveRecord::Migrator.open(ActiveRecord::Migrator.migrations_paths).pending_migrations
38
- else
39
- ActiveRecord::Migrator.new(:up, ActiveRecord::Migrator.migrations_paths).pending_migrations
35
+ Rails.logger.silence_stream(STDOUT) do
36
+ Rails.logger.silence_stream(STDERR) do
37
+ if ActiveRecord::Migrator.respond_to?(:open)
38
+ ActiveRecord::Migrator.open(ActiveRecord::Migrator.migrations_paths).pending_migrations
39
+ else
40
+ ActiveRecord::Migrator.new(:up, ActiveRecord::Migrator.migrations_paths).pending_migrations
41
+ end
40
42
  end
41
43
  end
42
44
  end
@@ -1,3 +1,3 @@
1
1
  module BorderPatrol
2
- VERSION = '0.1.14.1'.freeze
2
+ VERSION = '0.1.15'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: border-patrol
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.14.1
4
+ version: 0.1.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leonid Beder
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-08 00:00:00.000000000 Z
11
+ date: 2014-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -64,7 +64,6 @@ files:
64
64
  - ".rspec"
65
65
  - ".travis.yml"
66
66
  - Gemfile
67
- - Gemfile.lock
68
67
  - LICENSE
69
68
  - README.md
70
69
  - Rakefile
data/Gemfile.lock DELETED
@@ -1,107 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- border-patrol (0.1.14.1)
5
- rails (>= 3)
6
- timers
7
-
8
- GEM
9
- remote: http://rubygems.org/
10
- specs:
11
- actionmailer (4.1.8)
12
- actionpack (= 4.1.8)
13
- actionview (= 4.1.8)
14
- mail (~> 2.5, >= 2.5.4)
15
- actionpack (4.1.8)
16
- actionview (= 4.1.8)
17
- activesupport (= 4.1.8)
18
- rack (~> 1.5.2)
19
- rack-test (~> 0.6.2)
20
- actionview (4.1.8)
21
- activesupport (= 4.1.8)
22
- builder (~> 3.1)
23
- erubis (~> 2.7.0)
24
- activemodel (4.1.8)
25
- activesupport (= 4.1.8)
26
- builder (~> 3.1)
27
- activerecord (4.1.8)
28
- activemodel (= 4.1.8)
29
- activesupport (= 4.1.8)
30
- arel (~> 5.0.0)
31
- activesupport (4.1.8)
32
- i18n (~> 0.6, >= 0.6.9)
33
- json (~> 1.7, >= 1.7.7)
34
- minitest (~> 5.1)
35
- thread_safe (~> 0.1)
36
- tzinfo (~> 1.1)
37
- arel (5.0.1.20140414130214)
38
- builder (3.2.2)
39
- diff-lcs (1.2.5)
40
- erubis (2.7.0)
41
- hike (1.2.3)
42
- hitimes (1.2.2)
43
- i18n (0.6.11)
44
- json (1.8.1)
45
- mail (2.6.3)
46
- mime-types (>= 1.16, < 3)
47
- mime-types (2.4.3)
48
- minitest (5.4.3)
49
- multi_json (1.10.1)
50
- rack (1.5.2)
51
- rack-test (0.6.2)
52
- rack (>= 1.0)
53
- rails (4.1.8)
54
- actionmailer (= 4.1.8)
55
- actionpack (= 4.1.8)
56
- actionview (= 4.1.8)
57
- activemodel (= 4.1.8)
58
- activerecord (= 4.1.8)
59
- activesupport (= 4.1.8)
60
- bundler (>= 1.3.0, < 2.0)
61
- railties (= 4.1.8)
62
- sprockets-rails (~> 2.0)
63
- railties (4.1.8)
64
- actionpack (= 4.1.8)
65
- activesupport (= 4.1.8)
66
- rake (>= 0.8.7)
67
- thor (>= 0.18.1, < 2.0)
68
- rake (10.4.2)
69
- rdoc (4.2.0)
70
- json (~> 1.4)
71
- rspec (3.1.0)
72
- rspec-core (~> 3.1.0)
73
- rspec-expectations (~> 3.1.0)
74
- rspec-mocks (~> 3.1.0)
75
- rspec-core (3.1.7)
76
- rspec-support (~> 3.1.0)
77
- rspec-expectations (3.1.2)
78
- diff-lcs (>= 1.2.0, < 2.0)
79
- rspec-support (~> 3.1.0)
80
- rspec-mocks (3.1.3)
81
- rspec-support (~> 3.1.0)
82
- rspec-support (3.1.2)
83
- sprockets (2.12.3)
84
- hike (~> 1.2)
85
- multi_json (~> 1.0)
86
- rack (~> 1.0)
87
- tilt (~> 1.1, != 1.3.0)
88
- sprockets-rails (2.2.2)
89
- actionpack (>= 3.0)
90
- activesupport (>= 3.0)
91
- sprockets (>= 2.8, < 4.0)
92
- thor (0.19.1)
93
- thread_safe (0.3.4)
94
- tilt (1.4.1)
95
- timers (4.0.1)
96
- hitimes
97
- tzinfo (1.2.2)
98
- thread_safe (~> 0.1)
99
-
100
- PLATFORMS
101
- ruby
102
-
103
- DEPENDENCIES
104
- border-patrol!
105
- rake
106
- rdoc
107
- rspec