Sha256: 2d98541be1812a562c530df4ef81bcb626d2382fe01d28fa2ae721517bde0ee3

Contents?: true

Size: 343 Bytes

Versions: 9

Compression:

Stored size: 343 Bytes

Contents

require "bundler/gem_tasks"

begin
  require "rspec/core/rake_task"
  RSpec::Core::RakeTask.new
  task :default => :spec
rescue
  warn("Install rspec")
end

desc "Update API schama"
task :update_api_schema do
  command = "git submodule foreach git pull origin master --ff"
  sh command
  sh "git add api"
  sh "git commit -m '#{command}'"
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
chatwork-1.0.1 Rakefile
chatwork-1.0.0 Rakefile
chatwork-0.12.3 Rakefile
chatwork-0.12.2 Rakefile
chatwork-0.12.1 Rakefile
chatwork-0.12.0 Rakefile
chatwork-0.11.0 Rakefile
chatwork-0.10.0 Rakefile
chatwork-0.9.0 Rakefile