mindmeister_api 0.0.15

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/mindmeister_api/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.required_ruby_version = '>= 2.5'
7
+ spec.name = 'mindmeister_api'
8
+ spec.version = MindmeisterApi::VERSION
9
+ spec.authors = ['David Cruwys']
10
+ spec.email = ['david@ideasmen.com.au']
11
+
12
+ spec.summary = 'Mindmeister API provides an API wrapper to the Mindmeister V2 API'
13
+ spec.description = <<-TEXT
14
+ Mindmeister API provides an API wrapper to the Mindmeister V2 API
15
+ TEXT
16
+ spec.homepage = 'http://appydave.com/gems/mindmeister-api'
17
+ spec.license = 'MIT'
18
+
19
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
20
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
21
+ raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.' unless spec.respond_to?(:metadata)
22
+
23
+ # spec.metadata['allowed_push_host'] = "Set to 'http://mygemserver.com'"
24
+
25
+ spec.metadata['homepage_uri'] = spec.homepage
26
+ spec.metadata['source_code_uri'] = 'https://github.com/klueless-io/mindmeister_api'
27
+ spec.metadata['changelog_uri'] = 'https://github.com/klueless-io/mindmeister_api/commits/master'
28
+
29
+ # Specify which files should be added to the gem when it is released.
30
+ # The `git ls-files -z` loads the RubyGem files that have been added into git.
31
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
32
+ `git ls-files -z`.split("\x0").reject do |f|
33
+ f.match(%r{^(test|spec|features)/})
34
+ end
35
+ end
36
+ spec.bindir = 'exe'
37
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
38
+ spec.require_paths = ['lib']
39
+ # spec.extensions = ['ext/mindmeister_api/extconf.rb']
40
+
41
+ spec.add_dependency 'k_log' , '~> 0.0.0'
42
+ spec.add_dependency 'rubyzip'
43
+ # spec.add_dependency 'k_type' , '~> 0.0.0'
44
+ # spec.add_dependency 'k_util' , '~> 0.0.0'
45
+ end
@@ -0,0 +1,4 @@
1
+ {
2
+ "map_version": "2.6",
3
+ "xmen": {}
4
+ }