dm-is-tree 0.9.2 → 0.9.3
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/History.txt +1 -0
- data/Manifest.txt +10 -0
- data/{README → README.txt} +1 -2
- data/Rakefile +21 -28
- data/lib/dm-is-tree.rb +1 -1
- data/lib/dm-is-tree/is/version.rb +7 -0
- metadata +30 -14
data/History.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
data/Manifest.txt
ADDED
data/{README → README.txt}
RENAMED
data/Rakefile
CHANGED
|
@@ -1,51 +1,44 @@
|
|
|
1
1
|
require 'rubygems'
|
|
2
2
|
require 'spec'
|
|
3
|
-
require 'rake/clean'
|
|
4
|
-
require 'rake/gempackagetask'
|
|
5
3
|
require 'spec/rake/spectask'
|
|
6
4
|
require 'pathname'
|
|
7
5
|
|
|
8
|
-
|
|
6
|
+
ROOT = Pathname(__FILE__).dirname.expand_path
|
|
7
|
+
require ROOT + 'lib/dm-is-tree/is/version'
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
s.add_dependency('dm-core', "=#{s.version}")
|
|
24
|
-
end
|
|
9
|
+
AUTHOR = "Timothy Bennett"
|
|
10
|
+
EMAIL = "leapord729@comcast.net"
|
|
11
|
+
GEM_NAME = "dm-is-tree"
|
|
12
|
+
GEM_VERSION = DataMapper::Is::Tree::VERSION
|
|
13
|
+
GEM_DEPENDENCIES = [["dm-core", GEM_VERSION]]
|
|
14
|
+
GEM_CLEAN = ["log", "pkg"]
|
|
15
|
+
GEM_EXTRAS = { :has_rdoc => true, :extra_rdoc_files => %w[ README.txt LICENSE TODO ] }
|
|
16
|
+
|
|
17
|
+
PROJECT_NAME = "datamapper"
|
|
18
|
+
PROJECT_URL = "http://github.com/sam/dm-more/tree/master/dm-is-tree"
|
|
19
|
+
PROJECT_DESCRIPTION = PROJECT_SUMMARY = "DataMapper plugin allowing the creation of tree structures from data models"
|
|
20
|
+
|
|
21
|
+
require ROOT.parent + 'tasks/hoe'
|
|
25
22
|
|
|
26
23
|
task :default => [ :spec ]
|
|
27
24
|
|
|
28
25
|
WIN32 = (RUBY_PLATFORM =~ /win32|mingw|cygwin/) rescue nil
|
|
29
26
|
SUDO = WIN32 ? '' : ('sudo' unless ENV['SUDOLESS'])
|
|
30
27
|
|
|
31
|
-
|
|
32
|
-
pkg.gem_spec = spec
|
|
33
|
-
end
|
|
34
|
-
|
|
35
|
-
desc "Install #{spec.name} #{spec.version} (default ruby)"
|
|
28
|
+
desc "Install #{GEM_NAME} #{GEM_VERSION} (default ruby)"
|
|
36
29
|
task :install => [ :package ] do
|
|
37
|
-
sh "#{SUDO} gem install --local pkg/#{
|
|
30
|
+
sh "#{SUDO} gem install --local pkg/#{GEM_NAME}-#{GEM_VERSION} --no-update-sources", :verbose => false
|
|
38
31
|
end
|
|
39
32
|
|
|
40
|
-
desc "Uninstall #{
|
|
33
|
+
desc "Uninstall #{GEM_NAME} #{GEM_VERSION} (default ruby)"
|
|
41
34
|
task :uninstall => [ :clobber ] do
|
|
42
|
-
sh "#{SUDO} gem uninstall #{
|
|
35
|
+
sh "#{SUDO} gem uninstall #{GEM_NAME} -v#{GEM_VERSION} -I -x", :verbose => false
|
|
43
36
|
end
|
|
44
37
|
|
|
45
38
|
namespace :jruby do
|
|
46
|
-
desc "Install #{
|
|
39
|
+
desc "Install #{GEM_NAME} #{GEM_VERSION} with JRuby"
|
|
47
40
|
task :install => [ :package ] do
|
|
48
|
-
sh %{#{SUDO} jruby -S gem install --local pkg/#{
|
|
41
|
+
sh %{#{SUDO} jruby -S gem install --local pkg/#{GEM_NAME}-#{GEM_VERSION} --no-update-sources}, :verbose => false
|
|
49
42
|
end
|
|
50
43
|
end
|
|
51
44
|
|
data/lib/dm-is-tree.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dm-is-tree
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Timothy Bennett
|
|
@@ -9,41 +9,57 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2008-
|
|
12
|
+
date: 2008-07-24 00:00:00 -05:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: dm-core
|
|
17
|
+
type: :runtime
|
|
17
18
|
version_requirement:
|
|
18
19
|
version_requirements: !ruby/object:Gem::Requirement
|
|
19
20
|
requirements:
|
|
20
21
|
- - "="
|
|
21
22
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 0.9.
|
|
23
|
+
version: 0.9.3
|
|
24
|
+
version:
|
|
25
|
+
- !ruby/object:Gem::Dependency
|
|
26
|
+
name: hoe
|
|
27
|
+
type: :development
|
|
28
|
+
version_requirement:
|
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 1.7.0
|
|
23
34
|
version:
|
|
24
35
|
description: DataMapper plugin allowing the creation of tree structures from data models
|
|
25
|
-
email:
|
|
36
|
+
email:
|
|
37
|
+
- leapord729@comcast.net
|
|
26
38
|
executables: []
|
|
27
39
|
|
|
28
40
|
extensions: []
|
|
29
41
|
|
|
30
42
|
extra_rdoc_files:
|
|
31
|
-
- README
|
|
43
|
+
- README.txt
|
|
32
44
|
- LICENSE
|
|
33
45
|
- TODO
|
|
34
46
|
files:
|
|
35
|
-
-
|
|
36
|
-
- lib/dm-is-tree.rb
|
|
37
|
-
- spec/spec.opts
|
|
38
|
-
- Rakefile
|
|
39
|
-
- README
|
|
47
|
+
- History.txt
|
|
40
48
|
- LICENSE
|
|
49
|
+
- Manifest.txt
|
|
50
|
+
- README.txt
|
|
51
|
+
- Rakefile
|
|
41
52
|
- TODO
|
|
53
|
+
- lib/dm-is-tree.rb
|
|
54
|
+
- lib/dm-is-tree/is/tree.rb
|
|
55
|
+
- lib/dm-is-tree/is/version.rb
|
|
56
|
+
- spec/spec.opts
|
|
42
57
|
has_rdoc: true
|
|
43
58
|
homepage: http://github.com/sam/dm-more/tree/master/dm-is-tree
|
|
44
59
|
post_install_message:
|
|
45
|
-
rdoc_options:
|
|
46
|
-
|
|
60
|
+
rdoc_options:
|
|
61
|
+
- --main
|
|
62
|
+
- README.txt
|
|
47
63
|
require_paths:
|
|
48
64
|
- lib
|
|
49
65
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -60,8 +76,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
60
76
|
version:
|
|
61
77
|
requirements: []
|
|
62
78
|
|
|
63
|
-
rubyforge_project:
|
|
64
|
-
rubygems_version: 1.0
|
|
79
|
+
rubyforge_project: datamapper
|
|
80
|
+
rubygems_version: 1.2.0
|
|
65
81
|
signing_key:
|
|
66
82
|
specification_version: 2
|
|
67
83
|
summary: DataMapper plugin allowing the creation of tree structures from data models
|