capistrano_sentinel 0.0.9 → 0.0.10

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: cb4ca0ce5ab4b0150d14a46992263d9c53da5614
4
- data.tar.gz: 6ea5e82079b69f1edb4064fd02cd5ce02c14ce61
3
+ metadata.gz: 5a1e41110f550198e8926d85040fbb9d0f0b38d0
4
+ data.tar.gz: 07873dc3a8d1b6af8a55ab057f311e39d2d4aeaa
5
5
  SHA512:
6
- metadata.gz: 406203038d54b2c42b02a01c74bce08b58add529a24258b01292bf172d79b64206289df08f362af6f63212b93c37a2c927f8c5c3217766a40a85333600c43426
7
- data.tar.gz: d6e17b230487451d05de6c48ca8ea26d4ba7e38c929eece3b23bcd27e84363698e3521bb1dc5625c533447ddefb8098f7aec4b94af22af950921c49643641269
6
+ metadata.gz: b8f644fd6adf08e70b9144b07ba6f78c500284c1ffa268d86566c8dbac0b99504a3eb794ea853763199a44c384abf262e448a75b9cf9d835b485c5a37cda9826
7
+ data.tar.gz: f4e8d7168145b03a75e45d0bf6a5ad93e1cc22988893d9796615c18f4445bb202cdbb4cfdf4b8eb44dad703df591276f40edc41a512ab1d48338c5d8f562c7f4
data/Gemfile CHANGED
@@ -1,3 +1,18 @@
1
1
  source 'http://rubygems.org'
2
2
 
3
3
  gemspec
4
+
5
+ group :development, :test do
6
+ gem 'rake', '>= 10.4'
7
+ gem 'rspec', '~> 3.5'
8
+ gem 'simplecov', '~> 0.11'
9
+ gem 'simplecov-summary', '~> 0.0.4'
10
+ gem 'mocha', '~> 1.1'
11
+ gem 'coveralls', '~> 0.7'
12
+ gem 'appraisal', '~> 2.1'
13
+
14
+ gem 'yard', '~> 0.8'
15
+ gem 'redcarpet', '~> 3.3'
16
+ gem 'github-markup', '~> 1.3'
17
+ gem 'inch', '~> 0.6'
18
+ end
data/Rakefile CHANGED
@@ -1,5 +1,4 @@
1
1
  # encoding: utf-8
2
- require File.expand_path('../lib/version', __FILE__)
3
2
  require 'rubygems'
4
3
  require 'bundler/setup'
5
4
  require 'bundler/gem_tasks'
@@ -28,16 +27,12 @@ task default: [:all]
28
27
  desc 'Test the plugin under all supported Rails versions.'
29
28
  task :all do |_t|
30
29
  if ENV['TRAVIS']
31
- # require 'json'
32
- # puts JSON.pretty_generate(ENV.to_hash)
33
- if ENV['BUNDLE_GEMFILE'] =~ /gemfiles/
34
- appraisal_name = ENV['BUNDLE_GEMFILE'].scan(/rails\_(.*)\.gemfile/).flatten.first
35
- command_prefix = "appraisal rails-#{appraisal_name}"
36
- exec ("#{command_prefix} bundle install && #{command_prefix} bundle exec rspec && bundle exec rake coveralls:push ")
37
- else
38
- exec(' bundle exec appraisal install && bundle exec rake appraisal spec && bundle exec rake coveralls:push')
39
- end
30
+ exec('bundle exec rake spec && bundle exec rake coveralls:push')
40
31
  else
41
- exec('bundle exec appraisal install && bundle exec rake appraisal spec')
32
+ exec('bundle exec rake spec')
42
33
  end
43
34
  end
35
+
36
+ task :docs do
37
+ exec('bundle exec inch --pedantic && bundle exec yard --list-undoc')
38
+ end
@@ -17,7 +17,7 @@ module CapistranoSentinel
17
17
  # minor release version
18
18
  MINOR = 0
19
19
  # tiny release version
20
- TINY = 9
20
+ TINY = 10
21
21
  # prelease version ( set this only if it is a prelease)
22
22
  PRE = nil
23
23
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano_sentinel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - bogdanRada
@@ -32,7 +32,6 @@ extensions: []
32
32
  extra_rdoc_files: []
33
33
  files:
34
34
  - Gemfile
35
- - Gemfile.lock
36
35
  - LICENSE.txt
37
36
  - README.md
38
37
  - Rakefile
