acts_as_social 0.0.0

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/.gitignore ADDED
@@ -0,0 +1,5 @@
1
+ .DS_Store
2
+ .orig
3
+ .bundle
4
+ .rvmrc
5
+ .rspec
@@ -0,0 +1,17 @@
1
+ require File.expand_path('../lib/acts_as_social/version', __FILE__)
2
+
3
+ Gem::Specification.new do |gem|
4
+ gem.name = "acts_as_social"
5
+ gem.version = ActsAsSocial::VERSION
6
+
7
+ gem.authors = ["Roberto Miranda"]
8
+ gem.email = ["rjmaltamar@gmail.com"]
9
+ gem.description = %q{acts_as_social is a gem that provides basic social features, like view and controller helpers and models}
10
+ gem.summary = %q{acts_as_social is a gem that provides basic social features}
11
+ gem.homepage = ""
12
+
13
+ gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
14
+ gem.files = `git ls-files`.split("\n")
15
+ gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
16
+ gem.require_paths = ["lib"]
17
+ end
@@ -0,0 +1,3 @@
1
+ module ActsAsSocial
2
+ VERSION = "0.0.0"
3
+ end
@@ -0,0 +1,5 @@
1
+ module ActsAsSocial
2
+ def like
3
+ puts "like"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: acts_as_social
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Roberto Miranda
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-05-15 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: acts_as_social is a gem that provides basic social features, like view
15
+ and controller helpers and models
16
+ email:
17
+ - rjmaltamar@gmail.com
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - .gitignore
23
+ - acts_as_social-0.0.0.gem
24
+ - acts_as_social.gemspec
25
+ - lib/acts_as_social.rb
26
+ - lib/acts_as_social/version.rb
27
+ homepage: ''
28
+ licenses: []
29
+ post_install_message:
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ none: false
35
+ requirements:
36
+ - - ! '>='
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ! '>='
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ requirements: []
46
+ rubyforge_project:
47
+ rubygems_version: 1.8.21
48
+ signing_key:
49
+ specification_version: 3
50
+ summary: acts_as_social is a gem that provides basic social features
51
+ test_files: []