Skip to content
This repository was archived by the owner on Oct 19, 2018. It is now read-only.

Commit c6eb3b1

Browse files
committed
initial edge version lap22 released
1 parent de6d42d commit c6eb3b1

File tree

7 files changed

+11
-22
lines changed

7 files changed

+11
-22
lines changed

Gemfile

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
source 'https://rubygems.org'
2-
source ENV['HYPER_DEV_GEM_SOURCE'] if ENV['HYPER_DEV_GEM_SOURCE']
32
gem "opal-jquery", git: "https://github.com/opal/opal-jquery.git", branch: "master"
43
gem "opal-rails", git: "https://github.com/opal/opal-rails.git", branch: "master"
54
gemspec

Rakefile

+8
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,12 @@ require "bundler/gem_tasks"
22
require "rspec/core/rake_task"
33

44
RSpec::Core::RakeTask.new(:spec)
5+
6+
namespace :spec do
7+
task :prepare do
8+
sh %{bundle update}
9+
sh %{cd spec/test_app; bundle update}
10+
end
11+
end
12+
513
task :default => :spec

dciy.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[dciy.commands]
2-
prepare = ["./dciy_prepare.sh"]
3-
cibuild = ["./dciy_run.sh"]
2+
prepare = ["bundle exec rake spec:prepare"]
3+
cibuild = ["bundle exec rake"]

dciy_prepare.sh

-7
This file was deleted.

dciy_run.sh

-10
This file was deleted.

lib/hyper-spec/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module HyperSpec
2-
VERSION = '1.0.0.lap21'
2+
VERSION = '1.0.0.lap22'
33
end

spec/test_app/Gemfile

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
source 'https://rubygems.org'
2-
source ENV['HYPER_DEV_GEM_SOURCE'] if ENV['HYPER_DEV_GEM_SOURCE']
32

43
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
54
gem 'rails'

0 commit comments

Comments
 (0)