bendiken-rakefile 0.0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +19 -0
- data/README +58 -0
- data/Rakefile +4 -0
- data/VERSION +1 -0
- data/lib/rakefile.rb +1 -0
- metadata +66 -0
data/LICENSE
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
Copyright (c) 2009 Arto Bendiken <http://ar.to/>
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
of this software and associated documentation files (the "Software"), to
|
5
|
+
deal in the Software without restriction, including without limitation the
|
6
|
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
7
|
+
sell copies of the Software, and to permit persons to whom the Software is
|
8
|
+
furnished to do so, subject to the following conditions:
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in
|
11
|
+
all copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
18
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
19
|
+
IN THE SOFTWARE.
|
data/README
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
== Rakefile
|
2
|
+
|
3
|
+
This is a KISS (Keep It Simple, Stupid) approach to Rakefiles for my Ruby
|
4
|
+
projects. It may or may not be of use to you.
|
5
|
+
|
6
|
+
|
7
|
+
== Examples
|
8
|
+
|
9
|
+
Using this in your own Ruby projects couldn't be simpler - just make a
|
10
|
+
Rakefile that consists of these two lines, and you're done:
|
11
|
+
|
12
|
+
require 'rubygems'
|
13
|
+
require 'rakefile'
|
14
|
+
|
15
|
+
If you like this approach, but not necessarily the specific Rake tasks I've
|
16
|
+
defined, the naming conventions I've used, or any other little thing, don't
|
17
|
+
despair - wanting to do things my own way is exactly why I created this
|
18
|
+
project, and there's no reason why you can't have your cake and eat it, too.
|
19
|
+
|
20
|
+
To use your own customizations, just fork the project on GitHub, and then
|
21
|
+
add one single extra line to your Rakefile to explicitly specify the gem to
|
22
|
+
be used; for example, this is how I would ensure my own Rakefile gem is
|
23
|
+
loaded:
|
24
|
+
|
25
|
+
require 'rubygems'
|
26
|
+
gem 'bendiken-rakefile'
|
27
|
+
require 'rakefile'
|
28
|
+
|
29
|
+
|
30
|
+
== Download
|
31
|
+
|
32
|
+
To get a local working copy of this repository, do:
|
33
|
+
|
34
|
+
% git clone git://github.com/bendiken/rakefile.git
|
35
|
+
|
36
|
+
If you want to customize the functionality for your own requirements, fork
|
37
|
+
the project on GitHub instead:
|
38
|
+
|
39
|
+
* http://github.com/bendiken/rakefile
|
40
|
+
|
41
|
+
|
42
|
+
== Installation
|
43
|
+
|
44
|
+
To use this in your Ruby projects, first install the gem from GitHub as
|
45
|
+
follows:
|
46
|
+
|
47
|
+
% [sudo] gem install bendiken-rakefile -s http://gems.github.com
|
48
|
+
|
49
|
+
|
50
|
+
== Authors
|
51
|
+
|
52
|
+
* Arto Bendiken (mailto:arto.bendiken@gmail.com) - http://ar.to
|
53
|
+
|
54
|
+
|
55
|
+
== License
|
56
|
+
|
57
|
+
All source code is available under the terms of the MIT license. For more
|
58
|
+
information, see the accompanying LICENSE file.
|
data/Rakefile
ADDED
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.0
|
data/lib/rakefile.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'rake'
|
metadata
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bendiken-rakefile
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Arto Bendiken
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-04-18 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rake
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
description: This is a KISS (Keep It Simple, Stupid) approach to Rakefiles for Ruby gems.
|
26
|
+
email: arto.bendiken@gmail.com
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files: []
|
32
|
+
|
33
|
+
files:
|
34
|
+
- LICENSE
|
35
|
+
- README
|
36
|
+
- Rakefile
|
37
|
+
- VERSION
|
38
|
+
- lib/rakefile.rb
|
39
|
+
has_rdoc: false
|
40
|
+
homepage: http://github.com/bendiken/rakefile
|
41
|
+
post_install_message:
|
42
|
+
rdoc_options: []
|
43
|
+
|
44
|
+
require_paths:
|
45
|
+
- lib
|
46
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - ">="
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: 1.8.2
|
51
|
+
version:
|
52
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: "0"
|
57
|
+
version:
|
58
|
+
requirements: []
|
59
|
+
|
60
|
+
rubyforge_project:
|
61
|
+
rubygems_version: 1.2.0
|
62
|
+
signing_key:
|
63
|
+
specification_version: 2
|
64
|
+
summary: A KISS (Keep It Simple, Stupid) approach to gem Rakefiles.
|
65
|
+
test_files: []
|
66
|
+
|