line-bot-api 0.1.6 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 161279afee5cb107987d9f247df54fa7a09cdee5
4
- data.tar.gz: 0d00ed7883c0445d4b1fc7b3ca5fe99cb02ec6f9
3
+ metadata.gz: 77f18236fb9633af724fc802844061329e0de363
4
+ data.tar.gz: 596d93e34bc4236940efffdfbd975539bb45b2da
5
5
  SHA512:
6
- metadata.gz: 943f09b22add1864399a8225708316e2cadd6a9c88754d1171537228ef32bf10e030e653c30c39193247349c069133f333668471318badde9e8d17b25711f45d
7
- data.tar.gz: cae6f3adfff0aeb94cf1dd2337073097a9b9ab6331985294c6eab40938242feb585f92b89b111fe78f1638aea8a9b44af70f42034cdecb612d8461e11cdd5061
6
+ metadata.gz: db551e84622d5d71bbfcdec000a313e6f88cc89b4c9ee9c1f31904947792c26d0d4924e3bc1c44fd0bb8aad4ad671862d075d86b445aa750021a012a1ff44166
7
+ data.tar.gz: dd9dca1322d91c4fbf9aa3ae895352a630139c35be0865894ecd4a236b33a68c52dfd82cf67ca7fc31c7c7f1005fc869993701bb1100a6af4227efeb4321703a
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,15 @@
1
+ ## How to contribute to LINE Bot SDK for Ruby project
2
+
3
+ First of all, thank you so much for taking your time to contribute! LINE Bot SDK for Ruby is not very different from any other open
4
+ source projects you are aware of. It will be amazing if you could help us by doing any of the following:
5
+
6
+ - File an issue in [the issue tracker](https://github.com/line/line-bot-sdk-ruby/issues) to report bugs and propose new features and
7
+ improvements.
8
+ - Ask a question using [the issue tracker](https://github.com/line/line-bot-sdk-ruby/issues).
9
+ - Contribute your work by sending [a pull request](https://github.com/line/line-bot-sdk-ruby/pulls).
10
+
11
+ ### Contributor license agreement
12
+
13
+ If you are sending a pull request and it's a non-trivial change beyond fixing typos, please make sure to sign
14
+ [the ICLA (individual contributor license agreement)](https://feedback.line.me/enquete/public/919-h9Yqmr1u). Please
15
+ contact us if you need the CCLA (corporate contributor license agreement).
@@ -1,7 +1,7 @@
1
1
  module Line
2
2
  module Bot
3
3
  module API
4
- VERSION = "0.1.6"
4
+ VERSION = "0.1.7"
5
5
  end
6
6
  end
7
7
  end
data/line-bot-api.gemspec CHANGED
@@ -12,15 +12,15 @@ Gem::Specification.new do |spec|
12
12
  spec.description = "Line::Bot::API - SDK of the LINE BOT API"
13
13
  spec.summary = spec.description
14
14
  spec.homepage = "https://github.com/line/line-bot-sdk-ruby"
15
- spec.license = "Apache License, Version 2.0"
15
+ spec.license = "Apache-2.0"
16
16
 
17
- spec.files = %w(CODE_OF_CONDUCT.md LICENSE README.md line-bot-api.gemspec) + Dir['lib/**/*.rb']
17
+ spec.files = %w(CONTRIBUTING.md LICENSE README.md line-bot-api.gemspec line-bot.gemspec) + Dir['lib/**/*.rb']
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
21
  spec.required_ruby_version = '>= 2.0.0'
22
22
 
23
- spec.add_dependency 'rack', '>= 1.6'
23
+ spec.add_dependency 'rack', '~> 0'
24
24
 
25
25
  spec.add_development_dependency "bundler", "~> 1.11"
26
26
  spec.add_development_dependency "rake", "~> 10.0"
data/line-bot.gemspec ADDED
@@ -0,0 +1,32 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'line/bot/api/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "line-bot"
8
+ spec.version = Line::Bot::API::VERSION
9
+ spec.authors = ["LINE Corporation"]
10
+ spec.email = ["hirohisa.kawasaki@gmail.com"]
11
+
12
+ spec.description = "Line::Bot::API - SDK of the LINE BOT API"
13
+ spec.summary = spec.description
14
+ spec.homepage = "https://github.com/line/line-bot-sdk-ruby"
15
+ spec.license = "Apache-2.0"
16
+
17
+ spec.files = %w(CONTRIBUTING.md LICENSE README.md line-bot-api.gemspec line-bot.gemspec) + Dir['lib/**/*.rb']
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.required_ruby_version = '>= 2.0.0'
22
+
23
+ spec.add_dependency 'rack', '~> 0'
24
+
25
+ spec.add_development_dependency "bundler", "~> 1.11"
26
+ spec.add_development_dependency "rake", "~> 10.0"
27
+ spec.add_development_dependency "webmock", "~> 1.24"
28
+ spec.add_development_dependency "rest-client", "~> 1.8"
29
+ spec.add_development_dependency "httpclient", "~> 2.8"
30
+ spec.add_development_dependency "addressable", "~> 2.3"
31
+ spec.add_development_dependency "rspec", "~> 3.0"
32
+ end
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: line-bot-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - LINE Corporation
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-03 00:00:00.000000000 Z
11
+ date: 2016-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ">="
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.6'
19
+ version: '0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ">="
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.6'
26
+ version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -129,7 +129,7 @@ executables: []
129
129
  extensions: []
130
130
  extra_rdoc_files: []
131
131
  files:
132
- - CODE_OF_CONDUCT.md
132
+ - CONTRIBUTING.md
133
133
  - LICENSE
134
134
  - README.md
135
135
  - lib/line/bot.rb
@@ -165,9 +165,10 @@ files:
165
165
  - lib/line/bot/response/user/profile.rb
166
166
  - lib/line/bot/utils.rb
167
167
  - line-bot-api.gemspec
168
+ - line-bot.gemspec
168
169
  homepage: https://github.com/line/line-bot-sdk-ruby
169
170
  licenses:
170
- - Apache License, Version 2.0
171
+ - Apache-2.0
171
172
  metadata: {}
172
173
  post_install_message:
173
174
  rdoc_options: []
data/CODE_OF_CONDUCT.md DELETED
@@ -1,49 +0,0 @@
1
- # Contributor Code of Conduct
2
-
3
- As contributors and maintainers of this project, and in the interest of
4
- fostering an open and welcoming community, we pledge to respect all people who
5
- contribute through reporting issues, posting feature requests, updating
6
- documentation, submitting pull requests or patches, and other activities.
7
-
8
- We are committed to making participation in this project a harassment-free
9
- experience for everyone, regardless of level of experience, gender, gender
10
- identity and expression, sexual orientation, disability, personal appearance,
11
- body size, race, ethnicity, age, religion, or nationality.
12
-
13
- Examples of unacceptable behavior by participants include:
14
-
15
- * The use of sexualized language or imagery
16
- * Personal attacks
17
- * Trolling or insulting/derogatory comments
18
- * Public or private harassment
19
- * Publishing other's private information, such as physical or electronic
20
- addresses, without explicit permission
21
- * Other unethical or unprofessional conduct
22
-
23
- Project maintainers have the right and responsibility to remove, edit, or
24
- reject comments, commits, code, wiki edits, issues, and other contributions
25
- that are not aligned to this Code of Conduct, or to ban temporarily or
26
- permanently any contributor for other behaviors that they deem inappropriate,
27
- threatening, offensive, or harmful.
28
-
29
- By adopting this Code of Conduct, project maintainers commit themselves to
30
- fairly and consistently applying these principles to every aspect of managing
31
- this project. Project maintainers who do not follow or enforce the Code of
32
- Conduct may be permanently removed from the project team.
33
-
34
- This code of conduct applies both within project spaces and in public spaces
35
- when an individual is representing the project or its community.
36
-
37
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
- reported by contacting a project maintainer at hirohisa.kawasaki@gmail.com. All
39
- complaints will be reviewed and investigated and will result in a response that
40
- is deemed necessary and appropriate to the circumstances. Maintainers are
41
- obligated to maintain confidentiality with regard to the reporter of an
42
- incident.
43
-
44
- This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
- version 1.3.0, available at
46
- [http://contributor-covenant.org/version/1/3/0/][version]
47
-
48
- [homepage]: http://contributor-covenant.org
49
- [version]: http://contributor-covenant.org/version/1/3/0/