producer-stdlib 0.0.5 → 0.0.6

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: 72c4348461bc2a8c12dcd47ee307e8604cc50fa1
4
- data.tar.gz: a3ede50542093af7e758db40fbd03404f2d426f5
3
+ metadata.gz: 6807d8926b2ba935351acb4c3c0f184ede8deff7
4
+ data.tar.gz: f164843bdf28498cef2e8bea7e8081057919112d
5
5
  SHA512:
6
- metadata.gz: 65092fab528abd92d9dda816f860d0a6659bb50c2d649ac55d4b3c163c41c24b9a17068978fa728ce5400b2bb29868ef5450ed663b2a5fc5488fd68e0f6b5d63
7
- data.tar.gz: 0dd96d62208c5cc855a39d3c623bbec20f3e2cb28795a3c93f2637f16b226376051ab654416f93fde9233f9f112dade25e66e224a54b2a0ef62083423bf2fffa
6
+ metadata.gz: c7e6e8d3d728ce574554ff8db4152c69db0315b29cbcb19b2c3c217a21785595df9a40fe29e31d960d226ac19761b7a803e84fb55be7f5a5cf7f8976af7bea21
7
+ data.tar.gz: 9cbebdaf22c7fd154331a6f72fbe929d513c5db9c12303612c3f23e4335c78558b069c62102b335f34dbaf48d4fd01699ddde7131e00687b896cc37e6bd88150
@@ -15,10 +15,6 @@ module Producer
15
15
  file_append path, content
16
16
  end
17
17
 
18
- STDLib.define_macro :file_write do |path, content|
19
- file_write path, content
20
- end
21
-
22
18
  STDLib.define_macro :file_write_once do |path, content|
23
19
  condition { no_file_eq path, content }
24
20
 
@@ -1,5 +1,5 @@
1
1
  module Producer
2
2
  module STDLib
3
- VERSION = '0.0.5'.freeze
3
+ VERSION = '0.0.6'.freeze
4
4
  end
5
5
  end
@@ -3,7 +3,7 @@ require File.expand_path('../lib/producer/stdlib/version', __FILE__)
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'producer-stdlib'
5
5
  s.version = Producer::STDLib::VERSION.dup
6
- s.summary = 'Provisioning tool'
6
+ s.summary = 'Standard library for producer'
7
7
  s.description = <<-eoh.gsub(/^ +/, '')
8
8
  Standard library for producer (gem: producer-core).
9
9
  eoh
@@ -14,5 +14,5 @@ Gem::Specification.new do |s|
14
14
 
15
15
  s.files = `git ls-files`.split $/
16
16
 
17
- s.add_dependency 'producer-core', '~> 0.3', '>= 0.3.2'
17
+ s.add_dependency 'producer-core', '~> 0.3', '>= 0.3.2'
18
18
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: producer-stdlib
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thibault Jouan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-22 00:00:00.000000000 Z
11
+ date: 2014-09-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: producer-core
@@ -38,7 +38,6 @@ extensions: []
38
38
  extra_rdoc_files: []
39
39
  files:
40
40
  - lib/producer/stdlib.rb
41
- - lib/producer/stdlib/base.rb
42
41
  - lib/producer/stdlib/freebsd.rb
43
42
  - lib/producer/stdlib/freebsd/ports.rb
44
43
  - lib/producer/stdlib/fs.rb
@@ -68,6 +67,6 @@ rubyforge_project:
68
67
  rubygems_version: 2.2.2
69
68
  signing_key:
70
69
  specification_version: 4
71
- summary: Provisioning tool
70
+ summary: Standard library for producer
72
71
  test_files: []
73
72
  has_rdoc:
@@ -1,6 +0,0 @@
1
- module Producer
2
- module STDLib
3
- module Base
4
- end
5
- end
6
- end