odpt_tokyo_metro_helper 0.2.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.
- checksums.yaml +7 -0
- data/.current_version +1 -0
- data/.gitignore +11 -0
- data/.rspec +2 -0
- data/.travis.yml +3 -0
- data/Capfile +33 -0
- data/Gemfile +4 -0
- data/README.md +39 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/config/deploy.rb +38 -0
- data/config/deploy/production.rb +61 -0
- data/config/deploy/staging.rb +61 -0
- data/exe/odpt_tokyo_metro_helper +3 -0
- data/lib/odpt_tokyo_metro_helper.rb +29 -0
- data/lib/odpt_tokyo_metro_helper/regexp_library.rb +14 -0
- data/lib/odpt_tokyo_metro_helper/string_ext.rb +23 -0
- data/lib/odpt_tokyo_metro_helper/version.rb +3 -0
- data/odpt_tokyo_metro_helper.gemspec +40 -0
- metadata +164 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: baf55583365e13223e672d95c6c81a03ae4f30cc
|
|
4
|
+
data.tar.gz: 3dfe2919351f5144e72ce2a3b013e99c8d2f767d
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: b670bf8b431dc0652fa16992c8bdb25f7bd1b4c1a1f4e943cb079542137edf10c3d496473ba164bf755b838c2ea30f8318265f4200c317dc3ec5829631e03442
|
|
7
|
+
data.tar.gz: 9e949f5489afa7cbe172385b9c87fb5cb90229608907f48f4737b6a71728eecd28d2881f2ecb25c85965f0fdbffbadbd507be20bf5d86c1d43987b906e53777e
|
data/.current_version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.2.2
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Capfile
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Load DSL and set up stages
|
|
2
|
+
require 'capistrano/setup'
|
|
3
|
+
|
|
4
|
+
# Include default deployment tasks
|
|
5
|
+
require 'capistrano/deploy'
|
|
6
|
+
|
|
7
|
+
require 'deplo'
|
|
8
|
+
|
|
9
|
+
# Include tasks from other gems included in your Gemfile
|
|
10
|
+
#
|
|
11
|
+
# For documentation on these, see for example:
|
|
12
|
+
#
|
|
13
|
+
# https://github.com/capistrano/rvm
|
|
14
|
+
# https://github.com/capistrano/rbenv
|
|
15
|
+
# https://github.com/capistrano/chruby
|
|
16
|
+
# https://github.com/capistrano/bundler
|
|
17
|
+
# https://github.com/capistrano/rails
|
|
18
|
+
# https://github.com/capistrano/passenger
|
|
19
|
+
#
|
|
20
|
+
# require 'capistrano/rvm'
|
|
21
|
+
# require 'capistrano/rbenv'
|
|
22
|
+
# require 'capistrano/chruby'
|
|
23
|
+
# require 'capistrano/bundler'
|
|
24
|
+
# require 'capistrano/rails/assets'
|
|
25
|
+
# require 'capistrano/rails/migrations'
|
|
26
|
+
# require 'capistrano/passenger'
|
|
27
|
+
|
|
28
|
+
# Load custom tasks from `lib/capistrano/tasks` if you have any defined
|
|
29
|
+
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }
|
|
30
|
+
|
|
31
|
+
Rake::Task[:production].invoke
|
|
32
|
+
invoke :production
|
|
33
|
+
set_cap_tasks_from_deplo
|
data/Gemfile
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# OdptTokyoMetroHelper
|
|
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/odpt_tokyo_metro_helper`. 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 'odpt_tokyo_metro_helper'
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
And then execute:
|
|
16
|
+
|
|
17
|
+
$ bundle
|
|
18
|
+
|
|
19
|
+
Or install it yourself as:
|
|
20
|
+
|
|
21
|
+
$ gem install odpt_tokyo_metro_helper
|
|
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 `bin/console` for an interactive prompt that will allow you to experiment. Run `bundle exec odpt_tokyo_metro_helper` to use the code located in this directory, ignoring other installed copies of this gem.
|
|
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` to 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
|
+
1. Fork it ( https://github.com/[my-github-username]/odpt_tokyo_metro_helper/fork )
|
|
36
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
37
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
38
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
|
39
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "odpt_tokyo_metro_helper"
|
|
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/config/deploy.rb
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# config valid only for current version of Capistrano
|
|
2
|
+
lock '3.4.0'
|
|
3
|
+
|
|
4
|
+
set :application , 'gem_odpt_tokyo_metro_helper'
|
|
5
|
+
set :repo_url , 'https://github.com/osorubeki-fujita/odpt_tokyo_metro_helper.git'
|
|
6
|
+
|
|
7
|
+
set :pj_dir , ::File.expand_path( "#{ ::File.dirname( __FILE__ ) }/.." )
|
|
8
|
+
set :github_remote_name , :origin
|
|
9
|
+
|
|
10
|
+
# Default branch is :master
|
|
11
|
+
# ask :branch, `git rev-parse --abbrev-ref HEAD`.chomp
|
|
12
|
+
|
|
13
|
+
# Default deploy_to directory is /var/www/my_app_name
|
|
14
|
+
set :deploy_to, '/'
|
|
15
|
+
|
|
16
|
+
# Default value for :scm is :git
|
|
17
|
+
# set :scm, :git
|
|
18
|
+
|
|
19
|
+
# Default value for :format is :pretty
|
|
20
|
+
# set :format, :pretty
|
|
21
|
+
|
|
22
|
+
# Default value for :log_level is :debug
|
|
23
|
+
# set :log_level, :debug
|
|
24
|
+
|
|
25
|
+
# Default value for :pty is false
|
|
26
|
+
# set :pty, true
|
|
27
|
+
|
|
28
|
+
# Default value for :linked_files is []
|
|
29
|
+
# set :linked_files, fetch(:linked_files, []).push('config/database.yml', 'config/secrets.yml')
|
|
30
|
+
|
|
31
|
+
# Default value for linked_dirs is []
|
|
32
|
+
# set :linked_dirs, fetch(:linked_dirs, []).push('log', 'tmp/pids', 'tmp/cache', 'tmp/sockets', 'vendor/bundle', 'public/system')
|
|
33
|
+
|
|
34
|
+
# Default value for default_env is {}
|
|
35
|
+
# set :default_env, { path: "/opt/ruby/bin:$PATH" }
|
|
36
|
+
|
|
37
|
+
# Default value for keep_releases is 5
|
|
38
|
+
# set :keep_releases, 5
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# server-based syntax
|
|
2
|
+
# ======================
|
|
3
|
+
# Defines a single server with a list of roles and multiple properties.
|
|
4
|
+
# You can define all roles on a single server, or split them:
|
|
5
|
+
|
|
6
|
+
# server 'example.com', user: 'deploy', roles: %w{app db web}, my_property: :my_value
|
|
7
|
+
# server 'example.com', user: 'deploy', roles: %w{app web}, other_property: :other_value
|
|
8
|
+
# server 'db.example.com', user: 'deploy', roles: %w{db}
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
# role-based syntax
|
|
13
|
+
# ==================
|
|
14
|
+
|
|
15
|
+
# Defines a role with one or multiple servers. The primary server in each
|
|
16
|
+
# group is considered to be the first unless any hosts have the primary
|
|
17
|
+
# property set. Specify the username and a domain or IP for the server.
|
|
18
|
+
# Don't use `:all`, it's a meta role.
|
|
19
|
+
|
|
20
|
+
# role :app, %w{deploy@example.com}, my_property: :my_value
|
|
21
|
+
# role :web, %w{user1@primary.com user2@additional.com}, other_property: :other_value
|
|
22
|
+
# role :db, %w{deploy@example.com}
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
# Configuration
|
|
27
|
+
# =============
|
|
28
|
+
# You can set any configuration variable like in config/deploy.rb
|
|
29
|
+
# These variables are then only loaded and set in this stage.
|
|
30
|
+
# For available Capistrano configuration variables see the documentation page.
|
|
31
|
+
# http://capistranorb.com/documentation/getting-started/configuration/
|
|
32
|
+
# Feel free to add new variables to customise your setup.
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
# Custom SSH Options
|
|
37
|
+
# ==================
|
|
38
|
+
# You may pass any option but keep in mind that net/ssh understands a
|
|
39
|
+
# limited set of options, consult the Net::SSH documentation.
|
|
40
|
+
# http://net-ssh.github.io/net-ssh/classes/Net/SSH.html#method-c-start
|
|
41
|
+
#
|
|
42
|
+
# Global options
|
|
43
|
+
# --------------
|
|
44
|
+
# set :ssh_options, {
|
|
45
|
+
# keys: %w(/home/rlisowski/.ssh/id_rsa),
|
|
46
|
+
# forward_agent: false,
|
|
47
|
+
# auth_methods: %w(password)
|
|
48
|
+
# }
|
|
49
|
+
#
|
|
50
|
+
# The server-based syntax can be used to override options:
|
|
51
|
+
# ------------------------------------
|
|
52
|
+
# server 'example.com',
|
|
53
|
+
# user: 'user_name',
|
|
54
|
+
# roles: %w{web app},
|
|
55
|
+
# ssh_options: {
|
|
56
|
+
# user: 'user_name', # overrides user setting above
|
|
57
|
+
# keys: %w(/home/user_name/.ssh/id_rsa),
|
|
58
|
+
# forward_agent: false,
|
|
59
|
+
# auth_methods: %w(publickey password)
|
|
60
|
+
# # password: 'please use keys'
|
|
61
|
+
# }
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# server-based syntax
|
|
2
|
+
# ======================
|
|
3
|
+
# Defines a single server with a list of roles and multiple properties.
|
|
4
|
+
# You can define all roles on a single server, or split them:
|
|
5
|
+
|
|
6
|
+
# server 'example.com', user: 'deploy', roles: %w{app db web}, my_property: :my_value
|
|
7
|
+
# server 'example.com', user: 'deploy', roles: %w{app web}, other_property: :other_value
|
|
8
|
+
# server 'db.example.com', user: 'deploy', roles: %w{db}
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
# role-based syntax
|
|
13
|
+
# ==================
|
|
14
|
+
|
|
15
|
+
# Defines a role with one or multiple servers. The primary server in each
|
|
16
|
+
# group is considered to be the first unless any hosts have the primary
|
|
17
|
+
# property set. Specify the username and a domain or IP for the server.
|
|
18
|
+
# Don't use `:all`, it's a meta role.
|
|
19
|
+
|
|
20
|
+
# role :app, %w{deploy@example.com}, my_property: :my_value
|
|
21
|
+
# role :web, %w{user1@primary.com user2@additional.com}, other_property: :other_value
|
|
22
|
+
# role :db, %w{deploy@example.com}
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
# Configuration
|
|
27
|
+
# =============
|
|
28
|
+
# You can set any configuration variable like in config/deploy.rb
|
|
29
|
+
# These variables are then only loaded and set in this stage.
|
|
30
|
+
# For available Capistrano configuration variables see the documentation page.
|
|
31
|
+
# http://capistranorb.com/documentation/getting-started/configuration/
|
|
32
|
+
# Feel free to add new variables to customise your setup.
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
# Custom SSH Options
|
|
37
|
+
# ==================
|
|
38
|
+
# You may pass any option but keep in mind that net/ssh understands a
|
|
39
|
+
# limited set of options, consult the Net::SSH documentation.
|
|
40
|
+
# http://net-ssh.github.io/net-ssh/classes/Net/SSH.html#method-c-start
|
|
41
|
+
#
|
|
42
|
+
# Global options
|
|
43
|
+
# --------------
|
|
44
|
+
# set :ssh_options, {
|
|
45
|
+
# keys: %w(/home/rlisowski/.ssh/id_rsa),
|
|
46
|
+
# forward_agent: false,
|
|
47
|
+
# auth_methods: %w(password)
|
|
48
|
+
# }
|
|
49
|
+
#
|
|
50
|
+
# The server-based syntax can be used to override options:
|
|
51
|
+
# ------------------------------------
|
|
52
|
+
# server 'example.com',
|
|
53
|
+
# user: 'user_name',
|
|
54
|
+
# roles: %w{web app},
|
|
55
|
+
# ssh_options: {
|
|
56
|
+
# user: 'user_name', # overrides user setting above
|
|
57
|
+
# keys: %w(/home/user_name/.ssh/id_rsa),
|
|
58
|
+
# forward_agent: false,
|
|
59
|
+
# auth_methods: %w(publickey password)
|
|
60
|
+
# # password: 'please use keys'
|
|
61
|
+
# }
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
require "odpt_tokyo_metro_helper/version"
|
|
2
|
+
|
|
3
|
+
require "active_support"
|
|
4
|
+
require "active_support/concern"
|
|
5
|
+
|
|
6
|
+
require "odpt_common"
|
|
7
|
+
|
|
8
|
+
require "odpt_tokyo_metro_helper/string_ext"
|
|
9
|
+
require "odpt_tokyo_metro_helper/regexp_library"
|
|
10
|
+
|
|
11
|
+
module OdptTokyoMetroHelper
|
|
12
|
+
|
|
13
|
+
extend ::ActiveSupport::Concern
|
|
14
|
+
|
|
15
|
+
included do
|
|
16
|
+
|
|
17
|
+
[ :String ].each do | class_name |
|
|
18
|
+
eval <<-INCLUDE
|
|
19
|
+
::#{ class_name }.class_eval do
|
|
20
|
+
include ::OdptTokyoMetroHelper::#{ class_name }Ext
|
|
21
|
+
end
|
|
22
|
+
INCLUDE
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
include OdptTokyoMetroHelper
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
module OdptTokyoMetroHelper::StringExt
|
|
2
|
+
|
|
3
|
+
def process_machine_dependent_character
|
|
4
|
+
super().process_kouji
|
|
5
|
+
end
|
|
6
|
+
|
|
7
|
+
def revive_machine_dependent_character
|
|
8
|
+
super().revive_kouji
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
protected
|
|
12
|
+
|
|
13
|
+
# 環境依存文字「麴」を「麹」に変換するメソッド
|
|
14
|
+
# @return [String]
|
|
15
|
+
def process_kouji
|
|
16
|
+
gsub( ::OdptTokyoMetroHelper::RegexpLibrary.kojimachi , "麹町" )
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def revive_kouji
|
|
20
|
+
gsub( ::OdptTokyoMetroHelper::RegexpLibrary.kojimachi , "麴町" )
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
end
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'odpt_tokyo_metro_helper/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "odpt_tokyo_metro_helper"
|
|
8
|
+
spec.version = OdptTokyoMetroHelper::VERSION
|
|
9
|
+
spec.authors = ["Shu Fujita"]
|
|
10
|
+
spec.email = ["osorubeki.fujita@gmail.com"]
|
|
11
|
+
|
|
12
|
+
spec.summary = "This gem provides helpful modules for Rails Application of Tokyo Metro Open Data."
|
|
13
|
+
spec.description = "This gem provides helpful modules for Rails Application of Tokyo Metro Open Data. [Please note] This gem is a temporary version."
|
|
14
|
+
spec.homepage = "https://github.com/osorubeki-fujita/odpt_tokyo_metro_helper"
|
|
15
|
+
|
|
16
|
+
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
|
17
|
+
# delete this section to allow pushing this gem to any host.
|
|
18
|
+
# if spec.respond_to?(:metadata)
|
|
19
|
+
# spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
|
|
20
|
+
# else
|
|
21
|
+
# raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
|
22
|
+
# end
|
|
23
|
+
|
|
24
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
25
|
+
spec.bindir = "exe"
|
|
26
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
27
|
+
spec.require_paths = ["lib"]
|
|
28
|
+
|
|
29
|
+
spec.required_ruby_version = ">= 2.1.6"
|
|
30
|
+
|
|
31
|
+
spec.add_development_dependency "bundler", "~> 1.9"
|
|
32
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
33
|
+
spec.add_development_dependency "rspec"
|
|
34
|
+
|
|
35
|
+
spec.add_development_dependency "capistrano"
|
|
36
|
+
spec.add_development_dependency "deplo", ">= 0.1.4"
|
|
37
|
+
|
|
38
|
+
spec.add_runtime_dependency "activesupport" , ">= 4.2.1"
|
|
39
|
+
spec.add_runtime_dependency "odpt_common" , ">= 0.2.1"
|
|
40
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: odpt_tokyo_metro_helper
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.2.2
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Shu Fujita
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-07-23 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bundler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.9'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.9'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '10.0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '10.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rspec
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - ">="
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: capistrano
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: deplo
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: 0.1.4
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: 0.1.4
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: activesupport
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - ">="
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: 4.2.1
|
|
90
|
+
type: :runtime
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - ">="
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: 4.2.1
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: odpt_common
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - ">="
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: 0.2.1
|
|
104
|
+
type: :runtime
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - ">="
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: 0.2.1
|
|
111
|
+
description: This gem provides helpful modules for Rails Application of Tokyo Metro
|
|
112
|
+
Open Data. [Please note] This gem is a temporary version.
|
|
113
|
+
email:
|
|
114
|
+
- osorubeki.fujita@gmail.com
|
|
115
|
+
executables:
|
|
116
|
+
- odpt_tokyo_metro_helper
|
|
117
|
+
extensions: []
|
|
118
|
+
extra_rdoc_files: []
|
|
119
|
+
files:
|
|
120
|
+
- ".current_version"
|
|
121
|
+
- ".gitignore"
|
|
122
|
+
- ".rspec"
|
|
123
|
+
- ".travis.yml"
|
|
124
|
+
- Capfile
|
|
125
|
+
- Gemfile
|
|
126
|
+
- README.md
|
|
127
|
+
- Rakefile
|
|
128
|
+
- bin/console
|
|
129
|
+
- bin/setup
|
|
130
|
+
- config/deploy.rb
|
|
131
|
+
- config/deploy/production.rb
|
|
132
|
+
- config/deploy/staging.rb
|
|
133
|
+
- exe/odpt_tokyo_metro_helper
|
|
134
|
+
- lib/odpt_tokyo_metro_helper.rb
|
|
135
|
+
- lib/odpt_tokyo_metro_helper/regexp_library.rb
|
|
136
|
+
- lib/odpt_tokyo_metro_helper/string_ext.rb
|
|
137
|
+
- lib/odpt_tokyo_metro_helper/version.rb
|
|
138
|
+
- odpt_tokyo_metro_helper.gemspec
|
|
139
|
+
homepage: https://github.com/osorubeki-fujita/odpt_tokyo_metro_helper
|
|
140
|
+
licenses: []
|
|
141
|
+
metadata: {}
|
|
142
|
+
post_install_message:
|
|
143
|
+
rdoc_options: []
|
|
144
|
+
require_paths:
|
|
145
|
+
- lib
|
|
146
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
147
|
+
requirements:
|
|
148
|
+
- - ">="
|
|
149
|
+
- !ruby/object:Gem::Version
|
|
150
|
+
version: 2.1.6
|
|
151
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
152
|
+
requirements:
|
|
153
|
+
- - ">="
|
|
154
|
+
- !ruby/object:Gem::Version
|
|
155
|
+
version: '0'
|
|
156
|
+
requirements: []
|
|
157
|
+
rubyforge_project:
|
|
158
|
+
rubygems_version: 2.2.3
|
|
159
|
+
signing_key:
|
|
160
|
+
specification_version: 4
|
|
161
|
+
summary: This gem provides helpful modules for Rails Application of Tokyo Metro Open
|
|
162
|
+
Data.
|
|
163
|
+
test_files: []
|
|
164
|
+
has_rdoc:
|