Add basic frame
Showing
Untitled-1.rb
0 → 100644
db/migrate/1_create_forecasts.rb
0 → 100644
lib/templates/migration.rb
0 → 100644
lib/templates/migration_exsiting.rb
0 → 100644
lib/weather/model/source_schema.rb
0 → 100644
lib/weather/model/storer.rb
0 → 100644
| ... | ... | @@ -6,18 +6,18 @@ require 'weather/model/version' |
| Gem::Specification.new do |spec| | ||
| spec.name = "weather-model" | ||
| spec.version = Weather::Model::VERSION | ||
| spec.authors = ["liyijie"] | ||
| spec.email = ["liyijie825@gmail.com"] | ||
| spec.authors = ["Ivan Lan"] | ||
| spec.email = ["mumumumushu@gmail.com"] | ||
| spec.summary = %q{TODO: Write a short summary, because Rubygems requires one.} | ||
| spec.description = %q{TODO: Write a longer description or delete this line.} | ||
| spec.homepage = "TODO: Put your gem's website or public repo URL here." | ||
| spec.summary = %q{Weather Model} | ||
| spec.description = %q{Weather Model} | ||
| spec.homepage = "https://git.tallty.com/weather/weather-model" | ||
| spec.license = "MIT" | ||
| # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' | ||
| # to allow pushing to a single host or delete this section to allow pushing to any host. | ||
| if spec.respond_to?(:metadata) | ||
| spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'" | ||
| spec.metadata['allowed_push_host'] = "https://git.tallty.com/weather/weather-model" | ||
| else | ||
| raise "RubyGems 2.0 or newer is required to protect against " \ | ||
| "public gem pushes." | ||
| ... | ... | @@ -30,6 +30,15 @@ Gem::Specification.new do |spec| |
| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } | ||
| spec.require_paths = ["lib"] | ||
| # Object-Hash Mapping for Redis | ||
| # https://github.com/soveran/ohm | ||
| spec.add_dependency "ohm" | ||
| # Ohm plugin that exposes ttl control over modules | ||
| # https://github.com/joseairosa/ohm-expire | ||
| spec.add_dependency "ohm-expire" | ||
| spec.add_dependency "activerecord" | ||
| spec.add_development_dependency "bundler", "~> 1.14" | ||
| spec.add_development_dependency "rake", "~> 10.0" | ||
| spec.add_development_dependency "rspec", "~> 3.0" | ||
| ... | ... |
Please
register
or
sign in
to comment