omniauth-matique 0.1.2 → 0.1.3
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 +5 -5
- data/.ruby-gemset +1 -1
- data/.ruby-version +1 -1
- data/.travis.yml +4 -3
- data/.watchr +4 -2
- data/MIT-LICENSE +1 -1
- data/README.md +1 -1
- data/lib/omniauth-matique/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 70851c52b690826e63ae3dcad913fc67dcad0f7547f7bfb7cb996f32efb6761a
|
|
4
|
+
data.tar.gz: 76bd96e70412a83af5b8808bca395d6d3c8efcb87f839164c4b9651e2f030151
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4700e51b7a268d4d2354754ef2b9a891d3bfa6292e4cf1d5ee36317bb6ffb0f23dcbb6d0280bb9f4fe401309795efdc9af34b8d5756efc9fb8fdffba93911d2f
|
|
7
|
+
data.tar.gz: 4b62f047aa903c5c76e166c3e37b0f08bc10b190577ad3bd599bdd269789c010c15686db1926c27f3b5c0c31111b75d627ec484661fd93f216a2add4873fa535
|
data/.ruby-gemset
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
rails-5.
|
|
1
|
+
rails-5.2
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
ruby-2.
|
|
1
|
+
ruby-2.5.1
|
data/.travis.yml
CHANGED
data/.watchr
CHANGED
|
@@ -17,6 +17,7 @@ end
|
|
|
17
17
|
def run_it(type, file)
|
|
18
18
|
case type
|
|
19
19
|
when 'test'; run %Q{ruby -I"lib:test" -rubygems #{file}}
|
|
20
|
+
# when 'test'; run %Q{rails test #{file}}
|
|
20
21
|
when 'spec'; run %Q{rspec -X #{file}}
|
|
21
22
|
else; puts "#{H} unknown type: #{type}, file: #{file}"
|
|
22
23
|
end
|
|
@@ -24,6 +25,7 @@ end
|
|
|
24
25
|
|
|
25
26
|
def run_all_tests
|
|
26
27
|
puts "\n#{HH} Running all tests #{HH}\n"
|
|
28
|
+
# system "spring stop"
|
|
27
29
|
%w{test}.each { |dir| run "rake #{dir} RAILS_ENV=test" if File.exists?(dir) }
|
|
28
30
|
%w{spec}.each { |dir| run "rake #{dir} RAILS_ENV=test" if File.exists?(dir) }
|
|
29
31
|
end
|
|
@@ -41,8 +43,8 @@ end
|
|
|
41
43
|
watch("#{type}/.*/*_#{type}\.rb") { |match| run_it type, match[0] }
|
|
42
44
|
}
|
|
43
45
|
%w{rb erb haml slim}.each { |type|
|
|
44
|
-
watch("app
|
|
45
|
-
run_matching_files(
|
|
46
|
+
watch("app/.*/(.*)\.#{type}") { |match|
|
|
47
|
+
run_matching_files(match[1])
|
|
46
48
|
}
|
|
47
49
|
}
|
|
48
50
|
|
data/MIT-LICENSE
CHANGED
data/README.md
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniauth-matique
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dittmar Krall
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-04-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -96,7 +96,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
96
96
|
version: '0'
|
|
97
97
|
requirements: []
|
|
98
98
|
rubyforge_project:
|
|
99
|
-
rubygems_version: 2.6
|
|
99
|
+
rubygems_version: 2.7.6
|
|
100
100
|
signing_key:
|
|
101
101
|
specification_version: 4
|
|
102
102
|
summary: OmniAuth strategy for matique
|