forked from phrase/phraseapp-in-context-editor-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phraseapp-in-context-editor-ruby.gemspec
31 lines (29 loc) · 1.28 KB
/
phraseapp-in-context-editor-ruby.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'phraseapp-in-context-editor-ruby/version'
Gem::Specification.new do |s|
s.name = "phraseapp-in-context-editor-ruby"
s.version = PhraseApp::InContextEditor::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Dynport GmbH"]
s.email = ["[email protected]"]
s.homepage = "https://phraseapp.com"
s.summary = %q{Translation management solution for web and mobile applications}
s.licenses = ['MIT']
s.description = %q{PhraseApp In-Context-Editor allows you to edit translations directly on the website. More information: phraseapp.com}
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "phraseapp-in-context-editor-ruby"
git_files = `git ls-files | grep -v spec/`.split("\n") rescue ''
s.files = git_files
s.test_files = s.files.grep(%r{^(spec)/})
s.require_paths = ["lib"]
s.add_dependency('json', '~> 1.8')
s.add_dependency('i18n', '~> 0.7')
s.add_dependency('phraseapp-ruby', '~> 1.1')
s.add_development_dependency('rspec', '~> 3.2')
s.add_development_dependency('webmock', '~> 1.21')
s.add_development_dependency('vcr', '~> 2.9')
s.add_development_dependency('timecop', '~> 0.7')
s.add_development_dependency('rails', '~> 4.2')
end