flight-for-rails 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md
CHANGED
@@ -16,7 +16,7 @@ This gem vendors Flight files and dependecies for Rails assets pipeline.
|
|
16
16
|
First add the following lines to your application `Gemfile`:
|
17
17
|
|
18
18
|
``` ruby
|
19
|
-
gem 'flight-for-rails', '~> 1.0.
|
19
|
+
gem 'flight-for-rails', '~> 1.0.0'
|
20
20
|
```
|
21
21
|
|
22
22
|
Then run `bundle install` to update your's gems bundle.
|
data/flight-for-rails.gemspec
CHANGED
@@ -2,7 +2,7 @@ require File.expand_path('../lib/flight-for-rails/version', __FILE__)
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = 'flight-for-rails'
|
5
|
-
s.summary = 'Flight javascript framework for Rails
|
5
|
+
s.summary = 'Flight javascript framework for Rails assets pipeline'
|
6
6
|
s.description = s.summary
|
7
7
|
|
8
8
|
s.version = FlightForRails::VERSION
|
@@ -18,5 +18,5 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.require_paths = ['lib']
|
19
19
|
|
20
20
|
s.add_dependency 'rails', '>= 3.1.0'
|
21
|
-
s.add_dependency 'jquery-rails'
|
21
|
+
s.add_dependency 'jquery-rails', '>= 2.1.4'
|
22
22
|
end
|