tehranjs 0.0.1.alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.rspec +2 -0
- data/.ruby-version +1 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/bin/tehranjs +13 -0
- data/lib/tehranjs.rb +5 -0
- data/lib/tehranjs/cli.rb +35 -0
- data/lib/tehranjs/cli/serve.rb +37 -0
- data/lib/tehranjs/identity.rb +31 -0
- data/lib/tehranjs/web/controller.rb +26 -0
- data/lib/tehranjs/web/servlet.rb +24 -0
- data/lib/tehranjs/web/views/_layouts/application.html.erb +11 -0
- data/lib/tehranjs/web/views/index.html.erb +4 -0
- data/tehranjs.gemspec +33 -0
- metadata +136 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: f746e0af996661520a53476eb3f9757cf024111d
|
4
|
+
data.tar.gz: 0cb730a65a1910b7188a1dccf6196d866063b65b
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1e408a0d4d30e29ab5946453998706b1714df3e3cc5b0fefd3c12637651e051dc67328c48aa1c8ce93f55666ac296856c871dab0d5cf832f3ea3b60fa561b078
|
7
|
+
data.tar.gz: 9c4daf8a77cf16f785d7e7fa2ffce3a09901df323294bed7f775527f121cad11e997f4ce8074078405c5691d325eb35aac4dfe3064767bdd2b1a204629489eb5
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.4.0
|
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at mm580486@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 mohammad mahmoudi
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
# Tehranjs
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/tehranjs`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'tehranjs'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install tehranjs
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
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).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/tehranjs. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
|
+
|
37
|
+
|
38
|
+
## License
|
39
|
+
|
40
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
41
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "tehranjs"
|
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(__FILE__)
|
data/bin/setup
ADDED
data/bin/tehranjs
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
#! /usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
gem_dir = File.expand_path(File.dirname(__FILE__) + "/../lib")
|
5
|
+
|
6
|
+
if $LOAD_PATH.map { |d| File.expand_path(d) }.all? { |d| d != gem_dir }
|
7
|
+
$LOAD_PATH.unshift gem_dir
|
8
|
+
end
|
9
|
+
|
10
|
+
require 'tehranjs'
|
11
|
+
require 'tehranjs/cli'
|
12
|
+
|
13
|
+
Tehranjs::CLI.start
|
data/lib/tehranjs.rb
ADDED
data/lib/tehranjs/cli.rb
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
require "tehranjs/identity"
|
2
|
+
require "thor"
|
3
|
+
require "thor/actions"
|
4
|
+
require "thor_plus/actions"
|
5
|
+
require 'tehranjs/cli/serve'
|
6
|
+
|
7
|
+
module Tehranjs
|
8
|
+
# The Command Line Interface (CLI) for the gem.
|
9
|
+
class CLI < Thor
|
10
|
+
include Thor::Actions
|
11
|
+
include ThorPlus::Actions
|
12
|
+
|
13
|
+
package_name Identity.version_label
|
14
|
+
namespace :default
|
15
|
+
|
16
|
+
register(
|
17
|
+
Serve,
|
18
|
+
"serve", "process server",
|
19
|
+
"Process for run server",
|
20
|
+
hide: true
|
21
|
+
)
|
22
|
+
|
23
|
+
|
24
|
+
def initialize args = [], options = {}, config = {}
|
25
|
+
super args, options, config
|
26
|
+
end
|
27
|
+
|
28
|
+
desc "-v, [--version]", "Version."
|
29
|
+
map %w[-v --version] => :version
|
30
|
+
def version
|
31
|
+
say Identity.version_label
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
require "webrick"
|
2
|
+
require "tehranjs/web/controller"
|
3
|
+
require "tehranjs/web/servlet"
|
4
|
+
|
5
|
+
module Tehranjs
|
6
|
+
class CLI < Thor
|
7
|
+
class Serve < Thor::Group
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
desc "Serve start server"
|
12
|
+
|
13
|
+
namespace :serve
|
14
|
+
|
15
|
+
class_option :port,
|
16
|
+
aliases: "-p",
|
17
|
+
desc: "Server Port",
|
18
|
+
type: :numeric, default: 2525
|
19
|
+
|
20
|
+
def Serve
|
21
|
+
|
22
|
+
server = WEBrick::HTTPServer.new(:Port => options[:port])
|
23
|
+
|
24
|
+
server.mount "/", Tehranjs::Web::Servlet
|
25
|
+
|
26
|
+
trap("INT") {
|
27
|
+
server.shutdown
|
28
|
+
}
|
29
|
+
|
30
|
+
server.start
|
31
|
+
|
32
|
+
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
module Tehranjs
|
2
|
+
# Gem identity information.
|
3
|
+
module Identity
|
4
|
+
def self.name
|
5
|
+
"tehranjs"
|
6
|
+
end
|
7
|
+
|
8
|
+
def self.label
|
9
|
+
"Tehran JS"
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.version
|
13
|
+
"0.0.1.alpha"
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.version_label
|
17
|
+
"#{label} #{version}
|
18
|
+
.%%%%%%..%%%%%%..%%..%%..%%%%%....%%%%...%%..%%..........%%%%%%...%%%%..
|
19
|
+
...%%....%%......%%..%%..%%..%%..%%..%%..%%%.%%..............%%..%%.....
|
20
|
+
...%%....%%%%....%%%%%%..%%%%%...%%%%%%..%%.%%%..............%%...%%%%..
|
21
|
+
...%%....%%......%%..%%..%%..%%..%%..%%..%%..%%..........%%..%%......%%.
|
22
|
+
...%%....%%%%%%..%%..%%..%%..%%..%%..%%..%%..%%...........%%%%....%%%%..
|
23
|
+
........................................................................
|
24
|
+
"
|
25
|
+
end
|
26
|
+
|
27
|
+
def self.file_name
|
28
|
+
".#{name}rc"
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
require 'erb'
|
2
|
+
|
3
|
+
module Tehranjs
|
4
|
+
module Web
|
5
|
+
class Controller
|
6
|
+
|
7
|
+
def self.index
|
8
|
+
self.render 'index.html.erb'
|
9
|
+
end
|
10
|
+
|
11
|
+
def self.render template
|
12
|
+
@layout = File.read(::File.join(::File.dirname(__FILE__),"views", '_layouts','application.html.erb'))
|
13
|
+
@template = File.read(::File.join(::File.dirname(__FILE__),"views", template))
|
14
|
+
templates = [@template, @layout]
|
15
|
+
templates.inject(nil) do | prev, temp |
|
16
|
+
self._render(temp) { prev }
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def self._render temp
|
21
|
+
ERB.new(temp).result( binding )
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
module Tehranjs
|
2
|
+
module Web
|
3
|
+
class Servlet < WEBrick::HTTPServlet::AbstractServlet
|
4
|
+
|
5
|
+
def do_GET (request, response)
|
6
|
+
response.status = 200
|
7
|
+
response.content_type = "text/html"
|
8
|
+
result = nil
|
9
|
+
|
10
|
+
case request.path
|
11
|
+
when "/"
|
12
|
+
result = Tehranjs::Web::Controller.index
|
13
|
+
when "/subtract"
|
14
|
+
result = MyNormalClass.subtract(a, b)
|
15
|
+
else
|
16
|
+
result = "No such method"
|
17
|
+
end
|
18
|
+
|
19
|
+
response.body = result.to_s + "\n"
|
20
|
+
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
data/tehranjs.gemspec
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'tehranjs/identity'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "tehranjs"
|
8
|
+
spec.version = Tehranjs::Identity.version
|
9
|
+
spec.authors = ["mohammad mahmoudi"]
|
10
|
+
spec.email = ["mm580486@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Tehranjs gem help you to build markdown file}
|
13
|
+
spec.description = %q{Tehranjs gem help you to build markdown file}
|
14
|
+
spec.homepage = "https://github.com/mm580486/tehranjs-cli"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
|
18
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
19
|
+
f.match(%r{^(test|spec|features)/})
|
20
|
+
end
|
21
|
+
spec.bindir = "bin"
|
22
|
+
spec.executables << 'tehranjs'
|
23
|
+
spec.require_paths = ["lib"]
|
24
|
+
|
25
|
+
spec.required_ruby_version = "~> 2.0"
|
26
|
+
spec.add_dependency "thor", "~> 0.19"
|
27
|
+
spec.add_dependency "thor_plus", "~> 5.0"
|
28
|
+
|
29
|
+
spec.add_development_dependency "bundler", "~> 1.14"
|
30
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
31
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
32
|
+
|
33
|
+
end
|
metadata
ADDED
@@ -0,0 +1,136 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: tehranjs
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1.alpha
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- mohammad mahmoudi
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-04-26 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: thor
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.19'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0.19'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: thor_plus
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '5.0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '5.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.14'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.14'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '10.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '10.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '3.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '3.0'
|
83
|
+
description: Tehranjs gem help you to build markdown file
|
84
|
+
email:
|
85
|
+
- mm580486@gmail.com
|
86
|
+
executables:
|
87
|
+
- tehranjs
|
88
|
+
extensions: []
|
89
|
+
extra_rdoc_files: []
|
90
|
+
files:
|
91
|
+
- ".gitignore"
|
92
|
+
- ".rspec"
|
93
|
+
- ".ruby-version"
|
94
|
+
- ".travis.yml"
|
95
|
+
- CODE_OF_CONDUCT.md
|
96
|
+
- Gemfile
|
97
|
+
- LICENSE.txt
|
98
|
+
- README.md
|
99
|
+
- Rakefile
|
100
|
+
- bin/console
|
101
|
+
- bin/setup
|
102
|
+
- bin/tehranjs
|
103
|
+
- lib/tehranjs.rb
|
104
|
+
- lib/tehranjs/cli.rb
|
105
|
+
- lib/tehranjs/cli/serve.rb
|
106
|
+
- lib/tehranjs/identity.rb
|
107
|
+
- lib/tehranjs/web/controller.rb
|
108
|
+
- lib/tehranjs/web/servlet.rb
|
109
|
+
- lib/tehranjs/web/views/_layouts/application.html.erb
|
110
|
+
- lib/tehranjs/web/views/index.html.erb
|
111
|
+
- tehranjs.gemspec
|
112
|
+
homepage: https://github.com/mm580486/tehranjs-cli
|
113
|
+
licenses:
|
114
|
+
- MIT
|
115
|
+
metadata: {}
|
116
|
+
post_install_message:
|
117
|
+
rdoc_options: []
|
118
|
+
require_paths:
|
119
|
+
- lib
|
120
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '2.0'
|
125
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
126
|
+
requirements:
|
127
|
+
- - ">"
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: 1.3.1
|
130
|
+
requirements: []
|
131
|
+
rubyforge_project:
|
132
|
+
rubygems_version: 2.6.8
|
133
|
+
signing_key:
|
134
|
+
specification_version: 4
|
135
|
+
summary: Tehranjs gem help you to build markdown file
|
136
|
+
test_files: []
|