Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opal/opal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9a8d51234d4e
Choose a base ref
...
head repository: opal/opal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1eb59f0ab581
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Jul 8, 2015

  1. Copy the full SHA
    db99e3b View commit details
  2. Tiny gemspec improvements

    bbatsov committed Jul 8, 2015
    Copy the full SHA
    32bafa9 View commit details
  3. Merge pull request #986 from bbatsov/gemspec-fixes

    Gemspec fixes
    elia committed Jul 8, 2015
    Copy the full SHA
    1eb59f0 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 opal.gemspec
8 changes: 4 additions & 4 deletions opal.gemspec
Original file line number Diff line number Diff line change
@@ -9,16 +9,16 @@ Gem::Specification.new do |s|
s.author = 'Adam Beynon'
s.email = 'adam.beynon@gmail.com'
s.homepage = 'http://opalrb.org'
s.summary = 'Ruby runtime and core library for javascript'
s.description = 'Ruby runtime and core library for javascript.'
s.summary = 'Ruby runtime and core library for JavaScript'
s.description = 'Ruby runtime and core library for JavaScript.'
s.license = 'MIT'

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

required_ruby_version = '>= 1.9.3'
s.required_ruby_version = '>= 1.9.3'

s.add_dependency 'sourcemap', '~> 0.1.0'
s.add_dependency 'sprockets', '~> 3.1'