sbfaulkner-sequel_container 1.1.0 → 1.1.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.
- data/MIT-LICENSE +3 -3
- data/README.markdown +3 -3
- data/sequel_container.gemspec +10 -10
- metadata +1 -1
data/MIT-LICENSE
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
Copyright (c) 2009 unwwwired.net
|
2
|
-
|
2
|
+
|
3
3
|
Permission is hereby granted, free of charge, to any person obtaining
|
4
4
|
a copy of this software and associated documentation files (the
|
5
5
|
"Software"), to deal in the Software without restriction, including
|
@@ -7,10 +7,10 @@ without limitation the rights to use, copy, modify, merge, publish,
|
|
7
7
|
distribute, sublicense, and/or sell copies of the Software, and to
|
8
8
|
permit persons to whom the Software is furnished to do so, subject to
|
9
9
|
the following conditions:
|
10
|
-
|
10
|
+
|
11
11
|
The above copyright notice and this permission notice shall be
|
12
12
|
included in all copies or substantial portions of the Software.
|
13
|
-
|
13
|
+
|
14
14
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
15
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
16
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
data/README.markdown
CHANGED
@@ -11,7 +11,7 @@ I needed a way to more easily support images and css in blobs, since the hosting
|
|
11
11
|
Run the following if you haven't already:
|
12
12
|
|
13
13
|
$ gem sources -a http://gems.github.com
|
14
|
-
|
14
|
+
|
15
15
|
Install the gem(s):
|
16
16
|
|
17
17
|
$ sudo gem install -r sbfaulkner-sequel_container
|
@@ -20,7 +20,7 @@ Install the gem(s):
|
|
20
20
|
|
21
21
|
require 'rubygems'
|
22
22
|
require 'sequel'
|
23
|
-
|
23
|
+
|
24
24
|
class User < Sequel::Model
|
25
25
|
set_schema do
|
26
26
|
primary_key :id
|
@@ -46,5 +46,5 @@ Install the gem(s):
|
|
46
46
|
|
47
47
|
## Legal
|
48
48
|
|
49
|
-
**Author:** S. Brent Faulkner <brentf@unwwwired.net>
|
49
|
+
**Author:** S. Brent Faulkner <brentf@unwwwired.net>
|
50
50
|
**License:** Copyright © 2009 unwwwired.net, released under the MIT license
|
data/sequel_container.gemspec
CHANGED
@@ -1,19 +1,19 @@
|
|
1
|
-
SPEC = Gem::Specification.new do |s|
|
1
|
+
SPEC = Gem::Specification.new do |s|
|
2
2
|
# identify the gem
|
3
|
-
s.name = "sequel_container"
|
4
|
-
s.version = "1.1.
|
5
|
-
s.author = "S. Brent Faulkner"
|
6
|
-
s.email = "brentf@unwwwired.net"
|
7
|
-
s.homepage = "http://github.com/sbfaulkner/sequel_container"
|
3
|
+
s.name = "sequel_container"
|
4
|
+
s.version = "1.1.1"
|
5
|
+
s.author = "S. Brent Faulkner"
|
6
|
+
s.email = "brentf@unwwwired.net"
|
7
|
+
s.homepage = "http://github.com/sbfaulkner/sequel_container"
|
8
8
|
# platform of choice
|
9
9
|
s.platform = Gem::Platform::RUBY
|
10
10
|
# description of gem
|
11
11
|
s.summary = "contained documents (i.e. attachments) for sequel models"
|
12
12
|
s.files = %w(lib/sequel_container.rb MIT-LICENSE Rakefile README.markdown sequel_container.gemspec test/sequel_container_test.rb test/data/bio.html test/data/bio.txt test/data/logo.gif)
|
13
13
|
s.require_path = "lib"
|
14
|
-
s.test_file = "test/sequel_container_test.rb"
|
15
|
-
s.has_rdoc = true
|
16
|
-
s.extra_rdoc_files = ["README.markdown"]
|
14
|
+
s.test_file = "test/sequel_container_test.rb"
|
15
|
+
s.has_rdoc = true
|
16
|
+
s.extra_rdoc_files = ["README.markdown"]
|
17
17
|
s.add_dependency "sequel"
|
18
18
|
# s.rubyforge_project = "sequel_container"
|
19
|
-
end
|
19
|
+
end
|