acts_as_social 0.0.0 → 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -1,5 +1,22 @@
1
+ *.gem
1
2
  .DS_Store
2
3
  .orig
3
- .bundle
4
4
  .rvmrc
5
5
  .rspec
6
+ *.rbc
7
+ .bundle
8
+ .config
9
+ coverage
10
+ InstalledFiles
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+
19
+ # YARD artifacts
20
+ .yardoc
21
+ _yardoc
22
+ doc/
data/README.md ADDED
@@ -0,0 +1,4 @@
1
+ acts_as_social
2
+ ==============
3
+
4
+ acts_as_social is a gem that provides basic social features, like view and controller helpers and models
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
8
8
  gem.email = ["rjmaltamar@gmail.com"]
9
9
  gem.description = %q{acts_as_social is a gem that provides basic social features, like view and controller helpers and models}
10
10
  gem.summary = %q{acts_as_social is a gem that provides basic social features}
11
- gem.homepage = ""
11
+ gem.homepage = "http://github.com/robertomiranda/acts_as_social"
12
12
 
13
13
  gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
14
14
  gem.files = `git ls-files`.split("\n")
@@ -1,5 +1,2 @@
1
1
  module ActsAsSocial
2
- def like
3
- puts "like"
4
- end
5
2
  end
@@ -1,3 +1,3 @@
1
1
  module ActsAsSocial
2
- VERSION = "0.0.0"
2
+ VERSION = "0.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acts_as_social
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -20,11 +20,11 @@ extensions: []
20
20
  extra_rdoc_files: []
21
21
  files:
22
22
  - .gitignore
23
- - acts_as_social-0.0.0.gem
23
+ - README.md
24
24
  - acts_as_social.gemspec
25
25
  - lib/acts_as_social.rb
26
26
  - lib/acts_as_social/version.rb
27
- homepage: ''
27
+ homepage: http://github.com/robertomiranda/acts_as_social
28
28
  licenses: []
29
29
  post_install_message:
30
30
  rdoc_options: []