nanoc-git 1.0.0 → 1.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 149d3ce1ac2618693cecb4012183416eecc8e75f
4
- data.tar.gz: bb5ba8c9c5d493db2d49bec4e3b51ad0d2572d53
3
+ metadata.gz: 8e84ad92170f71d52fb4ad0a98e3be6b075706dc
4
+ data.tar.gz: 48d0403491724f939178a871c5b9fc7346ee75a6
5
5
  SHA512:
6
- metadata.gz: a82b71839715cfd7d6a06caa7d1653971c80ebfccc9e617825d6b1d23aafc5fffe0e49091755e0b3dede7166b11a9ef14452d5b5a5d31ba34274dac9ec177178
7
- data.tar.gz: 58147d1895ddd1fc7c15cf2c92deb23928171daf53aee256f9216dac8e9f030f989d542df15c94e95ffaae3498706ca300693882f604b29ddc28f28f33060860
6
+ metadata.gz: a07182b56c302214ef12b41e438e2bdf85ca60c09ee8207a9ca9efc204b86265d07cccb821e7f016208a73bd158f1a39d6abde1b4678a2e23ba980fbfd6a39bd
7
+ data.tar.gz: 779ed08b2cd185eb4201a8f78968f4a1ff9852efd19a8cb1694da48be58e6426abb2c1a036bb51705a59396f899b23149bbc115cb4ca26c0f2887579b6526c62
data/NEWS.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # nanoc-git news
2
2
 
3
- ## 1.0.0 (???)
3
+ ## 1.0.0
4
4
 
5
5
  Initial release.
6
+
7
+ ## 1.0.1 (2015-11-15)
8
+
9
+ Added support for Nanoc 4
10
+
data/README.md CHANGED
@@ -6,6 +6,10 @@ This provides a Git deployer for [nanoc](http://nanoc.ws).
6
6
 
7
7
  Maintained by [lifepillar](https://github.com/lifepillar).
8
8
 
9
+ ## Compatibility
10
+
11
+ Nanoc 4.0.0 or later.
12
+
9
13
  ## Installation
10
14
 
11
15
  `gem install nanoc-git`
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Nanoc
4
4
  module Git
5
- VERSION = '1.0.0'
5
+ VERSION = '1.0.1'
6
6
  end
7
7
  end
@@ -8,13 +8,13 @@ Gem::Specification.new do |s|
8
8
  s.version = Nanoc::Git::VERSION
9
9
  s.homepage = 'http://nanoc.ws/'
10
10
  s.summary = 'Git deployer for nanoc'
11
- s.description = 'Provides a git depoyer for nanoc'
11
+ s.description = 'Provides a Git deployer for nanoc'
12
12
 
13
13
  s.author = 'Lifepillar'
14
14
  s.email = 'github@lifepillar.org'
15
15
  s.license = 'MIT'
16
16
 
17
- s.required_ruby_version = '>= 1.9.3'
17
+ s.required_ruby_version = '>= 2.2.0'
18
18
 
19
19
  s.files = Dir['[A-Z]*'] +
20
20
  Dir['{lib,test}/**/*'] +
@@ -24,6 +24,6 @@ Gem::Specification.new do |s|
24
24
  s.rdoc_options = [ '--main', 'README.md' ]
25
25
  s.extra_rdoc_files = [ 'LICENSE', 'README.md', 'NEWS.md' ]
26
26
 
27
- s.add_runtime_dependency('nanoc', '>= 3.7.0', '< 4.0.0')
27
+ s.add_runtime_dependency('nanoc', '>= 3.7.0', '< 5.0.0')
28
28
  s.add_development_dependency('bundler', '~> 1.5')
29
29
  end
@@ -74,7 +74,7 @@ git init
74
74
  git config --get remote.origin.url
75
75
  git checkout master
76
76
  git add -A
77
- git commit -am Automated commit at .+ by nanoc \\d+\\.\\d+\\.\\d+
77
+ git commit -am Automated commit at .+ by nanoc \\d+\\.\\d+\\.\\d+\\w*
78
78
  git push origin master
79
79
  EOS
80
80
 
@@ -142,7 +142,7 @@ git init
142
142
  git config --get remote.github.url
143
143
  git checkout gh-pages
144
144
  git add -A
145
- git commit -am Automated commit at .+ by nanoc \\d+\\.\\d+\\.\\d+
145
+ git commit -am Automated commit at .+ by nanoc \\d+\\.\\d+\\.\\d+\\w*
146
146
  git push -f github gh-pages
147
147
  EOS
148
148
 
@@ -176,7 +176,7 @@ EOS
176
176
  git config --get remote.origin.url
177
177
  git checkout master
178
178
  git add -A
179
- git commit -am Automated commit at .+ by nanoc \\d+\\.\\d+\\.\\d+
179
+ git commit -am Automated commit at .+ by nanoc \\d+\\.\\d+\\.\\d+\\w*
180
180
  git push origin master
181
181
  EOS
182
182
 
@@ -210,7 +210,7 @@ EOS
210
210
  git init
211
211
  git checkout master
212
212
  git add -A
213
- git commit -am Automated commit at .+ by nanoc \\d+\\.\\d+\\.\\d+
213
+ git commit -am Automated commit at .+ by nanoc \\d+\\.\\d+\\.\\d+\\w*
214
214
  git push git@github.com:myself/myproject.git master
215
215
  EOS
216
216
 
@@ -244,7 +244,7 @@ EOS
244
244
  git init
245
245
  git checkout master
246
246
  git add -A
247
- git commit -am Automated commit at .+ by nanoc \\d+\\.\\d+\\.\\d+
247
+ git commit -am Automated commit at .+ by nanoc \\d+\\.\\d+\\.\\d+\\w*
248
248
  git push https://github.com/nanoc/nanoc.git master
249
249
  EOS
250
250
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nanoc-git
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lifepillar
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: 3.7.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: 4.0.0
22
+ version: 5.0.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: 3.7.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: 4.0.0
32
+ version: 5.0.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: bundler
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -44,7 +44,7 @@ dependencies:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
46
  version: '1.5'
47
- description: Provides a git depoyer for nanoc
47
+ description: Provides a Git deployer for nanoc
48
48
  email: github@lifepillar.org
49
49
  executables: []
50
50
  extensions: []
@@ -64,7 +64,7 @@ files:
64
64
  - lib/nanoc/git/deployer.rb
65
65
  - lib/nanoc/git/version.rb
66
66
  - nanoc-git.gemspec
67
- - test/filters/test_external.rb
67
+ - test/filters/test_git.rb
68
68
  - test/helper.rb
69
69
  homepage: http://nanoc.ws/
70
70
  licenses:
@@ -80,7 +80,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
80
80
  requirements:
81
81
  - - ">="
82
82
  - !ruby/object:Gem::Version
83
- version: 1.9.3
83
+ version: 2.2.0
84
84
  required_rubygems_version: !ruby/object:Gem::Requirement
85
85
  requirements:
86
86
  - - ">="