rake_plugins 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.
@@ -0,0 +1,28 @@
1
+ rake_plugins
2
+ ============
3
+
4
+ Simple Rails 3 plugin management using Rake.
5
+
6
+ Usage
7
+ -----
8
+
9
+ In your Gemfile:
10
+
11
+ gem "rake_plugins", :git => "git://github.com/nragaz/rake_plugins.git"
12
+
13
+ Adds the following Rake tasks:
14
+
15
+ plugin:list
16
+ plugin:install[<source>]
17
+ plugin:update[<name>]
18
+ plugin:update_all
19
+ plugin:remove[<name>]
20
+
21
+ Installed plugins and their sources are tracked in <tt>vendor/installed_plugins.yml</tt>.
22
+
23
+ You can also copy <tt>installed_plugins.yml</tt> from one app to another and then run <tt>plugin:update_all</tt>. Or, don't check in <tt>vendor/plugins</tt> -- just run <tt>plugin:update_all</tt> after deploy.
24
+
25
+ Why?
26
+ ----
27
+
28
+ Yes, [nobody uses plugins anymore](http://railsdispatch.com/posts/how-rails-3-enables-more-choices-part-1). Except for [Moonshine](http://github.com/nragaz/moonshine). So there you go.
@@ -0,0 +1,7 @@
1
+ module RakePlugins
2
+ class Railtie < Rails::Railtie
3
+ rake_tasks do
4
+ load File.expand_path("../tasks/plugins.rake", __FILE__)
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ module RakePlugins
2
+ VERSION = "0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,71 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rake_plugins
3
+ version: !ruby/object:Gem::Version
4
+ hash: 9
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 1
9
+ version: "0.1"
10
+ platform: ruby
11
+ authors:
12
+ - Nick Ragaz
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-06-06 00:00:00 -04:00
18
+ default_executable:
19
+ dependencies: []
20
+
21
+ description: Creates installed.yml in vendor/plugins to track your plugin sources and enable mass updating
22
+ email:
23
+ - nick.ragaz@gmail.com
24
+ executables: []
25
+
26
+ extensions: []
27
+
28
+ extra_rdoc_files: []
29
+
30
+ files:
31
+ - lib/rake_plugins/version.rb
32
+ - lib/rake_plugins.rb
33
+ - README.md
34
+ has_rdoc: true
35
+ homepage: http://github.com/nragaz/rake_plugins
36
+ licenses: []
37
+
38
+ post_install_message:
39
+ rdoc_options: []
40
+
41
+ require_paths:
42
+ - lib
43
+ required_ruby_version: !ruby/object:Gem::Requirement
44
+ none: false
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ hash: 3
49
+ segments:
50
+ - 0
51
+ version: "0"
52
+ required_rubygems_version: !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ hash: 23
58
+ segments:
59
+ - 1
60
+ - 3
61
+ - 6
62
+ version: 1.3.6
63
+ requirements: []
64
+
65
+ rubyforge_project: rake_plugins
66
+ rubygems_version: 1.3.7
67
+ signing_key:
68
+ specification_version: 3
69
+ summary: Simple Rails plugin management using Rake
70
+ test_files: []
71
+