social_connections 0.0.3 → 0.0.4
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/.yardopts +1 -0
- data/README.markdown +19 -0
- data/lib/social_connections/version.rb +1 -1
- metadata +3 -2
- data/README +0 -31
data/.yardopts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
--no-private
|
data/README.markdown
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# @markup markdown
|
|
2
|
+
# @title Social Connections and Activity Feeds for Rails Applications
|
|
3
|
+
|
|
4
|
+
# Social Connections #
|
|
5
|
+
|
|
6
|
+
Is this proper markdown? Dunno whats going on.
|
|
7
|
+
|
|
8
|
+
Can we
|
|
9
|
+
|
|
10
|
+
* have
|
|
11
|
+
* a list here?
|
|
12
|
+
|
|
13
|
+
And is the following some example code?
|
|
14
|
+
|
|
15
|
+
rake db:migrate:social_connections
|
|
16
|
+
rails generate blablabla
|
|
17
|
+
|
|
18
|
+
Still playing around with this...
|
|
19
|
+
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: social_connections
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.0.
|
|
5
|
+
version: 0.0.4
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Chris
|
|
@@ -25,9 +25,10 @@ extra_rdoc_files: []
|
|
|
25
25
|
|
|
26
26
|
files:
|
|
27
27
|
- .gitignore
|
|
28
|
+
- .yardopts
|
|
28
29
|
- Gemfile
|
|
29
30
|
- MIT-LICENSE
|
|
30
|
-
- README
|
|
31
|
+
- README.markdown
|
|
31
32
|
- Rakefile
|
|
32
33
|
- db/keep-this-dir.txt
|
|
33
34
|
- init.rb
|
data/README
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
SocialConnections
|
|
2
|
-
=================
|
|
3
|
-
|
|
4
|
-
Enables
|
|
5
|
-
|
|
6
|
-
* Social connections between people and things: list of friends, things you like, stuff you recommend.
|
|
7
|
-
* Activities on those things which are recorded for later processing
|
|
8
|
-
* Digest mechanism to digest those activities, e.g. for daily digest emails.
|
|
9
|
-
|
|
10
|
-
This gem is work in progress and my playground, and currently my playground, don't use it!
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
Example
|
|
14
|
-
=======
|
|
15
|
-
|
|
16
|
-
Example goes here.
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
How to run the Tests
|
|
20
|
-
====================
|
|
21
|
-
|
|
22
|
-
Run test in ./test:
|
|
23
|
-
|
|
24
|
-
rake
|
|
25
|
-
|
|
26
|
-
Run specs in ./spec:
|
|
27
|
-
|
|
28
|
-
rspec spec
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
Copyright (c) 2011 Chris Oloff, released under the MIT license
|