suhovius-acts_as_list 0.7.2.s

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 77abc247724f7971559bedf9b83d73e9aff8c904
4
+ data.tar.gz: c2125060ed5d0af47a289b2ba65248bbdfcfc9af
5
+ SHA512:
6
+ metadata.gz: 7ed80ea89da4fadabe0675c4608dd64d09fe135b331b4bb04bcd53cd71c62634bb2ae5c5dec9e53e686c6953324afd7d4944a3d3d6258c3ca55ab0978ef90638
7
+ data.tar.gz: 48b10295cf69dc834e3e89b6de8fc4badbeaafa7a9a014274ffeec4e86400df9a60323ca8421b1d8d92a3852c5340e37e57fe39650687527bb8d514a0e22d0f4
data/.gemtest ADDED
File without changes
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
5
+ .rvmrc
6
+ *.tmproj
7
+ .rbenv-version
8
+ .ruby-gemset
9
+ .ruby-version
data/.travis.yml ADDED
@@ -0,0 +1,11 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 2.0.0
5
+ - 2.1.0
6
+ - jruby-19mode
7
+ - rbx-2
8
+ gemfile:
9
+ - gemfiles/rails_3_2.gemfile
10
+ - gemfiles/rails_4_1.gemfile
11
+ - gemfiles/rails_4_2.gemfile
data/Appraisals ADDED
@@ -0,0 +1,11 @@
1
+ appraise "rails-3-2" do
2
+ gem "activerecord", "3.2.21"
3
+ end
4
+
5
+ appraise "rails-4-1" do
6
+ gem "activerecord", "4.1.10"
7
+ end
8
+
9
+ appraise "rails-4-2" do
10
+ gem "activerecord", "4.2.1"
11
+ end
data/Gemfile ADDED
@@ -0,0 +1,20 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem "sqlite3", platforms: [:ruby]
4
+ gem "activerecord-jdbcsqlite3-adapter", platforms: [:jruby]
5
+
6
+ platforms :rbx do
7
+ gem "rubysl", "~> 2.0"
8
+ gem "rubinius-developer_tools"
9
+ gem "rubysl-test-unit"
10
+ end
11
+
12
+ # Specify your gem"s dependencies in acts_as_list-rails3.gemspec
13
+ gemspec
14
+
15
+ gem "rake"
16
+ gem "appraisal"
17
+
18
+ group :test do
19
+ gem "minitest"
20
+ end
data/MIT-LICENSE ADDED
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2007 David Heinemeier Hansson
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 deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ 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 FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,119 @@
1
+ # ActsAsList
2
+
3
+ ## NOTE!
4
+
5
+ This is clone of original acts_as_list gem with additions that were needed for my project. So, please use original gem (https://github.com/swanandp/acts_as_list). Do not use this edition.
6
+
7
+ ## Description
8
+
9
+ This `acts_as` extension provides the capabilities for sorting and reordering a number of objects in a list. The class that has this specified needs to have a `position` column defined as an integer on the mapped database table.
10
+
11
+ ## Installation
12
+
13
+ In your Gemfile:
14
+
15
+ gem 'acts_as_list'
16
+
17
+ Or, from the command line:
18
+
19
+ gem install acts_as_list
20
+
21
+ ## Example
22
+
23
+ At first, you need to add a `position` column to desired table:
24
+
25
+ rails g migration AddPositionToTodoItem position:integer
26
+ rake db:migrate
27
+
28
+ After that you can use `acts_as_list` method in the model:
29
+
30
+ ```ruby
31
+ class TodoList < ActiveRecord::Base
32
+ has_many :todo_items, -> { order(position: :asc) }
33
+ end
34
+
35
+ class TodoItem < ActiveRecord::Base
36
+ belongs_to :todo_list
37
+ acts_as_list scope: :todo_list
38
+ end
39
+
40
+ todo_list.first.move_to_bottom
41
+ todo_list.last.move_higher
42
+ ```
43
+
44
+ ## Instance Methods Added To ActiveRecord Models
45
+
46
+ You'll have a number of methods added to each instance of the ActiveRecord model that to which `acts_as_list` is added.
47
+
48
+ In `acts_as_list`, "higher" means further up the list (a lower `position`), and "lower" means further down the list (a higher `position`). That can be confusing, so it might make sense to add tests that validate that you're using the right method given your context.
49
+
50
+ ### Methods That Change Position and Reorder List
51
+
52
+ - `list_item.insert_at(2)`
53
+ - `list_item.move_lower` will do nothing if the item is the lowest item
54
+ - `list_item.move_higher` will do nothing if the item is the highest item
55
+ - `list_item.move_to_bottom`
56
+ - `list_item.move_to_top`
57
+ - `list_item.remove_from_list`
58
+
59
+ ### Methods That Change Position Without Reordering List
60
+
61
+ - `list_item.increment_position`
62
+ - `list_item.decrement_position`
63
+ - `list_item.set_list_position(3)`
64
+
65
+ ### Methods That Return Attributes of the Item's List Position
66
+ - `list_item.first?`
67
+ - `list_item.last?`
68
+ - `list_item.in_list?`
69
+ - `list_item.not_in_list?`
70
+ - `list_item.default_position?`
71
+ - `list_item.higher_item`
72
+ - `list_item.higher_items` will return all the items above `list_item` in the list (ordered by the position, ascending)
73
+ - `list_item.lower_item`
74
+ - `list_item.lower_items` will return all the items below `list_item` in the list (ordered by the position, ascending)
75
+
76
+ ## Notes
77
+ If the `position` column has a default value, then there is a slight change in behavior, i.e if you have 4 items in the list, and you insert 1, with a default position 0, it would be pushed to the bottom of the list. Please look at the tests for this and some recent pull requests for discussions related to this.
78
+
79
+ All `position` queries (select, update, etc.) inside gem methods are executed without the default scope (i.e. `Model.unscoped`), this will prevent nasty issues when the default scope is different from `acts_as_list` scope.
80
+
81
+ The `position` column is set after validations are called, so you should not put a `presence` validation on the `position` column.
82
+
83
+
84
+ If you need a scope by a non-association field you should pass an array, containing field name, to a scope:
85
+ ```ruby
86
+ class TodoItem < ActiveRecord::Base
87
+ # `kind` is a plain text field (e.g. 'work', 'shopping', 'meeting'), not an association
88
+ acts_as_list scope: [:kind]
89
+ end
90
+ ```
91
+
92
+ ## Versions
93
+ All versions `0.1.5` onwards require Rails 3.0.x and higher.
94
+
95
+ ## Build Status
96
+ [![Build Status](https://secure.travis-ci.org/swanandp/acts_as_list.png)](https://secure.travis-ci.org/swanandp/acts_as_list)
97
+
98
+ ## Workflow Status
99
+ [![WIP Issues](https://badge.waffle.io/swanandp/acts_as_list.png)](http://waffle.io/swanandp/acts_as_list)
100
+
101
+ ## Roadmap
102
+
103
+ 1. Sort based feature
104
+ 2. Rails 4 compatibility and bye bye Rails 2! Older versions would of course continue to work with Rails 2, but there won't be any support on those.
105
+
106
+ ## Contributing to `acts_as_list`
107
+
108
+ - Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
109
+ - Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
110
+ - Fork the project
111
+ - Start a feature/bugfix branch
112
+ - Commit and push until you are happy with your contribution
113
+ - Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
114
+ - Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
115
+ - I would recommend using Rails 3.1.x and higher for testing the build before a pull request. The current test harness does not quite work with 3.0.x. The plugin itself works, but the issue lies with testing infrastructure.
116
+
117
+ ## Copyright
118
+
119
+ Copyright (c) 2007 David Heinemeier Hansson, released under the MIT license
data/Rakefile ADDED
@@ -0,0 +1,34 @@
1
+ require "rubygems"
2
+ require "bundler/setup"
3
+ Bundler::GemHelper.install_tasks
4
+
5
+ require "rake/testtask"
6
+
7
+ # Run the test with "rake" or "rake test"
8
+ desc "Default: run acts_as_list unit tests."
9
+ task default: :test
10
+
11
+ desc "Test the acts_as_list plugin."
12
+ Rake::TestTask.new(:test) do |t|
13
+ t.libs << "lib" << "test"
14
+ t.pattern = "test/**/test_*.rb"
15
+ t.verbose = false
16
+ end
17
+
18
+ begin
19
+ # Run the rdoc task to generate rdocs for this gem
20
+ require "rdoc/task"
21
+ RDoc::Task.new do |rdoc|
22
+ require "acts_as_list/version"
23
+ version = ActiveRecord::Acts::List::VERSION
24
+
25
+ rdoc.rdoc_dir = "rdoc"
26
+ rdoc.title = "acts_as_list #{version}"
27
+ rdoc.rdoc_files.include("README*")
28
+ rdoc.rdoc_files.include("lib/**/*.rb")
29
+ end
30
+ rescue LoadError
31
+ puts "RDocTask is not supported on this platform."
32
+ rescue StandardError
33
+ puts "RDocTask is not supported on this platform."
34
+ end
@@ -0,0 +1,29 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "acts_as_list/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ # Description Meta...
7
+ s.name = "suhovius-acts_as_list"
8
+ s.version = ActiveRecord::Acts::List::VERSION
9
+ s.platform = Gem::Platform::RUBY
10
+ s.authors = ["David Heinemeier Hansson", "Swanand Pagnis", "Quinn Chaffee", "Alexey Suhoviy"]
11
+ s.email = ["swanand.pagnis@gmail.com", "martinsilenn@gmail.com"]
12
+ s.homepage = "http://github.com/swanandp/acts_as_list"
13
+ s.summary = "A gem adding sorting, reordering capabilities to an active_record model, allowing it to act as a list (Custom edition. Please use original gem)"
14
+ s.description = 'This "acts_as" extension provides the capabilities for sorting and reordering a number of objects in a list. The class that has this specified needs to have a "position" column defined as an integer on the mapped database table. (Custom edition. Please use original gem)'
15
+ s.license = "MIT"
16
+ s.rubyforge_project = "acts_as_list"
17
+ s.required_ruby_version = ">= 1.9.2"
18
+
19
+ # Load Paths...
20
+ s.files = `git ls-files`.split("\n")
21
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
22
+ s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
23
+ s.require_paths = ["lib"]
24
+
25
+
26
+ # Dependencies (installed via "bundle install")
27
+ s.add_dependency("activerecord", [">= 3.0"])
28
+ s.add_development_dependency("bundler", [">= 1.0.0"])
29
+ end
@@ -0,0 +1,21 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "sqlite3", :platforms => [:ruby]
6
+ gem "activerecord-jdbcsqlite3-adapter", :platforms => [:jruby]
7
+ gem "rake"
8
+ gem "appraisal"
9
+ gem "activerecord", "3.2.21"
10
+
11
+ group :test do
12
+ gem "minitest"
13
+ end
14
+
15
+ platforms :rbx do
16
+ gem "rubysl", "~> 2.0"
17
+ gem "rubinius-developer_tools"
18
+ gem "rubysl-test-unit"
19
+ end
20
+
21
+ gemspec :path => "../"
@@ -0,0 +1,258 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ acts_as_list (0.7.2)
5
+ activerecord (>= 3.0)
6
+
7
+ GEM
8
+ remote: http://rubygems.org/
9
+ specs:
10
+ activemodel (3.2.21)
11
+ activesupport (= 3.2.21)
12
+ builder (~> 3.0.0)
13
+ activerecord (3.2.21)
14
+ activemodel (= 3.2.21)
15
+ activesupport (= 3.2.21)
16
+ arel (~> 3.0.2)
17
+ tzinfo (~> 0.3.29)
18
+ activesupport (3.2.21)
19
+ i18n (~> 0.6, >= 0.6.4)
20
+ multi_json (~> 1.0)
21
+ appraisal (1.0.2)
22
+ bundler
23
+ rake
24
+ thor (>= 0.14.0)
25
+ arel (3.0.3)
26
+ builder (3.0.4)
27
+ ffi2-generators (0.1.1)
28
+ i18n (0.7.0)
29
+ minitest (5.5.1)
30
+ multi_json (1.10.1)
31
+ rake (10.4.2)
32
+ rubinius-coverage (2.0.3)
33
+ rubinius-debugger (2.2.1)
34
+ rubinius-developer_tools (2.0.0)
35
+ rubinius-coverage (~> 2.0)
36
+ rubinius-debugger (~> 2.0)
37
+ rubinius-profiler (~> 2.0)
38
+ rubinius-profiler (2.0.1)
39
+ rubysl (2.1.0)
40
+ rubysl-abbrev (~> 2.0)
41
+ rubysl-base64 (~> 2.0)
42
+ rubysl-benchmark (~> 2.0)
43
+ rubysl-bigdecimal (~> 2.0)
44
+ rubysl-cgi (~> 2.0)
45
+ rubysl-cgi-session (~> 2.0)
46
+ rubysl-cmath (~> 2.0)
47
+ rubysl-complex (~> 2.0)
48
+ rubysl-continuation (~> 2.0)
49
+ rubysl-coverage (~> 2.0)
50
+ rubysl-csv (~> 2.0)
51
+ rubysl-curses (~> 2.0)
52
+ rubysl-date (~> 2.0)
53
+ rubysl-delegate (~> 2.0)
54
+ rubysl-digest (~> 2.0)
55
+ rubysl-drb (~> 2.0)
56
+ rubysl-e2mmap (~> 2.0)
57
+ rubysl-english (~> 2.0)
58
+ rubysl-enumerator (~> 2.0)
59
+ rubysl-erb (~> 2.0)
60
+ rubysl-etc (~> 2.0)
61
+ rubysl-expect (~> 2.0)
62
+ rubysl-fcntl (~> 2.0)
63
+ rubysl-fiber (~> 2.0)
64
+ rubysl-fileutils (~> 2.0)
65
+ rubysl-find (~> 2.0)
66
+ rubysl-forwardable (~> 2.0)
67
+ rubysl-getoptlong (~> 2.0)
68
+ rubysl-gserver (~> 2.0)
69
+ rubysl-io-console (~> 2.0)
70
+ rubysl-io-nonblock (~> 2.0)
71
+ rubysl-io-wait (~> 2.0)
72
+ rubysl-ipaddr (~> 2.0)
73
+ rubysl-irb (~> 2.1)
74
+ rubysl-logger (~> 2.0)
75
+ rubysl-mathn (~> 2.0)
76
+ rubysl-matrix (~> 2.0)
77
+ rubysl-mkmf (~> 2.0)
78
+ rubysl-monitor (~> 2.0)
79
+ rubysl-mutex_m (~> 2.0)
80
+ rubysl-net-ftp (~> 2.0)
81
+ rubysl-net-http (~> 2.0)
82
+ rubysl-net-imap (~> 2.0)
83
+ rubysl-net-pop (~> 2.0)
84
+ rubysl-net-protocol (~> 2.0)
85
+ rubysl-net-smtp (~> 2.0)
86
+ rubysl-net-telnet (~> 2.0)
87
+ rubysl-nkf (~> 2.0)
88
+ rubysl-observer (~> 2.0)
89
+ rubysl-open-uri (~> 2.0)
90
+ rubysl-open3 (~> 2.0)
91
+ rubysl-openssl (~> 2.0)
92
+ rubysl-optparse (~> 2.0)
93
+ rubysl-ostruct (~> 2.0)
94
+ rubysl-pathname (~> 2.0)
95
+ rubysl-prettyprint (~> 2.0)
96
+ rubysl-prime (~> 2.0)
97
+ rubysl-profile (~> 2.0)
98
+ rubysl-profiler (~> 2.0)
99
+ rubysl-pstore (~> 2.0)
100
+ rubysl-pty (~> 2.0)
101
+ rubysl-rational (~> 2.0)
102
+ rubysl-resolv (~> 2.0)
103
+ rubysl-rexml (~> 2.0)
104
+ rubysl-rinda (~> 2.0)
105
+ rubysl-rss (~> 2.0)
106
+ rubysl-scanf (~> 2.0)
107
+ rubysl-securerandom (~> 2.0)
108
+ rubysl-set (~> 2.0)
109
+ rubysl-shellwords (~> 2.0)
110
+ rubysl-singleton (~> 2.0)
111
+ rubysl-socket (~> 2.0)
112
+ rubysl-stringio (~> 2.0)
113
+ rubysl-strscan (~> 2.0)
114
+ rubysl-sync (~> 2.0)
115
+ rubysl-syslog (~> 2.0)
116
+ rubysl-tempfile (~> 2.0)
117
+ rubysl-thread (~> 2.0)
118
+ rubysl-thwait (~> 2.0)
119
+ rubysl-time (~> 2.0)
120
+ rubysl-timeout (~> 2.0)
121
+ rubysl-tmpdir (~> 2.0)
122
+ rubysl-tsort (~> 2.0)
123
+ rubysl-un (~> 2.0)
124
+ rubysl-uri (~> 2.0)
125
+ rubysl-weakref (~> 2.0)
126
+ rubysl-webrick (~> 2.0)
127
+ rubysl-xmlrpc (~> 2.0)
128
+ rubysl-yaml (~> 2.0)
129
+ rubysl-zlib (~> 2.0)
130
+ rubysl-abbrev (2.0.4)
131
+ rubysl-base64 (2.0.0)
132
+ rubysl-benchmark (2.0.1)
133
+ rubysl-bigdecimal (2.0.2)
134
+ rubysl-cgi (2.0.1)
135
+ rubysl-cgi-session (2.0.1)
136
+ rubysl-cmath (2.0.0)
137
+ rubysl-complex (2.0.0)
138
+ rubysl-continuation (2.0.0)
139
+ rubysl-coverage (2.0.3)
140
+ rubysl-csv (2.0.2)
141
+ rubysl-english (~> 2.0)
142
+ rubysl-curses (2.0.1)
143
+ rubysl-date (2.0.9)
144
+ rubysl-delegate (2.0.1)
145
+ rubysl-digest (2.0.3)
146
+ rubysl-drb (2.0.1)
147
+ rubysl-e2mmap (2.0.0)
148
+ rubysl-english (2.0.0)
149
+ rubysl-enumerator (2.0.0)
150
+ rubysl-erb (2.0.2)
151
+ rubysl-etc (2.0.3)
152
+ ffi2-generators (~> 0.1)
153
+ rubysl-expect (2.0.0)
154
+ rubysl-fcntl (2.0.4)
155
+ ffi2-generators (~> 0.1)
156
+ rubysl-fiber (2.0.0)
157
+ rubysl-fileutils (2.0.3)
158
+ rubysl-find (2.0.1)
159
+ rubysl-forwardable (2.0.1)
160
+ rubysl-getoptlong (2.0.0)
161
+ rubysl-gserver (2.0.0)
162
+ rubysl-socket (~> 2.0)
163
+ rubysl-thread (~> 2.0)
164
+ rubysl-io-console (2.0.0)
165
+ rubysl-io-nonblock (2.0.0)
166
+ rubysl-io-wait (2.0.0)
167
+ rubysl-ipaddr (2.0.0)
168
+ rubysl-irb (2.1.1)
169
+ rubysl-e2mmap (~> 2.0)
170
+ rubysl-mathn (~> 2.0)
171
+ rubysl-thread (~> 2.0)
172
+ rubysl-logger (2.1.0)
173
+ rubysl-mathn (2.0.0)
174
+ rubysl-matrix (2.1.0)
175
+ rubysl-e2mmap (~> 2.0)
176
+ rubysl-mkmf (2.0.1)
177
+ rubysl-fileutils (~> 2.0)
178
+ rubysl-shellwords (~> 2.0)
179
+ rubysl-monitor (2.0.0)
180
+ rubysl-mutex_m (2.0.0)
181
+ rubysl-net-ftp (2.0.1)
182
+ rubysl-net-http (2.0.4)
183
+ rubysl-cgi (~> 2.0)
184
+ rubysl-erb (~> 2.0)
185
+ rubysl-singleton (~> 2.0)
186
+ rubysl-net-imap (2.0.1)
187
+ rubysl-net-pop (2.0.1)
188
+ rubysl-net-protocol (2.0.1)
189
+ rubysl-net-smtp (2.0.1)
190
+ rubysl-net-telnet (2.0.0)
191
+ rubysl-nkf (2.0.1)
192
+ rubysl-observer (2.0.0)
193
+ rubysl-open-uri (2.0.0)
194
+ rubysl-open3 (2.0.0)
195
+ rubysl-openssl (2.2.1)
196
+ rubysl-optparse (2.0.1)
197
+ rubysl-shellwords (~> 2.0)
198
+ rubysl-ostruct (2.0.4)
199
+ rubysl-pathname (2.1.0)
200
+ rubysl-prettyprint (2.0.3)
201
+ rubysl-prime (2.0.1)
202
+ rubysl-profile (2.0.0)
203
+ rubysl-profiler (2.0.1)
204
+ rubysl-pstore (2.0.0)
205
+ rubysl-pty (2.0.3)
206
+ rubysl-rational (2.0.1)
207
+ rubysl-resolv (2.1.2)
208
+ rubysl-rexml (2.0.4)
209
+ rubysl-rinda (2.0.1)
210
+ rubysl-rss (2.0.0)
211
+ rubysl-scanf (2.0.0)
212
+ rubysl-securerandom (2.0.0)
213
+ rubysl-set (2.0.1)
214
+ rubysl-shellwords (2.0.0)
215
+ rubysl-singleton (2.0.0)
216
+ rubysl-socket (2.0.1)
217
+ rubysl-stringio (2.0.0)
218
+ rubysl-strscan (2.0.0)
219
+ rubysl-sync (2.0.0)
220
+ rubysl-syslog (2.1.0)
221
+ ffi2-generators (~> 0.1)
222
+ rubysl-tempfile (2.0.1)
223
+ rubysl-test-unit (2.0.2)
224
+ minitest
225
+ rubysl-thread (2.0.3)
226
+ rubysl-thwait (2.0.0)
227
+ rubysl-time (2.0.3)
228
+ rubysl-timeout (2.0.0)
229
+ rubysl-tmpdir (2.0.1)
230
+ rubysl-tsort (2.0.1)
231
+ rubysl-un (2.0.0)
232
+ rubysl-fileutils (~> 2.0)
233
+ rubysl-optparse (~> 2.0)
234
+ rubysl-uri (2.0.0)
235
+ rubysl-weakref (2.0.0)
236
+ rubysl-webrick (2.0.0)
237
+ rubysl-xmlrpc (2.0.0)
238
+ rubysl-yaml (2.1.0)
239
+ rubysl-zlib (2.0.1)
240
+ sqlite3 (1.3.10)
241
+ thor (0.19.1)
242
+ tzinfo (0.3.42)
243
+
244
+ PLATFORMS
245
+ ruby
246
+
247
+ DEPENDENCIES
248
+ activerecord (= 3.2.21)
249
+ activerecord-jdbcsqlite3-adapter
250
+ acts_as_list!
251
+ appraisal
252
+ bundler (>= 1.0.0)
253
+ minitest
254
+ rake
255
+ rubinius-developer_tools
256
+ rubysl (~> 2.0)
257
+ rubysl-test-unit
258
+ sqlite3