social_poster 0.0.1 → 0.0.2
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/README.md +13 -0
- data/lib/social_poster/version.rb +1 -1
- data/social_poster.gemspec +1 -0
- metadata +4 -4
data/README.md
CHANGED
@@ -6,6 +6,19 @@ SocialPoster is a gem that allows you easily post to different social networks.
|
|
6
6
|
* Livejournal
|
7
7
|
|
8
8
|
|
9
|
+
Installation
|
10
|
+
-------------
|
11
|
+
|
12
|
+
In console:
|
13
|
+
```
|
14
|
+
gem install social_poster
|
15
|
+
```
|
16
|
+
or in your Gemfile:
|
17
|
+
```
|
18
|
+
gem 'social_poster'
|
19
|
+
```
|
20
|
+
|
21
|
+
|
9
22
|
Configuration
|
10
23
|
-------------
|
11
24
|
|
data/social_poster.gemspec
CHANGED
@@ -11,6 +11,7 @@ Gem::Specification.new do |gem|
|
|
11
11
|
gem.description = %q{SocialPoster is a gem that allows you easily post to different social networks.}
|
12
12
|
gem.summary = %q{Post to social networks}
|
13
13
|
gem.homepage = "https://github.com/HeeL/social_poster"
|
14
|
+
gem.license = "MIT"
|
14
15
|
|
15
16
|
gem.files = `git ls-files`.split($/)
|
16
17
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: social_poster
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-07-
|
12
|
+
date: 2013-07-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: test-unit
|
@@ -146,7 +146,8 @@ files:
|
|
146
146
|
- test/test_helper.rb
|
147
147
|
- test/unit/social_poster_test.rb
|
148
148
|
homepage: https://github.com/HeeL/social_poster
|
149
|
-
licenses:
|
149
|
+
licenses:
|
150
|
+
- MIT
|
150
151
|
post_install_message:
|
151
152
|
rdoc_options: []
|
152
153
|
require_paths:
|
@@ -172,4 +173,3 @@ summary: Post to social networks
|
|
172
173
|
test_files:
|
173
174
|
- test/test_helper.rb
|
174
175
|
- test/unit/social_poster_test.rb
|
175
|
-
has_rdoc:
|