rubysl-rake 1.0.0 → 1.0.1

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: dbb0d2a946171bbe078c54dcd1181694b3a91382
4
- data.tar.gz: 221a6d71b052f8a05e46d89a2483623a5854cd62
3
+ metadata.gz: 0401ee1d9d662c5ab4c166dae9b123632ead6a06
4
+ data.tar.gz: 89db2c1fb0c2c8ed64bc86ed117c8baf276cd056
5
5
  SHA512:
6
- metadata.gz: 0b59f326b01a592e8a4cc1298a99018de9a7ed7cddfc8677cf90ca70810811a06d5bbcb9e132381368bc4e6cd16e7ce673e74319a368b2e74a8d1fca1d509522
7
- data.tar.gz: 6ff215e7db28155ffdbd811f2b444322594b014c8906ad05a2de04a05aba1333602f2cb361ba34d64e7dc7d31d44660b9929d1df72a7ddf51dac56f577b5d030
6
+ metadata.gz: 923a7a5077274f6e777ed4f447ec61a2c9df515be5081cbb43d67736b2bf21df4b9c45402e3c408ae1df5775c09736e9da1c4cedf39de84e38344e80cacb5781
7
+ data.tar.gz: 828406b0a975ca51bbde59f7183a816ba9137af6c1871b6ce5e32e8b8b14e9233488ed7891c5142205f7922a5fecda8551315b868e079f53ac06778bced324c6
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubysl-rake
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
  - Brian Shirai
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-09-14 00:00:00.000000000 Z
11
+ date: 2013-12-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubysl-date
@@ -206,22 +206,14 @@ dependencies:
206
206
  - - ~>
207
207
  - !ruby/object:Gem::Version
208
208
  version: '10.0'
209
- description: Ruby standard library used by rake.
209
+ description: A meta-gem for the Ruby standard library components used by rake.
210
210
  email:
211
211
  - brixen@gmail.com
212
212
  executables: []
213
213
  extensions: []
214
214
  extra_rdoc_files: []
215
- files:
216
- - .gitignore
217
- - Gemfile
218
- - LICENSE
219
- - README.md
220
- - Rakefile
221
- - lib/rubysl/rake.rb
222
- - lib/rubysl/rake/version.rb
223
- - rubysl-rake.gemspec
224
- homepage: https://github.com/rubysl/rubysl-rake
215
+ files: []
216
+ homepage: http://rubysl.github.com
225
217
  licenses:
226
218
  - BSD
227
219
  metadata: {}
@@ -244,6 +236,5 @@ rubyforge_project:
244
236
  rubygems_version: 2.0.7
245
237
  signing_key:
246
238
  specification_version: 4
247
- summary: Ruby standard library used by rake.
239
+ summary: A meta-gem for the Ruby standard library components used by rake.
248
240
  test_files: []
249
- has_rdoc:
data/.gitignore DELETED
@@ -1,17 +0,0 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- Gemfile.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
13
- rdoc
14
- spec/reports
15
- test/tmp
16
- test/version_tmp
17
- tmp
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in rubysl-rake.gemspec
4
- gemspec
data/LICENSE DELETED
@@ -1,25 +0,0 @@
1
- Copyright (c) 2013, Brian Shirai
2
- All rights reserved.
3
-
4
- Redistribution and use in source and binary forms, with or without
5
- modification, are permitted provided that the following conditions are met:
6
-
7
- 1. Redistributions of source code must retain the above copyright notice, this
8
- list of conditions and the following disclaimer.
9
- 2. Redistributions in binary form must reproduce the above copyright notice,
10
- this list of conditions and the following disclaimer in the documentation
11
- and/or other materials provided with the distribution.
12
- 3. Neither the name of the library nor the names of its contributors may be
13
- used to endorse or promote products derived from this software without
14
- specific prior written permission.
15
-
16
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19
- DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT,
20
- INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21
- BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
23
- OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
24
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
25
- EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
data/README.md DELETED
@@ -1,29 +0,0 @@
1
- # Rubysl::Rake
2
-
3
- TODO: Write a gem description
4
-
5
- ## Installation
6
-
7
- Add this line to your application's Gemfile:
8
-
9
- gem 'rubysl-rake'
10
-
11
- And then execute:
12
-
13
- $ bundle
14
-
15
- Or install it yourself as:
16
-
17
- $ gem install rubysl-rake
18
-
19
- ## Usage
20
-
21
- TODO: Write usage instructions here
22
-
23
- ## Contributing
24
-
25
- 1. Fork it
26
- 2. Create your feature branch (`git checkout -b my-new-feature`)
27
- 3. Commit your changes (`git commit -am 'Add some feature'`)
28
- 4. Push to the branch (`git push origin my-new-feature`)
29
- 5. Create new Pull Request
data/Rakefile DELETED
@@ -1 +0,0 @@
1
- require "bundler/gem_tasks"
@@ -1,7 +0,0 @@
1
- require "rubysl/rake/version"
2
-
3
- module Rubysl
4
- module Rake
5
- # Your code goes here...
6
- end
7
- end
@@ -1,5 +0,0 @@
1
- module Rubysl
2
- module Rake
3
- VERSION = "1.0.0"
4
- end
5
- end
@@ -1,36 +0,0 @@
1
- # coding: utf-8
2
- require './lib/rubysl/rake/version'
3
-
4
- Gem::Specification.new do |spec|
5
- spec.name = "rubysl-rake"
6
- spec.version = Rubysl::Rake::VERSION
7
- spec.authors = ["Brian Shirai"]
8
- spec.email = ["brixen@gmail.com"]
9
- spec.description = %q{Ruby standard library used by rake.}
10
- spec.summary = %q{Ruby standard library used by rake.}
11
- spec.homepage = "https://github.com/rubysl/rubysl-rake"
12
- spec.license = "BSD"
13
-
14
- spec.files = `git ls-files`.split($/)
15
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
16
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
17
- spec.require_paths = ["lib"]
18
-
19
- spec.required_ruby_version = "~> 1.8.7"
20
-
21
- spec.add_runtime_dependency "rubysl-date", "~> 1.0"
22
- spec.add_runtime_dependency "rubysl-fileutils", "~> 1.0"
23
- spec.add_runtime_dependency "rubysl-find", "~> 1.0"
24
- spec.add_runtime_dependency "rubysl-monitor", "~> 1.0"
25
- spec.add_runtime_dependency "rubysl-net-ftp", "~> 1.0"
26
- spec.add_runtime_dependency "rubysl-optparse", "~> 1.0"
27
- spec.add_runtime_dependency "rubysl-ostruct", "~> 1.0"
28
- spec.add_runtime_dependency "rubysl-set", "~> 1.0"
29
- spec.add_runtime_dependency "rubysl-shellwords", "~> 1.0"
30
- spec.add_runtime_dependency "rubysl-singleton", "~> 1.0"
31
- spec.add_runtime_dependency "rubysl-tempfile", "~> 1.0"
32
- spec.add_runtime_dependency "rubysl-thread", "~> 1.0"
33
-
34
- spec.add_development_dependency "bundler", "~> 1.3"
35
- spec.add_development_dependency "rake", "~> 10.0"
36
- end