technicalpickles-jeweler 0.6.3 → 0.6.4
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.
- data/TODO +5 -2
- data/VERSION.yml +1 -1
- data/lib/jeweler/tasks.rb +5 -0
- data/test/tasks_test.rb +2 -0
- metadata +2 -2
data/TODO
CHANGED
@@ -1,7 +1,10 @@
|
|
1
|
+
* Add gem build and install to top level
|
2
|
+
* Auto-enable rubygem generation
|
1
3
|
* Generators
|
2
4
|
* Rails generator for making a plugin that's Jeweler enabled
|
3
5
|
* Support rspec?
|
6
|
+
* Support test/unit
|
7
|
+
* Change generated test filename (test_foo not foo_test)
|
4
8
|
* Releasing
|
5
9
|
* Create tag based on version
|
6
|
-
*
|
7
|
-
* Open hasmygembuiltyet.org
|
10
|
+
* Open hasmygembuiltyet.org
|
data/VERSION.yml
CHANGED
data/lib/jeweler/tasks.rb
CHANGED
@@ -22,10 +22,15 @@ class Jeweler
|
|
22
22
|
$stdout.puts "Created VERSION.yml: 0.0.0"
|
23
23
|
end
|
24
24
|
|
25
|
+
desc "Build gem"
|
26
|
+
task :build => :'gem:build'
|
25
27
|
|
26
28
|
desc "Build gem"
|
27
29
|
task :gem => :'gem:build'
|
28
30
|
|
31
|
+
desc "Install gem using sudo"
|
32
|
+
task :install => :'gem:install'
|
33
|
+
|
29
34
|
namespace :gem do
|
30
35
|
desc "Install gem using sudo"
|
31
36
|
task :install => :build do
|
data/test/tasks_test.rb
CHANGED
@@ -22,6 +22,8 @@ class TasksTest < Test::Unit::TestCase
|
|
22
22
|
end
|
23
23
|
|
24
24
|
should 'define tasks' do
|
25
|
+
assert Task.task_defined?(:build)
|
26
|
+
assert Task.task_defined?(:install)
|
25
27
|
assert Task.task_defined?(:gemspec)
|
26
28
|
assert Task.task_defined?(:'gemspec:validate')
|
27
29
|
assert Task.task_defined?(:'gemspec:generate')
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: technicalpickles-jeweler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh Nichols
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date:
|
12
|
+
date: 2009-01-13 00:00:00 -08:00
|
13
13
|
default_executable: jeweler
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|