letsencrypt_plugin 0.0.7 → 0.0.8
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/app/controllers/letsencrypt_plugin/application_controller.rb +1 -1
- data/app/models/letsencrypt_plugin/challenge.rb +2 -2
- data/config/initializers/letsencrypt_plugin.rb +3 -3
- data/lib/letsencrypt_plugin.rb +26 -21
- data/lib/letsencrypt_plugin/version.rb +1 -1
- data/lib/tasks/letsencrypt_plugin_tasks.rake +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +3191 -0
- data/test/letsencrypt_plugin_test.rb +157 -25
- data/test/rotator.sublime-project +8 -0
- data/test/rotator.sublime-workspace +1079 -0
- data/test/test_helper.rb +1 -14
- metadata +9 -23
- data/app/assets/javascripts/letsencrypt_plugin/application.js +0 -13
- data/app/assets/stylesheets/letsencrypt_plugin/application.css +0 -15
- data/app/helpers/letsencrypt_plugin/application_helper.rb +0 -4
- data/app/views/layouts/letsencrypt_plugin/application.html.erb +0 -1
data/test/test_helper.rb
CHANGED
@@ -28,18 +28,5 @@ if ActiveSupport::TestCase.respond_to?(:fixture_path=)
|
|
28
28
|
ActiveSupport::TestCase.fixtures :all
|
29
29
|
end
|
30
30
|
|
31
|
-
|
32
|
-
# MinitestVcr::Spec.configure!
|
33
|
-
|
34
|
-
# require 'vcr'
|
35
|
-
# VCR.configure do |c|
|
36
|
-
# c.cassette_library_dir = File.expand_path('../../test/cassettes', __FILE__)
|
37
|
-
# # c.configure_rspec_metadata!
|
38
|
-
# c.hook_into :webmock
|
39
|
-
# c.ignore_localhost = false
|
40
|
-
# c.default_cassette_options = { record: :once, match_requests_on: [:method, :host, :path] }
|
41
|
-
# c.allow_http_connections_when_no_cassette = false
|
42
|
-
# c.debug_logger = File.open(File.join(File.expand_path('../../test/cassettes', __FILE__), 'letsencrypt.log'), 'w')
|
43
|
-
# end
|
44
|
-
|
31
|
+
require 'webmock/minitest'
|
45
32
|
require 'mocha/mini_test'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: letsencrypt_plugin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lukasz Gromanowski
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.
|
33
|
+
version: 0.3.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.
|
40
|
+
version: 0.3.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: minitest
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -136,20 +136,6 @@ dependencies:
|
|
136
136
|
- - ">="
|
137
137
|
- !ruby/object:Gem::Version
|
138
138
|
version: '0'
|
139
|
-
- !ruby/object:Gem::Dependency
|
140
|
-
name: minitest-vcr
|
141
|
-
requirement: !ruby/object:Gem::Requirement
|
142
|
-
requirements:
|
143
|
-
- - ">="
|
144
|
-
- !ruby/object:Gem::Version
|
145
|
-
version: '0'
|
146
|
-
type: :development
|
147
|
-
prerelease: false
|
148
|
-
version_requirements: !ruby/object:Gem::Requirement
|
149
|
-
requirements:
|
150
|
-
- - ">="
|
151
|
-
- !ruby/object:Gem::Version
|
152
|
-
version: '0'
|
153
139
|
- !ruby/object:Gem::Dependency
|
154
140
|
name: mocha
|
155
141
|
requirement: !ruby/object:Gem::Requirement
|
@@ -189,12 +175,8 @@ extra_rdoc_files: []
|
|
189
175
|
files:
|
190
176
|
- MIT-LICENSE
|
191
177
|
- Rakefile
|
192
|
-
- app/assets/javascripts/letsencrypt_plugin/application.js
|
193
|
-
- app/assets/stylesheets/letsencrypt_plugin/application.css
|
194
178
|
- app/controllers/letsencrypt_plugin/application_controller.rb
|
195
|
-
- app/helpers/letsencrypt_plugin/application_helper.rb
|
196
179
|
- app/models/letsencrypt_plugin/challenge.rb
|
197
|
-
- app/views/layouts/letsencrypt_plugin/application.html.erb
|
198
180
|
- config/initializers/letsencrypt_plugin.rb
|
199
181
|
- config/routes.rb
|
200
182
|
- db/migrate/20151206135029_create_letsencrypt_plugin_challenges.rb
|
@@ -259,6 +241,8 @@ files:
|
|
259
241
|
- test/le.sublime-workspace
|
260
242
|
- test/letsencrypt_plugin_test.rb
|
261
243
|
- test/models/letsencrypt_plugin/challenge_test.rb
|
244
|
+
- test/rotator.sublime-project
|
245
|
+
- test/rotator.sublime-workspace
|
262
246
|
- test/test_helper.rb
|
263
247
|
homepage: https://github.com/lgromanowski/letsencrypt-plugin
|
264
248
|
licenses:
|
@@ -270,7 +254,7 @@ require_paths:
|
|
270
254
|
- lib
|
271
255
|
required_ruby_version: !ruby/object:Gem::Requirement
|
272
256
|
requirements:
|
273
|
-
- - "
|
257
|
+
- - ">="
|
274
258
|
- !ruby/object:Gem::Version
|
275
259
|
version: 2.1.0
|
276
260
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
@@ -288,7 +272,9 @@ test_files:
|
|
288
272
|
- test/controllers/application_controller_test.rb
|
289
273
|
- test/cassettes/letsencrypt.log
|
290
274
|
- test/cassettes/registration_agree_terms.yml
|
275
|
+
- test/rotator.sublime-project
|
291
276
|
- test/test_helper.rb
|
277
|
+
- test/rotator.sublime-workspace
|
292
278
|
- test/le.sublime-workspace
|
293
279
|
- test/letsencrypt_plugin_test.rb
|
294
280
|
- test/le.sublime-project
|
@@ -1,13 +0,0 @@
|
|
1
|
-
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
2
|
-
// listed below.
|
3
|
-
//
|
4
|
-
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
5
|
-
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
|
6
|
-
//
|
7
|
-
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
8
|
-
// compiled file.
|
9
|
-
//
|
10
|
-
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
11
|
-
// about supported directives.
|
12
|
-
//
|
13
|
-
//= require_tree .
|
@@ -1,15 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
-
* listed below.
|
4
|
-
*
|
5
|
-
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
-
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
|
7
|
-
*
|
8
|
-
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
9
|
-
* compiled file so the styles you add here take precedence over styles defined in any styles
|
10
|
-
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
11
|
-
* file per style scope.
|
12
|
-
*
|
13
|
-
*= require_tree .
|
14
|
-
*= require_self
|
15
|
-
*/
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= yield %>
|