share_some_love 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1262afe785b3d6f786bfd44c61e4e9443bc44a96
4
+ data.tar.gz: 50c7c2d846b2f884040fb6e0fe4da9ce9a8cd313
5
+ SHA512:
6
+ metadata.gz: a8ae6eb92c714877cdd49022a112f8f62725f7b0eee1af87e024c8e4494aad2f6c10c54ded8b51c351875e55a11f78b0c6d21b0fe313f3192c2d397205d5f833
7
+ data.tar.gz: 2083ed2bbfdd461bdc4c447af72dfa5ea3835dcebd90cdcbe31ed2eed75f468a527524ccb1dfd2de278f5935a418b202edfaa3b00e99da494e16cf50770ca17e
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ # CHANGELOG
2
+
3
+ ## 0.0.1
4
+
5
+ * Just to take a name of gem
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in share_some_love.gemspec
4
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,14 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ share_some_love (0.0.1)
5
+
6
+ GEM
7
+ remote: http://rubygems.org/
8
+ specs:
9
+
10
+ PLATFORMS
11
+ ruby
12
+
13
+ DEPENDENCIES
14
+ share_some_love!
data/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # Share some love
2
+
3
+ Share some love to our buddies rubyists!
4
+
5
+ ## Contributors
6
+
7
+ * @gazay
8
+
9
+ ## License
10
+
11
+ The MIT License
12
+
13
+ Copyright (c) 2013 gazay
14
+
15
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,9 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+ require 'bundler'
4
+ Bundler::GemHelper.install_tasks
5
+
6
+ desc 'Run all tests by default'
7
+ task :default do
8
+ system("rspec spec")
9
+ end
@@ -0,0 +1,3 @@
1
+ module Love
2
+ VERSION = '0.0.1'
3
+ end
data/lib/love.rb ADDED
@@ -0,0 +1,2 @@
1
+ module Love
2
+ end
@@ -0,0 +1 @@
1
+ require './love'
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "love/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "share_some_love"
7
+ s.version = Love::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ['gazay']
10
+ s.email = ['alex.gaziev@gmail.com']
11
+ s.homepage = "https://github.com/gazay/share_some_love"
12
+ s.summary = %q{I want you to share some love to OSS developers!}
13
+ s.description = %q{If you ever wander to say thank you to guys who did this great job on your gem or your project parts - it's really great opportunity}
14
+
15
+ s.rubyforge_project = "share_some_love"
16
+
17
+ s.files = `git ls-files`.split("\n")
18
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
+ s.require_paths = ["lib"]
21
+ end
@@ -0,0 +1 @@
1
+ require 'share_some_love'
metadata ADDED
@@ -0,0 +1,55 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: share_some_love
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - gazay
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-06-14 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: If you ever wander to say thank you to guys who did this great job on
14
+ your gem or your project parts - it's really great opportunity
15
+ email:
16
+ - alex.gaziev@gmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - CHANGELOG.md
22
+ - Gemfile
23
+ - Gemfile.lock
24
+ - README.md
25
+ - Rakefile
26
+ - lib/love.rb
27
+ - lib/love/version.rb
28
+ - lib/share_some_love.rb
29
+ - share_some_love.gemspec
30
+ - spec/spec_helper.rb
31
+ homepage: https://github.com/gazay/share_some_love
32
+ licenses: []
33
+ metadata: {}
34
+ post_install_message:
35
+ rdoc_options: []
36
+ require_paths:
37
+ - lib
38
+ required_ruby_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - '>='
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ required_rubygems_version: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ requirements: []
49
+ rubyforge_project: share_some_love
50
+ rubygems_version: 2.0.2
51
+ signing_key:
52
+ specification_version: 4
53
+ summary: I want you to share some love to OSS developers!
54
+ test_files:
55
+ - spec/spec_helper.rb