Skip to content

Commit 00484fd

Browse files
committed
gem: update version and cleanup the gem specification
1 parent a1a36c9 commit 00484fd

File tree

5 files changed

+55
-13
lines changed

5 files changed

+55
-13
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ gemspec
55
gem 'rack'
66
gem 'sinatra'
77
gem 'sinatra-websocket'
8+
gem 'opal-rspec', '0.3.0.beta3'
89

910
# runner
1011
gem 'selenium-webdriver', require: false
1112
gem 'rest-client', require: false
1213

1314
# browser
1415
gem 'opal', github: 'opal/opal'
15-
gem 'opal-rspec', '0.3.0.beta3'
1616
gem 'paggio', github: 'meh/paggio'

LICENSE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (C) 2014 by meh
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in
11+
all copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,3 +143,28 @@ this means you'll need external polyfills for this.
143143
The suggested polyfill is
144144
[wgxpath](https://code.google.com/p/wicked-good-xpath/), require it **before**
145145
opal-browser.
146+
147+
License
148+
=======
149+
150+
(The MIT License)
151+
152+
Copyright (C) 2014 by meh
153+
154+
Permission is hereby granted, free of charge, to any person obtaining a copy
155+
of this software and associated documentation files (the "Software"), to deal
156+
in the Software without restriction, including without limitation the rights
157+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
158+
copies of the Software, and to permit persons to whom the Software is
159+
furnished to do so, subject to the following conditions:
160+
161+
The above copyright notice and this permission notice shall be included in
162+
all copies or substantial portions of the Software.
163+
164+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
165+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
166+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
167+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
168+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
169+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
170+
THE SOFTWARE.

opal-browser.gemspec

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,20 @@ $LOAD_PATH << File.expand_path('../opal', __FILE__)
22
require 'browser/version'
33

44
Gem::Specification.new {|s|
5-
s.name = 'opal-browser'
6-
s.version = Browser::VERSION
7-
s.author = 'meh.'
8-
s.email = 'meh@schizofreni.co'
9-
s.homepage = 'http://github.com/opal/opal-browser'
10-
s.platform = Gem::Platform::RUBY
11-
s.summary = 'Browser support for Opal.'
5+
s.name = 'opal-browser'
6+
s.version = Browser::VERSION
7+
s.author = 'meh.'
8+
s.email = 'meh@schizofreni.co'
9+
s.homepage = 'http://github.com/opal/opal-browser'
10+
s.platform = Gem::Platform::RUBY
11+
s.summary = 'Browser support for Opal.'
12+
s.license = 'MIT'
1213

1314
s.files = `git ls-files`.split("\n")
1415
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
1516
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
1617
s.require_paths = ['lib']
1718

18-
s.add_dependency 'opal', '>= 0.5.5'
19+
s.add_dependency 'opal', '~> 0.6.0'
1920
s.add_dependency 'paggio'
20-
21-
s.add_development_dependency 'opal-rspec'
22-
s.add_development_dependency 'rake'
2321
}

opal/browser/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Browser
2-
VERSION = '0.1.0.beta1'
2+
VERSION = '0.2.0.beta1'
33
end

0 commit comments

Comments
 (0)