activelove 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.travis.yml +4 -0
- data/CONTRIBUTING.md +11 -0
- data/Gemfile +10 -0
- data/README.md +40 -0
- data/Rakefile +10 -0
- data/UNLICENSE +24 -0
- data/activelove.gemspec +19 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/activelove.rb +5 -0
- data/lib/activelove/version.rb +3 -0
- metadata +57 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 18bb67726be8678ac2416deef5f0982ea8b836e5
|
4
|
+
data.tar.gz: ad57f978c39be9b01cfba37e3aa41f1225c4a871
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ad814a131ad7d06698ea493d5c9d915fc4511ef4279595f47e176ab83cbc645f4f6f3efc60846f5de37b4424f03e22b8ae36ebfe38a4e9e7a6047ef556ab1df0
|
7
|
+
data.tar.gz: fbfa6f3106d2fc0066aea973bd4b3e80c0323199be056e590c1110017d11ae8915dcb3a8db8fd231928fd9dcacd9bb85797d66597507d37cc1517ad38cc30cc8
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
# Contributing
|
2
|
+
|
3
|
+
## Development
|
4
|
+
|
5
|
+
After checking out this repository, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
6
|
+
|
7
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
8
|
+
|
9
|
+
## Contributing
|
10
|
+
|
11
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/JuanitoFatas/activelove.
|
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
# Activelove
|
2
|
+
|
3
|
+
Emojis are Active Love.
|
4
|
+
|
5
|
+
A gem that supports:
|
6
|
+
|
7
|
+
- Apple / International Style
|
8
|
+
- Google Hangouts Style
|
9
|
+
- Twitter Style
|
10
|
+
- Emoji One Style
|
11
|
+
|
12
|
+
## Features
|
13
|
+
|
14
|
+
TODO
|
15
|
+
|
16
|
+
## Install
|
17
|
+
|
18
|
+
```ruby
|
19
|
+
gem "activelove"
|
20
|
+
```
|
21
|
+
|
22
|
+
Then
|
23
|
+
|
24
|
+
$ bundle
|
25
|
+
|
26
|
+
Or install it yourself as:
|
27
|
+
|
28
|
+
$ gem install activelove
|
29
|
+
|
30
|
+
## Integrate with Rails
|
31
|
+
|
32
|
+
TODO
|
33
|
+
|
34
|
+
## Usage
|
35
|
+
|
36
|
+
TODO
|
37
|
+
|
38
|
+
## License
|
39
|
+
|
40
|
+
The gem is available as open source under the terms of the [Unlicense](/UNLICENSE).
|
data/Rakefile
ADDED
data/UNLICENSE
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
This is free and unencumbered software released into the public domain.
|
2
|
+
|
3
|
+
Anyone is free to copy, modify, publish, use, compile, sell, or
|
4
|
+
distribute this software, either in source code form or as a compiled
|
5
|
+
binary, for any purpose, commercial or non-commercial, and by any
|
6
|
+
means.
|
7
|
+
|
8
|
+
In jurisdictions that recognize copyright laws, the author or authors
|
9
|
+
of this software dedicate any and all copyright interest in the
|
10
|
+
software to the public domain. We make this dedication for the benefit
|
11
|
+
of the public at large and to the detriment of our heirs and
|
12
|
+
successors. We intend this dedication to be an overt act of
|
13
|
+
relinquishment in perpetuity of all present and future rights to this
|
14
|
+
software under copyright law.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
19
|
+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
20
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
21
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
22
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
23
|
+
|
24
|
+
For more information, please refer to <http://unlicense.org/>.
|
data/activelove.gemspec
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "activelove/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "activelove"
|
8
|
+
spec.version = ActiveLove::VERSION
|
9
|
+
spec.authors = ["Juanito Fatas"]
|
10
|
+
spec.email = ["katehuang0320@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Active Love}
|
13
|
+
spec.description = %q{A gem integrates apple, twitter, google, emoji one emoji.}
|
14
|
+
spec.homepage = "https://github.com/JuanitoFatas/activelove"
|
15
|
+
spec.license = "UNLICENSE"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test)/}) }
|
18
|
+
spec.require_paths = ["lib"]
|
19
|
+
end
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "activelove"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
data/lib/activelove.rb
ADDED
metadata
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: activelove
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Juanito Fatas
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-09-26 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: A gem integrates apple, twitter, google, emoji one emoji.
|
14
|
+
email:
|
15
|
+
- katehuang0320@gmail.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- ".gitignore"
|
21
|
+
- ".travis.yml"
|
22
|
+
- CONTRIBUTING.md
|
23
|
+
- Gemfile
|
24
|
+
- README.md
|
25
|
+
- Rakefile
|
26
|
+
- UNLICENSE
|
27
|
+
- activelove.gemspec
|
28
|
+
- bin/console
|
29
|
+
- bin/setup
|
30
|
+
- lib/activelove.rb
|
31
|
+
- lib/activelove/version.rb
|
32
|
+
homepage: https://github.com/JuanitoFatas/activelove
|
33
|
+
licenses:
|
34
|
+
- UNLICENSE
|
35
|
+
metadata: {}
|
36
|
+
post_install_message:
|
37
|
+
rdoc_options: []
|
38
|
+
require_paths:
|
39
|
+
- lib
|
40
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: '0'
|
45
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - ">="
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '0'
|
50
|
+
requirements: []
|
51
|
+
rubyforge_project:
|
52
|
+
rubygems_version: 2.4.5.1
|
53
|
+
signing_key:
|
54
|
+
specification_version: 4
|
55
|
+
summary: Active Love
|
56
|
+
test_files: []
|
57
|
+
has_rdoc:
|