-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from typescript-ruby/ts_version_update
Updated gem version
- Loading branch information
Showing
5 changed files
with
21 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module Typescript | ||
module Rails | ||
VERSION = '0.5.0' | ||
VERSION = '0.6.0' | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,23 +5,23 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | |
require 'typescript/rails/version' | ||
|
||
Gem::Specification.new do |gem| | ||
gem.name = "typescript-rails" | ||
gem.name = 'typescript-rails' | ||
gem.version = Typescript::Rails::VERSION | ||
gem.platform = Gem::Platform::RUBY | ||
gem.authors = ["FUJI, Goro", "Klaus Zanders"] | ||
gem.email = ["[email protected]", "[email protected]"] | ||
gem.authors = ['FUJI, Goro', 'Klaus Zanders'] | ||
gem.email = %w([email protected] [email protected]) | ||
gem.description = %q{Adds Typescript to the Rails Asset pipeline} | ||
gem.summary = %q{Adds Typescript to the Rails Asset pipeline} | ||
gem.homepage = "https://github.com/typescript-ruby/typescript-rails" | ||
gem.homepage = 'https://github.com/typescript-ruby/typescript-rails' | ||
|
||
gem.add_runtime_dependency 'typescript-node', '>= 1.1.0' | ||
gem.add_runtime_dependency 'typescript-node', '>= 1.4.1' | ||
gem.add_runtime_dependency 'tilt' | ||
gem.add_runtime_dependency 'railties' | ||
|
||
gem.files = `git ls-files`.split($/) | ||
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } | ||
gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) | ||
gem.require_paths = ["lib"] | ||
gem.require_paths = ['lib'] | ||
|
||
gem.required_ruby_version = ">= 2.0.0" | ||
gem.required_ruby_version = '>= 2.0.0' | ||
end |