dm-is-list 1.0.2 → 1.1.0.rc1
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/Gemfile +25 -93
- data/LICENSE +1 -1
- data/README.rdoc +34 -13
- data/Rakefile +1 -6
- data/VERSION +1 -1
- data/dm-is-list.gemspec +43 -38
- data/tasks/spec.rake +0 -3
- metadata +63 -42
- data/.gitignore +0 -37
- data/tasks/ci.rake +0 -1
- data/tasks/local_gemfile.rake +0 -16
- data/tasks/metrics.rake +0 -36
data/Gemfile
CHANGED
@@ -1,111 +1,43 @@
|
|
1
|
-
|
2
|
-
# recommended to create a local Gemfile and use this instead of the git
|
3
|
-
# sources. This will make sure that you are developing against your
|
4
|
-
# other local datamapper sources that you currently work on. Gemfile.local
|
5
|
-
# will behave identically to the standard Gemfile apart from the fact that
|
6
|
-
# it fetches the datamapper gems from local paths. This means that you can use
|
7
|
-
# the same environment variables, like ADAPTER(S) or PLUGIN(S) when running
|
8
|
-
# bundle commands. Gemfile.local is added to .gitignore, so you don't need to
|
9
|
-
# worry about accidentally checking local development paths into git.
|
10
|
-
# In order to create a local Gemfile, all you need to do is run:
|
11
|
-
#
|
12
|
-
# bundle exec rake local_gemfile
|
13
|
-
#
|
14
|
-
# This will give you a Gemfile.local file that points to your local clones of
|
15
|
-
# the various datamapper gems. It's assumed that all datamapper repo clones
|
16
|
-
# reside in the same directory. You can use the Gemfile.local like so for
|
17
|
-
# running any bundle command:
|
18
|
-
#
|
19
|
-
# BUNDLE_GEMFILE=Gemfile.local bundle foo
|
20
|
-
#
|
21
|
-
# You can also specify which adapter(s) should be part of the bundle by setting
|
22
|
-
# an environment variable. This of course also works when using the Gemfile.local
|
23
|
-
#
|
24
|
-
# bundle foo # dm-sqlite-adapter
|
25
|
-
# ADAPTER=mysql bundle foo # dm-mysql-adapter
|
26
|
-
# ADAPTERS=sqlite,mysql bundle foo # dm-sqlite-adapter and dm-mysql-adapter
|
27
|
-
#
|
28
|
-
# Of course you can also use the ADAPTER(S) variable when using the Gemfile.local
|
29
|
-
# and running specs against selected adapters.
|
30
|
-
#
|
31
|
-
# For easily working with adapters supported on your machine, it's recommended
|
32
|
-
# that you first install all adapters that you are planning to use or work on
|
33
|
-
# by doing something like
|
34
|
-
#
|
35
|
-
# ADAPTERS=sqlite,mysql,postgres bundle install
|
36
|
-
#
|
37
|
-
# This will clone the various repositories and make them available to bundler.
|
38
|
-
# Once you have them installed you can easily switch between adapters for the
|
39
|
-
# various development tasks. Running something like
|
40
|
-
#
|
41
|
-
# ADAPTER=mysql bundle exec rake spec
|
42
|
-
#
|
43
|
-
# will make sure that the dm-mysql-adapter is part of the bundle, and will be used
|
44
|
-
# when running the specs.
|
45
|
-
#
|
46
|
-
# You can also specify which plugin(s) should be part of the bundle by setting
|
47
|
-
# an environment variable. This also works when using the Gemfile.local
|
48
|
-
#
|
49
|
-
# bundle foo # dm-migrations
|
50
|
-
# PLUGINS=dm-validations bundle foo # dm-migrations and dm-validations
|
51
|
-
# PLUGINS=dm-validations,dm-types bundle foo # dm-migrations, dm-validations and dm-types
|
52
|
-
#
|
53
|
-
# Of course you can combine the PLUGIN(S) and ADAPTER(S) env vars to run specs
|
54
|
-
# for certain adapter/plugin combinations.
|
55
|
-
#
|
56
|
-
# Finally, to speed up running specs and other tasks, it's recommended to run
|
57
|
-
#
|
58
|
-
# bundle lock
|
59
|
-
#
|
60
|
-
# after running 'bundle install' for the first time. This will make 'bundle exec' run
|
61
|
-
# a lot faster compared to the unlocked version. With an unlocked bundle you would
|
62
|
-
# typically just run 'bundle install' from time to time to fetch the latest sources from
|
63
|
-
# upstream. When you locked your bundle, you need to run
|
64
|
-
#
|
65
|
-
# bundle install --relock
|
66
|
-
#
|
67
|
-
# to make sure to fetch the latest updates and then lock the bundle again. Gemfile.lock
|
68
|
-
# is added to the .gitignore file, so you don't need to worry about accidentally checking
|
69
|
-
# it into version control.
|
1
|
+
require 'pathname'
|
70
2
|
|
71
3
|
source 'http://rubygems.org'
|
72
4
|
|
73
|
-
|
74
|
-
|
5
|
+
SOURCE = ENV.fetch('SOURCE', :git).to_sym
|
6
|
+
REPO_POSTFIX = SOURCE == :path ? '' : '.git'
|
7
|
+
DATAMAPPER = SOURCE == :path ? Pathname(__FILE__).dirname.parent : 'http://github.com/datamapper'
|
8
|
+
DM_VERSION = '~> 1.1.0.rc1'
|
75
9
|
|
76
|
-
group :runtime do
|
10
|
+
group :runtime do
|
77
11
|
|
78
12
|
if ENV['EXTLIB']
|
79
|
-
gem 'extlib',
|
13
|
+
gem 'extlib', '~> 0.9.15', SOURCE => "#{DATAMAPPER}/extlib#{REPO_POSTFIX}", :require => nil
|
80
14
|
else
|
81
|
-
gem 'activesupport', '~> 3.0.
|
15
|
+
gem 'activesupport', '~> 3.0.4', :require => nil
|
16
|
+
gem 'i18n', '~> 0.5.0'
|
82
17
|
end
|
83
18
|
|
84
|
-
gem 'dm-core',
|
85
|
-
gem 'dm-adjust',
|
19
|
+
gem 'dm-core', DM_VERSION, SOURCE => "#{DATAMAPPER}/dm-core#{REPO_POSTFIX}"
|
20
|
+
gem 'dm-adjust', DM_VERSION, SOURCE => "#{DATAMAPPER}/dm-adjust#{REPO_POSTFIX}"
|
86
21
|
|
87
22
|
end
|
88
23
|
|
89
|
-
group
|
24
|
+
group :development do
|
90
25
|
|
91
|
-
gem '
|
92
|
-
gem '
|
93
|
-
gem '
|
26
|
+
gem 'jeweler', '~> 1.5.2'
|
27
|
+
gem 'rake', '~> 0.8.7'
|
28
|
+
gem 'rspec', '~> 1.3.1'
|
94
29
|
|
95
30
|
end
|
96
31
|
|
97
|
-
group :quality do
|
32
|
+
group :quality do
|
98
33
|
|
99
|
-
gem '
|
100
|
-
gem '
|
101
|
-
gem '
|
102
|
-
gem 'roodi', '~> 2.1'
|
103
|
-
gem 'yard', '~> 0.5'
|
104
|
-
gem 'yardstick', '~> 0.1'
|
34
|
+
gem 'rcov', '~> 0.9.9', :platforms => :mri_18
|
35
|
+
gem 'yard', '~> 0.6'
|
36
|
+
gem 'yardstick', '~> 0.2'
|
105
37
|
|
106
38
|
end
|
107
39
|
|
108
|
-
group :datamapper do
|
40
|
+
group :datamapper do
|
109
41
|
|
110
42
|
adapters = ENV['ADAPTER'] || ENV['ADAPTERS']
|
111
43
|
adapters = adapters.to_s.tr(',', ' ').split.uniq - %w[ in_memory ]
|
@@ -115,27 +47,27 @@ group :datamapper do # We need this because we want to pin these dependencies to
|
|
115
47
|
|
116
48
|
if (do_adapters = DM_DO_ADAPTERS & adapters).any?
|
117
49
|
options = {}
|
118
|
-
options[:git] = "#{DATAMAPPER}/do
|
50
|
+
options[:git] = "#{DATAMAPPER}/do#{REPO_POSTFIX}" if ENV['DO_GIT'] == 'true'
|
119
51
|
|
120
|
-
gem 'data_objects',
|
52
|
+
gem 'data_objects', DO_VERSION, options.dup
|
121
53
|
|
122
54
|
do_adapters.each do |adapter|
|
123
55
|
adapter = 'sqlite3' if adapter == 'sqlite'
|
124
56
|
gem "do_#{adapter}", DO_VERSION, options.dup
|
125
57
|
end
|
126
58
|
|
127
|
-
gem 'dm-do-adapter', DM_VERSION,
|
59
|
+
gem 'dm-do-adapter', DM_VERSION, SOURCE => "#{DATAMAPPER}/dm-do-adapter#{REPO_POSTFIX}"
|
128
60
|
end
|
129
61
|
|
130
62
|
adapters.each do |adapter|
|
131
|
-
gem "dm-#{adapter}-adapter", DM_VERSION,
|
63
|
+
gem "dm-#{adapter}-adapter", DM_VERSION, SOURCE => "#{DATAMAPPER}/dm-#{adapter}-adapter#{REPO_POSTFIX}"
|
132
64
|
end
|
133
65
|
|
134
66
|
plugins = ENV['PLUGINS'] || ENV['PLUGIN']
|
135
67
|
plugins = plugins.to_s.tr(',', ' ').split.push('dm-migrations').uniq
|
136
68
|
|
137
69
|
plugins.each do |plugin|
|
138
|
-
gem plugin, DM_VERSION,
|
70
|
+
gem plugin, DM_VERSION, SOURCE => "#{DATAMAPPER}/#{plugin}#{REPO_POSTFIX}"
|
139
71
|
end
|
140
72
|
|
141
73
|
end
|
data/LICENSE
CHANGED
data/README.rdoc
CHANGED
@@ -6,17 +6,17 @@ DataMapper plugin for creating and organizing lists.
|
|
6
6
|
|
7
7
|
=== Stable
|
8
8
|
|
9
|
-
Install the
|
9
|
+
Install the <tt>dm-is-list</tt> gem.
|
10
10
|
|
11
|
-
$ (sudo)? gem install dm-
|
11
|
+
$ (sudo)? gem install dm-is-list
|
12
12
|
|
13
13
|
=== Edge
|
14
14
|
|
15
|
-
Download or clone
|
15
|
+
Download or clone <tt>dm-is-list</tt> from Github[http://github.com/datamapper/dm-is-list/].
|
16
16
|
|
17
|
-
$ cd /path/to/dm-
|
17
|
+
$ cd /path/to/dm-is-list
|
18
18
|
|
19
|
-
$ rake install # will install
|
19
|
+
$ rake install # will install dm-is-list
|
20
20
|
|
21
21
|
# enter your password at the prompt, if required
|
22
22
|
$ password ...
|
@@ -24,11 +24,7 @@ Download or clone +dm-more+ from Github[http://github.com/datamapper/dm-more/].
|
|
24
24
|
|
25
25
|
== Getting started
|
26
26
|
|
27
|
-
|
28
|
-
|
29
|
-
----
|
30
|
-
|
31
|
-
Require +dm-is-list+ in your app.
|
27
|
+
To start using this gem, just require <tt>dm-is-list</tt> in your app.
|
32
28
|
|
33
29
|
require 'dm-core' # must be required first
|
34
30
|
require 'dm-is-list'
|
@@ -64,7 +60,7 @@ Once we have our Users and Lists, we might want to work with...
|
|
64
60
|
|
65
61
|
== Movements of list items
|
66
62
|
|
67
|
-
Any list item can be moved around <b>within the same list</b> easily through the <tt
|
63
|
+
Any list item can be moved around <b>within the same list</b> easily through the <tt>#move</tt> method.
|
68
64
|
|
69
65
|
|
70
66
|
=== :move( vector )
|
@@ -129,8 +125,8 @@ When you move items between scopes, the list will try to work with your intentio
|
|
129
125
|
|
130
126
|
Move the item from list to new list and add the item to the bottom of that list.
|
131
127
|
|
132
|
-
item.user_id
|
133
|
-
item.move_to_list(10)
|
128
|
+
item.user_id # => 1
|
129
|
+
item.move_to_list(10) # => the scope id ie User.get(10).id
|
134
130
|
|
135
131
|
# results in...
|
136
132
|
item.user_id # => 10
|
@@ -218,3 +214,28 @@ As I said above, for a better understanding of this gem/plugin, make sure you st
|
|
218
214
|
|
219
215
|
If something is not behaving intuitively, it is a bug, and should be reported.
|
220
216
|
Report it here: http://datamapper.lighthouseapp.com/
|
217
|
+
|
218
|
+
== TODOs
|
219
|
+
|
220
|
+
* None at the moment. Or do you think something is missing?
|
221
|
+
|
222
|
+
|
223
|
+
== Note on Patches/Pull Requests
|
224
|
+
|
225
|
+
* Fork the project.
|
226
|
+
* Make your feature addition or bug fix.
|
227
|
+
* Add tests for it. This is important so we don't break it in a future version unintentionally.
|
228
|
+
* Commit, do not mess with rakefile, version, or history.
|
229
|
+
* (if you want to have your own version, that is fine but bump version in a commit by itself we can ignore when we pull)
|
230
|
+
* Send us a pull request. Bonus points for topic branches.
|
231
|
+
|
232
|
+
|
233
|
+
== Copyright
|
234
|
+
|
235
|
+
Copyright (c) 2011 Sindre Aarsaether. Released under the MIT License.
|
236
|
+
|
237
|
+
See LICENSE for details.
|
238
|
+
|
239
|
+
=== Credits
|
240
|
+
|
241
|
+
Credit also goes to these contributors[http://github.com/datamapper/dm-is-list/contributors].
|
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
|
4
4
|
begin
|
5
|
-
gem 'jeweler', '~> 1.
|
5
|
+
gem 'jeweler', '~> 1.5.2'
|
6
6
|
require 'jeweler'
|
7
7
|
|
8
8
|
Jeweler::Tasks.new do |gem|
|
@@ -15,11 +15,6 @@ begin
|
|
15
15
|
gem.has_rdoc = 'yard'
|
16
16
|
|
17
17
|
gem.rubyforge_project = 'datamapper'
|
18
|
-
|
19
|
-
gem.add_dependency 'dm-core', '~> 1.0.2'
|
20
|
-
gem.add_dependency 'dm-adjust', '~> 1.0.2'
|
21
|
-
|
22
|
-
gem.add_development_dependency 'rspec', '~> 1.3'
|
23
18
|
end
|
24
19
|
|
25
20
|
Jeweler::GemcutterTasks.new
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.1.0.rc1
|
data/dm-is-list.gemspec
CHANGED
@@ -1,71 +1,76 @@
|
|
1
1
|
# Generated by jeweler
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{dm-is-list}
|
8
|
-
s.version = "1.0.
|
8
|
+
s.version = "1.1.0.rc1"
|
9
9
|
|
10
|
-
s.required_rubygems_version = Gem::Requirement.new("
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Sindre Aarsaether"]
|
12
|
-
s.date = %q{
|
12
|
+
s.date = %q{2011-02-28}
|
13
13
|
s.description = %q{DataMapper plugin for creating and organizing lists}
|
14
14
|
s.email = %q{sindre [a] identu [d] no}
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE",
|
17
|
-
|
17
|
+
"README.rdoc"
|
18
18
|
]
|
19
19
|
s.files = [
|
20
|
-
"
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
"tasks/metrics.rake",
|
36
|
-
"tasks/spec.rake",
|
37
|
-
"tasks/yard.rake",
|
38
|
-
"tasks/yardstick.rake"
|
20
|
+
"Gemfile",
|
21
|
+
"LICENSE",
|
22
|
+
"README.rdoc",
|
23
|
+
"Rakefile",
|
24
|
+
"VERSION",
|
25
|
+
"dm-is-list.gemspec",
|
26
|
+
"lib/dm-is-list.rb",
|
27
|
+
"lib/dm-is-list/is/list.rb",
|
28
|
+
"spec/integration/list_spec.rb",
|
29
|
+
"spec/rcov.opts",
|
30
|
+
"spec/spec.opts",
|
31
|
+
"spec/spec_helper.rb",
|
32
|
+
"tasks/spec.rake",
|
33
|
+
"tasks/yard.rake",
|
34
|
+
"tasks/yardstick.rake"
|
39
35
|
]
|
40
|
-
s.has_rdoc = %q{yard}
|
41
36
|
s.homepage = %q{http://github.com/datamapper/dm-is-list}
|
42
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
43
37
|
s.require_paths = ["lib"]
|
44
38
|
s.rubyforge_project = %q{datamapper}
|
45
|
-
s.rubygems_version = %q{1.
|
39
|
+
s.rubygems_version = %q{1.5.2}
|
46
40
|
s.summary = %q{DataMapper plugin for creating and organizing lists}
|
47
41
|
s.test_files = [
|
48
42
|
"spec/integration/list_spec.rb",
|
49
|
-
|
43
|
+
"spec/spec_helper.rb"
|
50
44
|
]
|
51
45
|
|
52
46
|
if s.respond_to? :specification_version then
|
53
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
54
47
|
s.specification_version = 3
|
55
48
|
|
56
49
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
57
|
-
s.add_runtime_dependency(%q<
|
58
|
-
s.add_runtime_dependency(%q<
|
59
|
-
s.
|
50
|
+
s.add_runtime_dependency(%q<activesupport>, ["~> 3.0.4"])
|
51
|
+
s.add_runtime_dependency(%q<i18n>, ["~> 0.5.0"])
|
52
|
+
s.add_runtime_dependency(%q<dm-core>, ["~> 1.1.0.rc1"])
|
53
|
+
s.add_runtime_dependency(%q<dm-adjust>, ["~> 1.1.0.rc1"])
|
54
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
|
55
|
+
s.add_development_dependency(%q<rake>, ["~> 0.8.7"])
|
56
|
+
s.add_development_dependency(%q<rspec>, ["~> 1.3.1"])
|
60
57
|
else
|
61
|
-
s.add_dependency(%q<
|
62
|
-
s.add_dependency(%q<
|
63
|
-
s.add_dependency(%q<
|
58
|
+
s.add_dependency(%q<activesupport>, ["~> 3.0.4"])
|
59
|
+
s.add_dependency(%q<i18n>, ["~> 0.5.0"])
|
60
|
+
s.add_dependency(%q<dm-core>, ["~> 1.1.0.rc1"])
|
61
|
+
s.add_dependency(%q<dm-adjust>, ["~> 1.1.0.rc1"])
|
62
|
+
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
|
63
|
+
s.add_dependency(%q<rake>, ["~> 0.8.7"])
|
64
|
+
s.add_dependency(%q<rspec>, ["~> 1.3.1"])
|
64
65
|
end
|
65
66
|
else
|
66
|
-
s.add_dependency(%q<
|
67
|
-
s.add_dependency(%q<
|
68
|
-
s.add_dependency(%q<
|
67
|
+
s.add_dependency(%q<activesupport>, ["~> 3.0.4"])
|
68
|
+
s.add_dependency(%q<i18n>, ["~> 0.5.0"])
|
69
|
+
s.add_dependency(%q<dm-core>, ["~> 1.1.0.rc1"])
|
70
|
+
s.add_dependency(%q<dm-adjust>, ["~> 1.1.0.rc1"])
|
71
|
+
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
|
72
|
+
s.add_dependency(%q<rake>, ["~> 0.8.7"])
|
73
|
+
s.add_dependency(%q<rspec>, ["~> 1.3.1"])
|
69
74
|
end
|
70
75
|
end
|
71
76
|
|
data/tasks/spec.rake
CHANGED
metadata
CHANGED
@@ -1,12 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dm-is-list
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
5
|
-
|
6
|
-
- 1
|
7
|
-
- 0
|
8
|
-
- 2
|
9
|
-
version: 1.0.2
|
4
|
+
prerelease: 6
|
5
|
+
version: 1.1.0.rc1
|
10
6
|
platform: ruby
|
11
7
|
authors:
|
12
8
|
- Sindre Aarsaether
|
@@ -14,53 +10,86 @@ autorequire:
|
|
14
10
|
bindir: bin
|
15
11
|
cert_chain: []
|
16
12
|
|
17
|
-
date:
|
13
|
+
date: 2011-02-28 00:00:00 -08:00
|
18
14
|
default_executable:
|
19
15
|
dependencies:
|
20
16
|
- !ruby/object:Gem::Dependency
|
21
|
-
name:
|
22
|
-
prerelease: false
|
17
|
+
name: activesupport
|
23
18
|
requirement: &id001 !ruby/object:Gem::Requirement
|
24
19
|
none: false
|
25
20
|
requirements:
|
26
21
|
- - ~>
|
27
22
|
- !ruby/object:Gem::Version
|
28
|
-
|
29
|
-
- 1
|
30
|
-
- 0
|
31
|
-
- 2
|
32
|
-
version: 1.0.2
|
23
|
+
version: 3.0.4
|
33
24
|
type: :runtime
|
25
|
+
prerelease: false
|
34
26
|
version_requirements: *id001
|
35
27
|
- !ruby/object:Gem::Dependency
|
36
|
-
name:
|
37
|
-
prerelease: false
|
28
|
+
name: i18n
|
38
29
|
requirement: &id002 !ruby/object:Gem::Requirement
|
39
30
|
none: false
|
40
31
|
requirements:
|
41
32
|
- - ~>
|
42
33
|
- !ruby/object:Gem::Version
|
43
|
-
|
44
|
-
- 1
|
45
|
-
- 0
|
46
|
-
- 2
|
47
|
-
version: 1.0.2
|
34
|
+
version: 0.5.0
|
48
35
|
type: :runtime
|
36
|
+
prerelease: false
|
49
37
|
version_requirements: *id002
|
50
38
|
- !ruby/object:Gem::Dependency
|
51
|
-
name:
|
52
|
-
prerelease: false
|
39
|
+
name: dm-core
|
53
40
|
requirement: &id003 !ruby/object:Gem::Requirement
|
54
41
|
none: false
|
55
42
|
requirements:
|
56
43
|
- - ~>
|
57
44
|
- !ruby/object:Gem::Version
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
version: "1.3"
|
62
|
-
type: :development
|
45
|
+
version: 1.1.0.rc1
|
46
|
+
type: :runtime
|
47
|
+
prerelease: false
|
63
48
|
version_requirements: *id003
|
49
|
+
- !ruby/object:Gem::Dependency
|
50
|
+
name: dm-adjust
|
51
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ~>
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: 1.1.0.rc1
|
57
|
+
type: :runtime
|
58
|
+
prerelease: false
|
59
|
+
version_requirements: *id004
|
60
|
+
- !ruby/object:Gem::Dependency
|
61
|
+
name: jeweler
|
62
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
63
|
+
none: false
|
64
|
+
requirements:
|
65
|
+
- - ~>
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: 1.5.2
|
68
|
+
type: :development
|
69
|
+
prerelease: false
|
70
|
+
version_requirements: *id005
|
71
|
+
- !ruby/object:Gem::Dependency
|
72
|
+
name: rake
|
73
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
74
|
+
none: false
|
75
|
+
requirements:
|
76
|
+
- - ~>
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: 0.8.7
|
79
|
+
type: :development
|
80
|
+
prerelease: false
|
81
|
+
version_requirements: *id006
|
82
|
+
- !ruby/object:Gem::Dependency
|
83
|
+
name: rspec
|
84
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
85
|
+
none: false
|
86
|
+
requirements:
|
87
|
+
- - ~>
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 1.3.1
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: *id007
|
64
93
|
description: DataMapper plugin for creating and organizing lists
|
65
94
|
email: sindre [a] identu [d] no
|
66
95
|
executables: []
|
@@ -71,7 +100,6 @@ extra_rdoc_files:
|
|
71
100
|
- LICENSE
|
72
101
|
- README.rdoc
|
73
102
|
files:
|
74
|
-
- .gitignore
|
75
103
|
- Gemfile
|
76
104
|
- LICENSE
|
77
105
|
- README.rdoc
|
@@ -84,19 +112,16 @@ files:
|
|
84
112
|
- spec/rcov.opts
|
85
113
|
- spec/spec.opts
|
86
114
|
- spec/spec_helper.rb
|
87
|
-
- tasks/ci.rake
|
88
|
-
- tasks/local_gemfile.rake
|
89
|
-
- tasks/metrics.rake
|
90
115
|
- tasks/spec.rake
|
91
116
|
- tasks/yard.rake
|
92
117
|
- tasks/yardstick.rake
|
93
|
-
has_rdoc:
|
118
|
+
has_rdoc: true
|
94
119
|
homepage: http://github.com/datamapper/dm-is-list
|
95
120
|
licenses: []
|
96
121
|
|
97
122
|
post_install_message:
|
98
|
-
rdoc_options:
|
99
|
-
|
123
|
+
rdoc_options: []
|
124
|
+
|
100
125
|
require_paths:
|
101
126
|
- lib
|
102
127
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -104,21 +129,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
104
129
|
requirements:
|
105
130
|
- - ">="
|
106
131
|
- !ruby/object:Gem::Version
|
107
|
-
segments:
|
108
|
-
- 0
|
109
132
|
version: "0"
|
110
133
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
111
134
|
none: false
|
112
135
|
requirements:
|
113
|
-
- - "
|
136
|
+
- - ">"
|
114
137
|
- !ruby/object:Gem::Version
|
115
|
-
|
116
|
-
- 0
|
117
|
-
version: "0"
|
138
|
+
version: 1.3.1
|
118
139
|
requirements: []
|
119
140
|
|
120
141
|
rubyforge_project: datamapper
|
121
|
-
rubygems_version: 1.
|
142
|
+
rubygems_version: 1.5.2
|
122
143
|
signing_key:
|
123
144
|
specification_version: 3
|
124
145
|
summary: DataMapper plugin for creating and organizing lists
|
data/.gitignore
DELETED
@@ -1,37 +0,0 @@
|
|
1
|
-
## MAC OS
|
2
|
-
.DS_Store
|
3
|
-
|
4
|
-
## TEXTMATE
|
5
|
-
*.tmproj
|
6
|
-
tmtags
|
7
|
-
|
8
|
-
## EMACS
|
9
|
-
*~
|
10
|
-
\#*
|
11
|
-
.\#*
|
12
|
-
|
13
|
-
## VIM
|
14
|
-
*.swp
|
15
|
-
|
16
|
-
## Rubinius
|
17
|
-
*.rbc
|
18
|
-
|
19
|
-
## PROJECT::GENERAL
|
20
|
-
*.gem
|
21
|
-
coverage
|
22
|
-
rdoc
|
23
|
-
pkg
|
24
|
-
tmp
|
25
|
-
doc
|
26
|
-
log
|
27
|
-
.yardoc
|
28
|
-
measurements
|
29
|
-
|
30
|
-
## BUNDLER
|
31
|
-
.bundle
|
32
|
-
Gemfile.local
|
33
|
-
Gemfile.lock
|
34
|
-
Gemfile.local.lock
|
35
|
-
|
36
|
-
## PROJECT::SPECIFIC
|
37
|
-
spec/db/
|
data/tasks/ci.rake
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
task :ci => [ :verify_measurements, 'metrics:all' ]
|
data/tasks/local_gemfile.rake
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
desc "Support bundling from local source code (allows BUNDLE_GEMFILE=Gemfile.local bundle foo)"
|
2
|
-
task :local_gemfile do |t|
|
3
|
-
|
4
|
-
root = Pathname(__FILE__).dirname.parent
|
5
|
-
datamapper = root.parent
|
6
|
-
|
7
|
-
root.join('Gemfile.local').open('w') do |f|
|
8
|
-
root.join('Gemfile').open.each do |line|
|
9
|
-
line.sub!(/DATAMAPPER = 'git:\/\/github.com\/datamapper'/, "DATAMAPPER = '#{datamapper}'")
|
10
|
-
line.sub!(/:git => \"#\{DATAMAPPER\}\/(.+?)(?:\.git)?\"/, ':path => "#{DATAMAPPER}/\1"')
|
11
|
-
line.sub!(/do_options\[:git\] = \"#\{DATAMAPPER\}\/(.+?)(?:\.git)?\"/, 'do_options[:path] = "#{DATAMAPPER}/\1"')
|
12
|
-
f.puts line
|
13
|
-
end
|
14
|
-
end
|
15
|
-
|
16
|
-
end
|
data/tasks/metrics.rake
DELETED
@@ -1,36 +0,0 @@
|
|
1
|
-
begin
|
2
|
-
require 'metric_fu'
|
3
|
-
rescue LoadError
|
4
|
-
namespace :metrics do
|
5
|
-
task :all do
|
6
|
-
abort 'metric_fu is not available. In order to run metrics:all, you must: gem install metric_fu'
|
7
|
-
end
|
8
|
-
end
|
9
|
-
end
|
10
|
-
|
11
|
-
begin
|
12
|
-
require 'reek/adapters/rake_task'
|
13
|
-
|
14
|
-
Reek::RakeTask.new do |t|
|
15
|
-
t.fail_on_error = true
|
16
|
-
t.verbose = false
|
17
|
-
t.source_files = 'lib/**/*.rb'
|
18
|
-
end
|
19
|
-
rescue LoadError
|
20
|
-
task :reek do
|
21
|
-
abort 'Reek is not available. In order to run reek, you must: gem install reek'
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
|
-
begin
|
26
|
-
require 'roodi'
|
27
|
-
require 'roodi_task'
|
28
|
-
|
29
|
-
RoodiTask.new do |t|
|
30
|
-
t.verbose = false
|
31
|
-
end
|
32
|
-
rescue LoadError
|
33
|
-
task :roodi do
|
34
|
-
abort 'Roodi is not available. In order to run roodi, you must: gem install roodi'
|
35
|
-
end
|
36
|
-
end
|