-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies, set up Travis CI
- Loading branch information
1 parent
c68c754
commit 2999686
Showing
7 changed files
with
27 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,4 @@ pkg | |
|
||
## PROJECT::SPECIFIC | ||
Gemfile.lock | ||
.ruby-version |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
sudo: false | ||
language: ruby | ||
cache: bundler | ||
rvm: | ||
- 1.9.3 | ||
- 2.3.0 |
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,3 +1,3 @@ | ||
source "http://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
gemspec |
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,7 +1,4 @@ | ||
require 'helper' | ||
|
||
class TestYmaps < Test::Unit::TestCase | ||
should "probably rename this file and start testing for real" do | ||
flunk "hey buddy, you should probably rename this file and start testing for real" | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,24 +3,26 @@ $:.push File.expand_path('../lib', __FILE__) | |
require 'ymaps/version' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = 'ymaps' | ||
s.version = YMaps::VERSION | ||
s.platform = Gem::Platform::RUBY | ||
s.authors = ['Alexander Semyonov'] | ||
s.email = ['[email protected]'] | ||
s.homepage = 'http://github.com/rotuka/ymaps' | ||
s.summary = %q{Helpers for using YMaps} | ||
s.name = 'ymaps' | ||
s.version = YMaps::VERSION | ||
s.platform = Gem::Platform::RUBY | ||
s.authors = ['Alexander Semyonov'] | ||
s.email = ['[email protected]'] | ||
s.homepage = 'http://github.com/rotuka/ymaps' | ||
s.summary = %q{Helpers for using YMaps} | ||
s.description = %q{Different helpers for generating YMapsML, using YMaps widgets and geocoding via Yandex.Maps} | ||
|
||
s.rubyforge_project = 'ymaps' | ||
|
||
s.files = `git ls-files`.split("\n") | ||
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") | ||
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } | ||
s.require_paths = ["lib"] | ||
s.files = `git ls-files`.split("\n") | ||
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") | ||
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } | ||
s.require_paths = ['lib'] | ||
|
||
s.add_dependency('geokit', '~> 1.5') | ||
s.add_dependency('geokit', '~> 1.5') | ||
|
||
s.add_development_dependency('shoulda', '>= 0') | ||
s.add_development_dependency('yard', '>= 0') | ||
s.add_development_dependency('yard', '>= 0') | ||
s.add_development_dependency('rake', '>= 0') | ||
s.add_development_dependency('test-unit', '>= 0') | ||
end |