connections 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +68 -0
- data/Rakefile +2 -0
- data/{lib → app/models}/connections/connection.rb +0 -0
- data/{test/dummy/db/migrate/20120307052433_create_connections.rb → db/migrate/20120311000457_create_connections_connections.rb} +5 -5
- data/lib/connections.rb +3 -3
- data/lib/connections/connectable.rb +1 -1
- data/lib/connections/connector.rb +1 -1
- data/lib/connections/engine.rb +5 -0
- data/lib/connections/version.rb +1 -1
- data/test/connections_test.rb +0 -1
- data/test/dummy/config/routes.rb +1 -57
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +5 -5
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +320 -33
- data/test/dummy/log/test.log +2319 -1935
- metadata +10 -10
- data/README.rdoc +0 -3
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: connections
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 27
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Jens Balvig
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-03-
|
18
|
+
date: 2012-03-11 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
requirement: &id001 !ruby/object:Gem::Requirement
|
@@ -47,7 +47,7 @@ dependencies:
|
|
47
47
|
name: sqlite3
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
|
-
description:
|
50
|
+
description: A simple set of helpers allowing you to easily add follow/like/watch/stalk capabilities to any ActiveRecord model
|
51
51
|
email:
|
52
52
|
- jens@balvig.com
|
53
53
|
executables: []
|
@@ -57,15 +57,17 @@ extensions: []
|
|
57
57
|
extra_rdoc_files: []
|
58
58
|
|
59
59
|
files:
|
60
|
+
- app/models/connections/connection.rb
|
61
|
+
- db/migrate/20120311000457_create_connections_connections.rb
|
60
62
|
- lib/connections/connectable.rb
|
61
|
-
- lib/connections/connection.rb
|
62
63
|
- lib/connections/connector.rb
|
64
|
+
- lib/connections/engine.rb
|
63
65
|
- lib/connections/version.rb
|
64
66
|
- lib/connections.rb
|
65
67
|
- lib/tasks/connections_tasks.rake
|
66
68
|
- MIT-LICENSE
|
67
69
|
- Rakefile
|
68
|
-
- README.
|
70
|
+
- README.md
|
69
71
|
- test/connections_test.rb
|
70
72
|
- test/dummy/app/assets/javascripts/application.js
|
71
73
|
- test/dummy/app/assets/stylesheets/application.css
|
@@ -94,7 +96,6 @@ files:
|
|
94
96
|
- test/dummy/db/development.sqlite3
|
95
97
|
- test/dummy/db/migrate/20120307051243_create_users.rb
|
96
98
|
- test/dummy/db/migrate/20120307051308_create_posts.rb
|
97
|
-
- test/dummy/db/migrate/20120307052433_create_connections.rb
|
98
99
|
- test/dummy/db/schema.rb
|
99
100
|
- test/dummy/db/test.sqlite3
|
100
101
|
- test/dummy/log/development.log
|
@@ -139,7 +140,7 @@ rubyforge_project:
|
|
139
140
|
rubygems_version: 1.8.15
|
140
141
|
signing_key:
|
141
142
|
specification_version: 3
|
142
|
-
summary:
|
143
|
+
summary: A simple set of helpers allowing you to easily add follow/like/watch/stalk capabilities to any ActiveRecord model
|
143
144
|
test_files:
|
144
145
|
- test/connections_test.rb
|
145
146
|
- test/dummy/app/assets/javascripts/application.js
|
@@ -169,7 +170,6 @@ test_files:
|
|
169
170
|
- test/dummy/db/development.sqlite3
|
170
171
|
- test/dummy/db/migrate/20120307051243_create_users.rb
|
171
172
|
- test/dummy/db/migrate/20120307051308_create_posts.rb
|
172
|
-
- test/dummy/db/migrate/20120307052433_create_connections.rb
|
173
173
|
- test/dummy/db/schema.rb
|
174
174
|
- test/dummy/db/test.sqlite3
|
175
175
|
- test/dummy/log/development.log
|
data/README.rdoc
DELETED