@@ -1,133 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- enhanced_date_select (1.3.0)
5
-
6
- GEM
7
- remote: http://rubygems.org/
8
- specs:
9
- actionpack (4.2.6)
10
- actionview (= 4.2.6)
11
- activesupport (= 4.2.6)
12
- rack (~> 1.6)
13
- rack-test (~> 0.6.2)
14
- rails-dom-testing (~> 1.0, >= 1.0.5)
15
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
16
- actionview (4.2.6)
17
- activesupport (= 4.2.6)
18
- builder (~> 3.1)
19
- erubis (~> 2.7.0)
20
- rails-dom-testing (~> 1.0, >= 1.0.5)
21
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
22
- activesupport (4.2.6)
23
- i18n (~> 0.7)
24
- json (~> 1.7, >= 1.7.7)
25
- minitest (~> 5.1)
26
- thread_safe (~> 0.3, >= 0.3.4)
27
- tzinfo (~> 1.1)
28
- appraisal (2.1.0)
29
- bundler
30
- rake
31
- thor (>= 0.14.0)
32
- builder (3.2.2)
33
- colored (1.2)
34
- coveralls (0.8.14)
35
- json (>= 1.8, < 3)
36
- simplecov (~> 0.12.0)
37
- term-ansicolor (~> 1.3)
38
- thor (~> 0.19.1)
39
- tins (~> 1.6.0)
40
- diff-lcs (1.2.5)
41
- docile (1.1.5)
42
- erubis (2.7.0)
43
- i18n (0.7.0)
44
- json (1.8.3)
45
- loofah (2.0.3)
46
- nokogiri (>= 1.5.9)
47
- lorax (0.2.0)
48
- nokogiri (>= 1.4.0)
49
- metaclass (0.0.4)
50
- mini_portile2 (2.1.0)
51
- minitest (5.9.0)
52
- mocha (1.1.0)
53
- metaclass (~> 0.0.1)
54
- nokogiri (1.6.8)
55
- mini_portile2 (~> 2.1.0)
56
- pkg-config (~> 1.1.7)
57
- pkg-config (1.1.7)
58
- rack (1.6.4)
59
- rack-test (0.6.3)
60
- rack (>= 1.0)
61
- rails-deprecated_sanitizer (1.0.3)
62
- activesupport (>= 4.2.0.alpha)
63
- rails-dom-testing (1.0.7)
64
- activesupport (>= 4.2.0.beta, < 5.0)
65
- nokogiri (~> 1.6.0)
66
- rails-deprecated_sanitizer (>= 1.0.1)
67
- rails-html-sanitizer (1.0.3)
68
- loofah (~> 2.0)
69
- railties (4.2.6)
70
- actionpack (= 4.2.6)
71
- activesupport (= 4.2.6)
72
- rake (>= 0.8.7)
73
- thor (>= 0.18.1, < 2.0)
74
- rake (11.2.2)
75
- rspec-core (3.5.1)
76
- rspec-support (~> 3.5.0)
77
- rspec-expectations (3.5.0)
78
- diff-lcs (>= 1.2.0, < 2.0)
79
- rspec-support (~> 3.5.0)
80
- rspec-mocks (3.5.0)
81
- diff-lcs (>= 1.2.0, < 2.0)
82
- rspec-support (~> 3.5.0)
83
- rspec-rails (3.5.0)
84
- actionpack (>= 3.0)
85
- activesupport (>= 3.0)
86
- railties (>= 3.0)
87
- rspec-core (~> 3.5.0)
88
- rspec-expectations (~> 3.5.0)
89
- rspec-mocks (~> 3.5.0)
90
- rspec-support (~> 3.5.0)
91
- rspec-support (3.5.0)
92
- shoulda (3.5.0)
93
- shoulda-context (~> 1.0, >= 1.0.1)
94
- shoulda-matchers (>= 1.4.1, < 3.0)
95
- shoulda-context (1.2.1)
96
- shoulda-matchers (2.8.0)
97
- activesupport (>= 3.0.0)
98
- simplecov (0.12.0)
99
- docile (~> 1.1.0)
100
- json (>= 1.8, < 3)
101
- simplecov-html (~> 0.10.0)
102
- simplecov-html (0.10.0)
103
- simplecov-summary (0.0.4)
104
- colored
105
- simplecov
106
- term-ansicolor (1.3.2)
107
- tins (~> 1.0)
108
- thor (0.19.1)
109
- thread_safe (0.3.5)
110
- tins (1.6.0)
111
- tzinfo (1.2.2)
112
- thread_safe (~> 0.1)
113
-
114
- PLATFORMS
115
- ruby
116
-
117
- DEPENDENCIES
118
- appraisal (~> 2.1, >= 2.1)
119
- coveralls (~> 0.8, >= 0.8)
120
- enhanced_date_select!
121
- lorax (~> 0, >= 0.2)
122
- mocha (~> 1.1, >= 1.1.0)
123
- nokogiri (~> 1.6, >= 1.6)
124
- rack (>= 1.0)
125
- rake (~> 11.0, >= 11.0)
126
- rspec-mocks (~> 3.4, >= 3.4)
127
- rspec-rails (~> 3.4, >= 3.4)
128
- shoulda (~> 3.5, >= 3.5.0)
129
- simplecov (~> 0.11, >= 0.11)
130
- simplecov-summary (~> 0.0, >= 0.0.4)
131
-
132
- BUNDLED WITH
133
- 1.12.5