gbdev-calendar_date_select 1.11.20080824 → 1.11.20080825

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/CHANGELOG CHANGED
@@ -1,6 +1,7 @@
1
- == Version 1.11.20080824 ==
1
+ == Version 1.11.20080825 ==
2
2
 
3
3
  * Fork to see if gem will build
4
+ * Applied artmotion's updates for load path
4
5
 
5
6
  == Version 1.11 ==
6
7
 
data/README CHANGED
@@ -13,7 +13,7 @@ It works!
13
13
 
14
14
  Setup for "vendored gem":
15
15
  In enviroment.rb add the gem:
16
- config.gem "gbdev-calendar_date_select", :version => "1.11.20080824", :source => "http://gems.github.com", :lib => 'gem_init'
16
+ config.gem "gbdev-calendar_date_select", :version => "1.11.20080825", :source => "http://gems.github.com", :lib => 'gem_init'
17
17
 
18
18
  Install the gem locally (this installs the gem system wide)
19
19
  sudo rake gems:install
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "calendar_date_select"
3
- s.version = "1.11.20080824"
3
+ s.version = "1.11.20080825"
4
4
  s.date = "2008-06-24"
5
5
  s.summary = "A popular and flexible JavaScript DatePicker for RubyOnRails"
6
6
  s.email = "timcharper@gmail.com"
data/init.rb CHANGED
@@ -9,7 +9,7 @@ ActionView::Base.send(:include, CalendarDateSelect::IncludesHelper)
9
9
  # install files
10
10
  unless File.exists?(RAILS_ROOT + '/public/javascripts/calendar_date_select/calendar_date_select.js')
11
11
  ['/public', '/public/javascripts/calendar_date_select', '/public/stylesheets/calendar_date_select', '/public/images/calendar_date_select', '/public/javascripts/calendar_date_select/locale'].each do |dir|
12
- source = File.join(File.dirname(__FILE__),'..') + dir
12
+ source = File.join(File.dirname(__FILE__),dir)
13
13
  FileUtils.mkdir_p(dest)
14
14
  FileUtils.cp(Dir.glob(source+'/*.*'), dest)
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gbdev-calendar_date_select
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.20080824
4
+ version: 1.11.20080825
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Harper