arduino_sketch_builder 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3943bbdef1392adb00d12ef745bcc50f46f36b0f
4
- data.tar.gz: e1025545fe5697bc72f739632eb73c5f1e11d19e
3
+ metadata.gz: f05d76dab1e015cd9cea018c97ed10e2ba374efd
4
+ data.tar.gz: 0ef6035c27f68418ffafe5fe2b5e0dec358f523b
5
5
  SHA512:
6
- metadata.gz: 1d4facb2a74786562f2755ed69a05b7b45ed2e97d92853e1716ccc1292894b9f08fd39bda7d987de2b5d202c7d84992342122c10b032cf631247b5c8242c8245
7
- data.tar.gz: 95829a985555e637df41c7c83b15095adabf8d43b9874c3e500ce74bd64203fb7350f28e7284299e0b9f1dff50b46b51248a5bcd6c28063c0fb9602db35f36ed
6
+ metadata.gz: cf8857390b3841387477f32d59357868e7dcc0c5ace48d0e4feb3d89bd71e4b736c47b9e454650efdceeeb5aaa35e9b071c22775c44214e22e982df0a341aaf9
7
+ data.tar.gz: d077308c3527f03a1b47c108f316a77ac529aae07f8a7b9112ca721465def29ef3596ccafacb7168e049b83895916729976232ad12d0fbe666c5bdae0320d17f
data/README.md CHANGED
@@ -21,9 +21,6 @@ Or install it yourself as:
21
21
 
22
22
  Ruby 2.0.0 or more.
23
23
 
24
- * If ARDUINO_DEFAULT_BOARD and ARDUINO_DEFAULT_PORT are used to specify the board ID (e.g uno) and the port (e.g. /dev/tty.usbmodem411) instead of passing them as "ketword arguments" to the method in Ruby code, works with Ruby 1.9.3, too.
25
- * Strongly recommended to use Ruby 2.0.0 since this gem is intended to use its benefits and Ruby 2.0.0 is compatible with Ruby 1.9.3 if you need to run other code written for Ruby 1.9.3 with this gem.
26
-
27
24
  Arduino SDK version 0.19 or higher.
28
25
 
29
26
  cmake - http://www.cmake.org/cmake/resources/software.html
@@ -1,3 +1,3 @@
1
1
  module ArduinoSketchBuilder
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
@@ -2,9 +2,6 @@ require 'spec_helper'
2
2
 
3
3
  describe ArduinoSketchBuilder::CMakeListsFileGenerator do
4
4
 
5
- FIXTURES_DIRECTORY = File.expand_path('../../fixtures', __FILE__)
6
- TEMP_DIRECTORY = File.expand_path('../../temp', __FILE__)
7
-
8
5
  before(:each) do
9
6
  FileUtils.rm_rf(Dir.glob("#{TEMP_DIRECTORY}/*"))
10
7
  @c_make_lists_file_generator = ArduinoSketchBuilder::CMakeListsFileGenerator.new
@@ -3,11 +3,9 @@ require 'spec_helper'
3
3
  describe ArduinoSketchBuilder::Setup do
4
4
 
5
5
  ARDUINO_CMAKE_DIRECTORY = File.expand_path('../../../arduino-cmake', __FILE__)
6
- FIXTURES_DIRECTORY = File.expand_path('../../fixtures', __FILE__)
7
6
  ARDUINO_SKETCHES_FIXTURE_DIRECTORY = File.expand_path('../../arduino_sketches_fixture', __FILE__)
8
7
  ARDUINO_SKETCH_FILE_PATH = File.expand_path(File.join(ARDUINO_SKETCHES_FIXTURE_DIRECTORY, 'src/BlinkCustomizedForTest/BlinkCustomizedForTest.ino'), __FILE__)
9
8
  TEMPLATES_DIRECTORY = File.expand_path('../../../templates', __FILE__)
10
- TEMP_DIRECTORY = File.expand_path('../../temp', __FILE__)
11
9
 
12
10
  before(:each) do
13
11
  FileUtils.rm_rf(Dir.glob("#{TEMP_DIRECTORY}/*"))
data/spec/spec_helper.rb CHANGED
@@ -1,5 +1,8 @@
1
1
  require 'arduino_sketch_builder'
2
2
 
3
+ FIXTURES_DIRECTORY = File.expand_path('../fixtures', __FILE__)
4
+ TEMP_DIRECTORY = File.expand_path('../temp', __FILE__)
5
+
3
6
  RSpec.configure do |config|
4
7
 
5
8
  config.before(:suite) do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arduino_sketch_builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tadatoshi Takahashi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-03-02 00:00:00.000000000 Z
11
+ date: 2013-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport