further 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8597140a6f05f84bd0991d039ca2d00513682d5d
4
- data.tar.gz: f9ca4edc3e01dc2d12aefb5015e5564d1113f563
3
+ metadata.gz: 9b39a37789c4b6b16cf39285e6a856eda2863046
4
+ data.tar.gz: 535aa63ea6fcfe1f55a2d645439b453c9ab75521
5
5
  SHA512:
6
- metadata.gz: 5f876e4252968d447c3a6c951d18b4be635ade2558ceb2792fe5084e5f3ea45764a91ec0e60668e80ee0bf1392c6d0e7bf41796f674d50e79848e5893c1d36f3
7
- data.tar.gz: 5d8f01013093cb655aef064c8fc63cacacca1b4792b52567ed0f728d04cf645a5c3f776c8b6b9351ecb645508c8bdd6f2cd683cdc03b228da6df4ba473bdaec8
6
+ metadata.gz: bd4c56f2b5957658c6027f67f07e8d0dc5accb70e9886980acf8c7cc0329d2e0a240f04e4b81db3ae24ecdc30c396b03144516366d8eda68d9dcbcf038d0a362
7
+ data.tar.gz: 67d2df2f64b8ee989a363b4ff4aac993047d4a23644fee9cd214c52f84f3ee143c011dd830f2a05c52fee4969dae2a71760a013a0450c42b637400d2457c26ee
@@ -1,4 +1,4 @@
1
- Copyright 2013 YOURNAME
1
+ Copyright 2013 Abdulaziz AlShetwi
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
data/README.md CHANGED
@@ -1,4 +1,59 @@
1
- further
2
- =======
1
+ # further [![Gem Version](https://badge.fury.io/rb/further.png)](http://badge.fury.io/rb/further)
2
+
3
+ This gem provides a simple and extremely flexible way to add extra data into your models
4
+ without adding new column for that.
5
+
6
+
7
+ ## Installation
8
+
9
+ Install the latest stable release:
10
+
11
+ [sudo] gem install further
12
+
13
+ In Rails, add it to your Gemfile:
14
+
15
+ ```ruby
16
+ gem 'further'
17
+ ```
18
+
19
+ Finally, restart the server to apply the changes.
20
+
21
+ Note that further is work in Rails 3+ and Ruby 1.9+
22
+
23
+ ## Getting Started
24
+
25
+ Start off by generating an uploader:
26
+
27
+ rails generate further model
28
+
29
+ This should give you further_information model and the migrate file.
30
+
31
+ app/models/further_information.rb
32
+ db/migrates/%timestamp%_create_further_information.rb
33
+
34
+
35
+ Then rake db:migrate
36
+
37
+ rake db:migrate
38
+
39
+ Open your model file that you want to use further with:
40
+
41
+ ```ruby
42
+ class Site < ActiveRecord::Base
43
+ # you can choose any name
44
+ further :info
45
+ end
46
+ ```
47
+
48
+ Now you can add extra data in site model
49
+
50
+ ```ruby
51
+ s = Site.create info: {alexa_rank: 41253, last_updated: DateTime.now}
52
+ s.info[:alexa_rank] # => 41253
53
+ # you can add more info after you create the object
54
+ s.info page_rank: 3
55
+ s.info[:page_rank] # => 3
56
+ s.info # => {:alexa_rank=>41253, :last_updated=>Mon, 25 Nov 2013 18:43:22 +0300, :page_rank=>3}
57
+ ```
58
+
3
59
 
4
- Add more data in you model without adding a column in your table.
@@ -1,3 +1,3 @@
1
1
  module Further
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -308,3 +308,6 @@ Connecting to database specified by database.yml
308
308
  Connecting to database specified by database.yml
309
309
  Connecting to database specified by database.yml
310
310
  Connecting to database specified by database.yml
311
+ Connecting to database specified by database.yml
312
+ Connecting to database specified by database.yml
313
+ Connecting to database specified by database.yml
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: further
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Abdulaziz AlShetwi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-25 00:00:00.000000000 Z
11
+ date: 2013-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -38,7 +38,8 @@ dependencies:
38
38
  - - '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- description: ''
41
+ description: This gem provides a simple and extremely flexible way to add extra data
42
+ into your models without adding new column for that.
42
43
  email:
43
44
  - ecleeld@gmail.com
44
45
  executables: []
@@ -105,7 +106,8 @@ files:
105
106
  - test/further_test.rb
106
107
  - test/test_helper.rb
107
108
  homepage: https://github.com/ecleel/further
108
- licenses: []
109
+ licenses:
110
+ - MIT
109
111
  metadata: {}
110
112
  post_install_message:
111
113
  rdoc_options: []