00:43
slainer68 has quit [Remote host closed the connection]
01:14
slainer68 has joined #datamapper
01:24
slainer68 has quit [Ping timeout: 264 seconds]
01:42
zombor has quit [Remote host closed the connection]
01:59
Ortuna has quit [Quit: Computer has gone to sleep.]
01:59
Ortuna has joined #datamapper
02:29
v0n has joined #datamapper
02:51
v0n has quit [Ping timeout: 248 seconds]
03:34
mbj has joined #datamapper
04:51
slainer68 has joined #datamapper
04:57
slainer68 has quit [Ping timeout: 240 seconds]
04:59
mbj has quit [Read error: Connection reset by peer]
05:45
slainer68 has joined #datamapper
05:50
slainer68 has quit [Ping timeout: 255 seconds]
05:51
rsim has joined #datamapper
05:54
brianpWins has joined #datamapper
05:55
rsim has quit [Ping timeout: 240 seconds]
06:01
rsim has joined #datamapper
06:09
hryk has joined #datamapper
06:10
hryk has quit [Client Quit]
06:21
hryk has joined #datamapper
06:28
xiesx has joined #datamapper
06:29
xiesx has quit [Client Quit]
06:30
hryk has quit [Ping timeout: 276 seconds]
06:42
mbj has joined #datamapper
06:59
solnic has joined #datamapper
07:22
postmodern has joined #datamapper
07:29
rsim has quit [Quit: Leaving.]
08:02
mikecmpbll has joined #datamapper
08:05
rsim has joined #datamapper
08:09
slainer68 has joined #datamapper
08:10
rsim has quit [Ping timeout: 240 seconds]
08:10
slainer6_ has joined #datamapper
08:14
slainer68 has quit [Ping timeout: 246 seconds]
08:20
mbj has quit [Ping timeout: 276 seconds]
08:23
travis-ci has joined #datamapper
08:23
travis-ci has left #datamapper [#datamapper]
08:23
<
travis-ci >
[travis-ci] datamapper/dm-core#22 (release-1.2 - 6343344 : Piotr Solnica): The build has errored.
08:24
hryk has joined #datamapper
08:32
zekefast has quit [Quit: Leaving.]
08:38
rsim has joined #datamapper
08:47
solnic has joined #datamapper
09:13
ckrailo has quit [Quit: Computer has gone to sleep.]
09:17
travis-ci has joined #datamapper
09:17
<
travis-ci >
[travis-ci] datamapper/dm-core#23 (release-1.2 - 9843502 : Piotr Solnica): The build has errored.
09:17
travis-ci has left #datamapper [#datamapper]
09:46
slainer68 has joined #datamapper
09:48
slainer6_ has quit [Ping timeout: 276 seconds]
09:48
snusnu has joined #datamapper
09:52
postmodern has quit [Quit: Leaving]
10:03
brainopia has joined #datamapper
10:08
slainer6_ has joined #datamapper
10:12
slainer68 has quit [Ping timeout: 264 seconds]
10:47
mikecmpbll has joined #datamapper
10:50
brainopia has quit [Quit: brainopia]
11:09
snusnu has quit [Quit: Leaving.]
11:17
mbj has joined #datamapper
11:26
snusnu has joined #datamapper
11:27
mbj has quit [Read error: Connection reset by peer]
12:36
slainer6_ has quit [Ping timeout: 240 seconds]
12:45
cored has joined #datamapper
12:45
cored has joined #datamapper
12:47
mikecmpbll has joined #datamapper
12:49
cored has quit [Ping timeout: 246 seconds]
12:52
cored has joined #datamapper
12:52
cored has joined #datamapper
12:52
cored has quit [Changing host]
12:54
mbj has joined #datamapper
12:56
cored_ has joined #datamapper
13:03
cored_ has quit [Remote host closed the connection]
13:03
cored_ has joined #datamapper
13:08
cored has quit [Ping timeout: 252 seconds]
13:09
cored_ has quit [Ping timeout: 248 seconds]
13:15
cored has joined #datamapper
13:15
cored has joined #datamapper
13:15
cored_ has joined #datamapper
13:24
knowtheo1y has quit [Quit: Computer has gone to sleep]
13:25
knowtheory has joined #datamapper
13:26
zombor_ has joined #datamapper
13:26
zombor_ has joined #datamapper
13:27
zombor_ is now known as zombor
13:29
knowtheory has quit [Ping timeout: 248 seconds]
13:49
slainer68 has joined #datamapper
13:52
splattael has joined #datamapper
13:58
mbj has quit [Ping timeout: 248 seconds]
14:06
v0n has joined #datamapper
14:10
<
kapowaz >
is there any mechanism for creating an ‘abstract’ DM resource class?
14:10
<
kapowaz >
so that I can share various properties/methods across multiple models without duplication?
14:13
<
solnic >
kapowaz: just create a module with included hook and do your stuff there
14:15
<
kapowaz >
solnic: yeah, I tried doing that and was getting some odd error (which appears to be originating with the AWS S3 gem, strangely enough)
14:16
<
kapowaz >
Users/bdarlow/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/aws-s3-0.6.3/lib/aws/s3/extensions.rb:212:in `const_missing_from_s3_library': uninitialized constant Destination::Armour::Enum (NameError)
14:20
mbj has joined #datamapper
14:20
<
kapowaz >
I get the feeling the AWS S3 gem is doing some monkeypatching
14:23
knowtheory has joined #datamapper
14:34
bobocopy has joined #datamapper
14:38
mbj has quit [Quit: Lost terminal]
14:42
<
kapowaz >
I have a simple test case to demo what I'm trying, but alas gist.github.com is broken :|
14:43
<
solnic >
kapowaz: yes it does some crap-hackery with const_missing afair
14:43
<
kapowaz >
ah now it's working.
14:43
<
Cinchy >
[gist] apple.rb (at gist.github.com, kapowaz on 2013-06-10 14:43)
14:44
<
kapowaz >
^ gives me: apple.rb:5:in `<class:Apple>': uninitialized constant Apple::Enum (NameError)
14:44
<
kapowaz >
I'm assuming I'm using the included hook correctly there? I don't use it often, I must admit.
14:47
<
solnic >
kapowaz: not really :) wrap what's inside this hook with base.class_eval do .. end
14:47
<
kapowaz >
cheers, I'll give that a go
14:47
<
kapowaz >
still inside of the self.included method?
14:48
<
solnic >
kapowaz: yes
14:48
<
kapowaz >
all of it?
14:48
<
kapowaz >
I get this error instead now:
14:48
<
kapowaz >
fruit.rb:7:in `block in included': uninitialized constant Fruit::Serial (NameError)
14:52
hryk has quit [Quit: hryk]
14:52
<
solnic >
kapowaz: yeah you need to use full const names there. DataMapper::Property::Serial
15:00
hryk has joined #datamapper
15:07
<
kapowaz >
solnic: great, that's working now — much appreciated :)
15:07
hryk has quit [Quit: hryk]
15:13
slainer68 is now known as NicolasLeTrolleu
15:13
shingara is now known as pasContent
15:13
NicolasLeTrolleu is now known as slainer68
15:14
pasContent is now known as hate_rails_2_3
15:15
splattael has quit [Quit: Leaving.]
15:20
hate_rails_2_3 is now known as stop_rails_2_3
15:47
pdswan has quit [Quit: pdswan]
15:48
bobmcw has joined #datamapper
15:48
bobmcw has joined #datamapper
15:48
bobmcw has quit [Changing host]
15:48
<
slainer68 >
stop_rails_2_3: :p
15:49
ckrailo has joined #datamapper
15:58
<
stop_rails_2_3 >
slainer68: I start hate it, rails 3 is really better
16:00
mikecmpbll has joined #datamapper
16:07
stop_rails_2_3 is now known as shingara
16:20
slainer68 has quit [Remote host closed the connection]
16:21
slainer68 has joined #datamapper
16:42
slainer68 has quit [Remote host closed the connection]
16:47
cored_ has quit [Ping timeout: 248 seconds]
16:47
cored has quit [Ping timeout: 240 seconds]
16:49
cored has joined #datamapper
16:49
cored has joined #datamapper
16:49
cored_ has joined #datamapper
16:53
hryk has joined #datamapper
17:03
g0bl1n has joined #datamapper
17:03
g0bl1n has quit [Changing host]
17:03
g0bl1n has joined #datamapper
17:35
stormwin1 has joined #datamapper
17:37
knowtheo1y has joined #datamapper
17:39
brianpWins has quit [Quit: brianpWins]
17:40
onewheelskyward_ has joined #datamapper
17:42
gix- has joined #datamapper
17:42
gix has quit [Disconnected by services]
17:42
g0bl1n has quit [*.net *.split]
17:42
knowtheory has quit [*.net *.split]
17:42
gadgetoid has quit [*.net *.split]
17:42
onewheelskyward has quit [*.net *.split]
17:42
stormwind has quit [*.net *.split]
17:42
onewheelskyward_ is now known as onewheelskyward
17:50
snusnu has quit [Quit: Leaving.]
17:59
snusnu has joined #datamapper
18:03
avdi has joined #datamapper
18:07
brianpWins has joined #datamapper
18:07
avdi has quit [Client Quit]
18:09
cored has quit [Ping timeout: 248 seconds]
18:09
cored_ has quit [Ping timeout: 264 seconds]
18:12
bobmcw__ has joined #datamapper
18:16
bobmcw has quit [Ping timeout: 248 seconds]
18:24
gix- has quit [Ping timeout: 246 seconds]
18:28
gix has joined #datamapper
18:39
bobmcw__ has quit [Ping timeout: 255 seconds]
18:40
bobmcw has joined #datamapper
18:40
bobmcw has quit [Changing host]
18:40
bobmcw has joined #datamapper
18:48
postmodern has joined #datamapper
18:54
gadgetoid has joined #datamapper
19:13
bobmcw has quit [Remote host closed the connection]
19:17
bobmcw has joined #datamapper
19:17
bobmcw has joined #datamapper
19:17
bobmcw has quit [Changing host]
19:34
<
solnic >
dbussink: no idea
19:35
<
dbussink >
solnic: ah ok, guess i should perhaps take a look to see if it's a bug in rbx
19:46
slainer68 has joined #datamapper
20:09
bobmcw has quit [Remote host closed the connection]
20:28
batasrki has joined #datamapper
20:30
rolfb has joined #datamapper
20:32
batasrki has left #datamapper [#datamapper]
20:34
careo has joined #datamapper
20:36
zombor has quit [Remote host closed the connection]
20:57
cored has joined #datamapper
20:57
cored_ has joined #datamapper
20:58
namelessjon has quit [*.net *.split]
20:58
namelessjon has joined #datamapper
21:06
v0n has quit [Ping timeout: 248 seconds]
21:23
talntid has joined #datamapper
21:26
talntid2 has quit [Ping timeout: 255 seconds]
21:39
ckrailo has quit [Ping timeout: 255 seconds]
21:42
ckrailo has joined #datamapper
21:57
bobocopy has quit [Quit: Leaving.]
22:21
knowtheory has joined #datamapper
22:24
knowtheo1y has quit [Ping timeout: 248 seconds]
22:24
mbj has joined #datamapper
22:31
Ortuna has joined #datamapper
22:33
knowtheory has quit [Quit: Computer has gone to sleep]
22:57
zombor has joined #datamapper
22:57
zombor has joined #datamapper
23:06
mbj_ has joined #datamapper
23:07
mbj_ has quit [Client Quit]
23:16
mbj has quit [Quit: leaving]
23:17
knowtheory has joined #datamapper
23:21
snusnu has quit [Quit: Leaving.]
23:23
slainer68 has quit [Remote host closed the connection]
23:25
solnic has quit [Quit: Leaving...]
23:54
slainer68 has joined #datamapper